choose-city.js 256 B

12345678910111213
  1. Page({
  2. chooseCity() {
  3. my.chooseCity({
  4. showLocatedCity: true,
  5. showHotCities: true,
  6. success: (res) => {
  7. my.alert({
  8. title: 'chooseAlipayContact response: ' + JSON.stringify(res),
  9. });
  10. },
  11. });
  12. },
  13. });