|
@@ -172,7 +172,7 @@
|
|
|
appraise:false,
|
|
|
ReceiptsMoney:false,//支付金额
|
|
|
iStatusBarHeight:'',
|
|
|
- array: [],
|
|
|
+ array: ['全部'],
|
|
|
index: 0,
|
|
|
wxOpenData: '',
|
|
|
plateNumber:'',
|
|
@@ -252,9 +252,11 @@
|
|
|
this.$http('openweiXinCardInfoController/plateNumber-by-customerId', {
|
|
|
customerId:this.wxOpenData.loginInfo.uid
|
|
|
}, 'GET').then(res => {
|
|
|
- this.array=res.data.split(',')
|
|
|
- this.array.unshift('全部')
|
|
|
- })
|
|
|
+ //res.data='黑A036M7,黑A1BQ82,黑AF17330'
|
|
|
+ var arr = res.data.split(',')
|
|
|
+ this.array=this.array.concat(arr)
|
|
|
+ //this.array.unshift('全部')
|
|
|
+ })
|
|
|
},
|
|
|
//显示权限
|
|
|
showPower() {
|