|
@@ -489,12 +489,11 @@ export default {
|
|
|
} else {
|
|
} else {
|
|
|
this.$refs.popup.open()
|
|
this.$refs.popup.open()
|
|
|
this.numberList = res.data.data
|
|
this.numberList = res.data.data
|
|
|
- const newarr = []
|
|
|
|
|
|
|
+ const newArr = []
|
|
|
this.numberList.map((item) => {
|
|
this.numberList.map((item) => {
|
|
|
- newarr.push(Object.assign(item, {isSelect: false}))
|
|
|
|
|
|
|
+ newArr.push(Object.assign(item, {isSelect: false}))
|
|
|
})
|
|
})
|
|
|
- this.numberList = newarr
|
|
|
|
|
-
|
|
|
|
|
|
|
+ this.numberList = newArr
|
|
|
}
|
|
}
|
|
|
} else {
|
|
} else {
|
|
|
uni.$u.toast('未查询到数据');
|
|
uni.$u.toast('未查询到数据');
|
|
@@ -556,9 +555,7 @@ export default {
|
|
|
if (idx == 0) { // 点击确认
|
|
if (idx == 0) { // 点击确认
|
|
|
if (this.isSelect === true) {
|
|
if (this.isSelect === true) {
|
|
|
this.$refs.popup.close()
|
|
this.$refs.popup.close()
|
|
|
- console.log(this.$refs.form1.validate(), '2222222222')
|
|
|
|
|
-
|
|
|
|
|
- this.getOldMember();
|
|
|
|
|
|
|
+ // this.getOldMember();
|
|
|
this.getOrderRechargeOldList()
|
|
this.getOrderRechargeOldList()
|
|
|
if (this.currentStep < this.steps.length - 1) {
|
|
if (this.currentStep < this.steps.length - 1) {
|
|
|
this.currentStep++;
|
|
this.currentStep++;
|