sale-client 3.6.299 → 3.6.301
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/src/components/FilesManage/FileUserAddress.vue +9 -6
- package/src/components/common/userinfo_detail/ic_detail/WebHandQueryUser.vue +366 -366
- package/src/components/revenue/Common/EticketPrint.vue +1 -1
- package/src/components/revenue/comprehen/Bill/EticketV4/EticketRecordList.vue +2 -1
- package/src/filiale/jingyang/GovernmentSell.vue +19 -12
- package/src/filiale/liaoyuan/UserBaseInfoNew.vue +472 -0
- package/src/filiale/liaoyuan/sale.js +57 -54
- package/src/filiale/yangchun/EticketV4/EticketOpenCard.vue +1 -1
- package/src/filiale/yangchun/EticketV4/EticketOpenJBPage.vue +1 -1
- package/src/filiale/yangchun/EticketV4/EticketOpenPage.vue +1 -1
- package/src/filiale/zhongyi/common/MeterMessage.vue +184 -0
- package/src/filiale/zhongyi/machineHand.vue +2190 -2190
- package/src/filiale/zhongyi/sale.js +40 -38
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sale-client",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.301",
|
|
4
4
|
"description": "收费模块前台组件",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"yarn": "^1.22.10"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"address-client": "3.2.
|
|
31
|
+
"address-client": "3.2.105-yangchun",
|
|
32
32
|
"axios": "0.15.3",
|
|
33
33
|
"babel-core": "^6.0.0",
|
|
34
34
|
"babel-loader": "^6.0.0",
|
|
@@ -472,14 +472,17 @@
|
|
|
472
472
|
}, {resolveMsg: null, rejectMsg: '获取地址失败!'})
|
|
473
473
|
let redata = []
|
|
474
474
|
req.data.forEach((row) => {
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
475
|
+
if(!row.f_residential_area.includes('L')){
|
|
476
|
+
redata.push({
|
|
477
|
+
label: row.f_residential_area,
|
|
478
|
+
value: row.id,
|
|
479
|
+
data: row,
|
|
480
|
+
id: row.id
|
|
481
|
+
})
|
|
482
|
+
}
|
|
481
483
|
})
|
|
482
484
|
this.areaslist = redata
|
|
485
|
+
console.log('watch:areaslist',redata)
|
|
483
486
|
},
|
|
484
487
|
// 省/市/区变化
|
|
485
488
|
async pcdChange (val) {
|