123456789101112131415161718192021222324252627282930313233343536373839404142 |
- // components/buyerInformation/index.ts
- Component({
- /**
- * 组件的属性列表
- */
- properties: {
- popShow: {
- type: Boolean,
- default: false
- }
- },
- /**
- * 组件的初始数据
- */
- data: {
- phone: '',
- name: '',
- gender: '1',
- schoolAreaId: '',
- schoolAreaName: '',
- currentGradeClassTxt: '',
- currentClass: null,
- currentGradeNum: null,
- cityCode: null,
- cityName: "",
- provinceCode: null,
- provinceName: "",
- regionCode: null,
- regionName: "",
- },
- /**
- * 组件的方法列表
- */
- methods: {
- onCloseBuyer() {
- this.triggerEvent("cancel", false)
- }
- }
- })
|