lottery.js
593 Bytes
export default {
data() {
return {
key: 'value'
}
},
components: {},
methods: {
initData() {},
toIndex() {
this.$router.push({
path: "/"
})
},
async queryArea() {
let res = await app.post({
url: app.api.areaQuery,
data: {},
sid: false,
mode: "custom"
});
console.log("地区查询:", res);
}
},
mounted() {
// this.queryArea();
},
created() {}
}