sale-client 3.5.165 → 3.5.166-2
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/build/dev-server.js +14 -8
- package/package.json +1 -1
- package/src/components/FilesManage/FileUserFiles.vue +7 -7
- package/src/components/FilesManage/MeterinfoTest.vue +16 -15
- package/src/components/FilesManage/UserGeneralInfoTest.vue +1 -1
- package/src/components/FilesManageNew/FileUserFiles.vue +1 -1
- package/src/components/UserFiles/UserPriceChangeManage.vue +4 -1
- package/src/components/charge/ChargeList.vue +2 -2
- package/src/components/revenue/HandManager/PriceAdjustment.vue +1 -1
- package/src/components/revenue/base/UserList.vue +480 -480
- package/src/components/revenue/base/leftview/Userinfo.vue +2 -2
- package/src/components/revenue/changeInsurance/InsuranceChargesDetails.vue +6 -6
- package/src/components/revenue/changeInsurance/InsuranceList.vue +3 -3
- package/src/components/revenue/comprehen/insurance/insuranceGuanL.vue +4 -4
- package/src/components/revenue/machineHandManage/machineHandAudit.vue +9 -21
- package/src/filiale/gehua/HighMeterIdCard.vue +2 -6
- package/src/filiale/gehua/sale.js +43 -43
- package/src/filiale/qianneng/eticket/EticketPrint.vue +6 -8
- package/src/filiale/shanggao/BankPayment.vue +287 -0
- package/src/filiale/shanggao/sale.js +1 -0
- package/src/filiale/shanxian/components/FilesManage/FileAddressList.vue +141 -0
- package/src/filiale/shanxian/components/FilesManage/FileUserFiles.vue +1003 -0
- package/src/filiale/shanxian/components/FilesManage/UserEssentialInfoTest.vue +333 -0
- package/src/filiale/shanxian/components/FilesManageNew/FileAddressList.vue +138 -0
- package/src/filiale/shanxian/components/FilesManageNew/FileUserFiles.vue +756 -0
- package/src/filiale/shanxian/components/UserFiles/UserPriceChangeManage.vue +662 -0
- package/src/filiale/shanxian/components/revenue/InsuranceAdd.vue +406 -0
- package/src/filiale/shanxian/components/revenue/InsuranceList.vue +277 -0
- package/src/filiale/shanxian/components/revenue/InsuranceManage.vue +52 -0
- package/src/filiale/shanxian/sale.js +3 -0
- package/src/filiale/tongchuan/ChargeManage.vue +1 -1
- package/src/filiale/tongchuan/UserEssentialInfoTest.vue +20 -0
- package/src/filiale/tongchuan/UserGeneralInfoTest.vue +2 -2
- package/src/filiale/tongchuan/bill/ReissueBill.vue +322 -0
- package/src/filiale/tongchuan/sale.js +1 -0
- package/yarn-error.log +0 -9224
package/build/dev-server.js
CHANGED
|
@@ -10,17 +10,23 @@ var compiler = webpack(config)
|
|
|
10
10
|
|
|
11
11
|
// Define HTTP proxies to your custom API backend
|
|
12
12
|
// https://github.com/chimurai/http-proxy-middleware
|
|
13
|
-
var bendi = 'http://121.36.106.17:8400', bendi1 = 'http://121.36.106.17:8400
|
|
13
|
+
var bendi = 'http://121.36.106.17:8400', bendi1 = 'http://121.36.106.17:8400'
|
|
14
14
|
// 公司测试服务
|
|
15
|
-
// var fuwu = 'http://192.168.50.4:
|
|
15
|
+
// var fuwu = 'http://192.168.50.4:8450'
|
|
16
|
+
// 梅河口
|
|
17
|
+
// var fuwu = 'http://139.214.92.34:8301'
|
|
18
|
+
// 单县
|
|
19
|
+
// var fuwu = 'http://119.187.112.234:8400'
|
|
20
|
+
// 中盛
|
|
16
21
|
// var fuwu = 'http://39.99.85.14:8400'
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
//
|
|
20
|
-
//
|
|
22
|
+
// 燎原
|
|
23
|
+
var fuwu = 'http://121.40.52.133:9001'
|
|
24
|
+
// 葛华
|
|
25
|
+
// var fuwu = 'http://219.138.226.181:8401'
|
|
26
|
+
// 乌海
|
|
27
|
+
// var fuwu = 'http://203.57.101.233:8400'
|
|
28
|
+
// 铜川
|
|
21
29
|
// var fuwu = 'http://61.134.55.234:9999/'
|
|
22
|
-
// 铜川测试
|
|
23
|
-
// var fuwu = 'http://61.134.55.234:9999/'
|
|
24
30
|
// var fuwu = 'http://60.222.250.39:8300/'
|
|
25
31
|
// 韶关
|
|
26
32
|
// var fuwu = 'http://119.146.1.106:8300/'
|
package/package.json
CHANGED
|
@@ -119,10 +119,10 @@
|
|
|
119
119
|
<div
|
|
120
120
|
:class="{'col-sm-2':!$parent.$parent.createFile,'col-sm-4':$parent.$parent.createFile}"
|
|
121
121
|
class="form-group">
|
|
122
|
-
<label class="font_normal_body"
|
|
122
|
+
<label class="font_normal_body">客户类型</label>
|
|
123
123
|
<v-select :options='$parent.$parent.user_type' :value.sync="model.f_user_type"
|
|
124
124
|
close-on-select condition="f_user_type='{}'"
|
|
125
|
-
placeholder='
|
|
125
|
+
placeholder='客户类型' v-model="model.f_user_type"></v-select>
|
|
126
126
|
</div>
|
|
127
127
|
<div
|
|
128
128
|
:class="{'col-sm-2':!$parent.$parent.createFile,'col-sm-4':$parent.$parent.createFile}"
|
|
@@ -239,11 +239,11 @@
|
|
|
239
239
|
<div
|
|
240
240
|
:class="{'col-sm-2':!$parent.$parent.createFile,'col-sm-4':$parent.$parent.createFile}"
|
|
241
241
|
class="form-group" >
|
|
242
|
-
<label class="font_normal_body"
|
|
242
|
+
<label class="font_normal_body">客户等级</label>
|
|
243
243
|
<v-select :options='$parent.$parent.userlevel' :search='true'
|
|
244
244
|
:value.sync="model.userlevel"
|
|
245
245
|
close-on-select
|
|
246
|
-
condition="f_user_level = '{}'" placeholder='
|
|
246
|
+
condition="f_user_level = '{}'" placeholder='客户等级'
|
|
247
247
|
v-model='model.userlevel'></v-select>
|
|
248
248
|
</div>
|
|
249
249
|
<div
|
|
@@ -308,10 +308,10 @@
|
|
|
308
308
|
<nobr>客户电话</nobr>
|
|
309
309
|
</th>
|
|
310
310
|
<th v-if="!$parent.$parent.$parent.isOper">
|
|
311
|
-
<nobr
|
|
311
|
+
<nobr>客户地址</nobr>
|
|
312
312
|
</th>
|
|
313
313
|
<th>
|
|
314
|
-
<nobr
|
|
314
|
+
<nobr>客户类型</nobr>
|
|
315
315
|
</th>
|
|
316
316
|
<th>
|
|
317
317
|
<nobr>用气性质</nobr>
|
|
@@ -332,7 +332,7 @@
|
|
|
332
332
|
<nobr>状态</nobr>
|
|
333
333
|
</th>
|
|
334
334
|
<th >
|
|
335
|
-
<nobr
|
|
335
|
+
<nobr>客户等级</nobr>
|
|
336
336
|
</th>
|
|
337
337
|
<!--<th>-->
|
|
338
338
|
<!--<nobr v-if="this.$login.r.includes('通知单打印')||this.$login.r.includes('流程表打印') ">下载</nobr>-->
|
|
@@ -6,6 +6,22 @@
|
|
|
6
6
|
<a style="font-size: 16px;font-weight: 500;">表具信息</a> <a style="color: #999999;text-decoration: none"></a>
|
|
7
7
|
</div>
|
|
8
8
|
<div class="row" >
|
|
9
|
+
<div class="col-sm-4 form-group" :class="[$m.brand.required ? 'has-error' : '']">
|
|
10
|
+
<label for="gasbrand" class="font_normal_body">气表品牌</label>
|
|
11
|
+
<input type="text" class="input_search" style="width:60%" v-show="false" v-model="$refs.brand.selectedItems"
|
|
12
|
+
v-validate:brand='{required: true }'>
|
|
13
|
+
<v-select :value.sync="row.gasbrand" :options='meterbrands' placeholder='气表品牌' close-on-select
|
|
14
|
+
search @change='brandChange' v-model='row.gasbrand' :disabled="curuser.f_user_state != '预备'" v-ref:brand></v-select>
|
|
15
|
+
</div>
|
|
16
|
+
<div class="col-sm-4 form-group" :class="[$m.model.required ? 'has-error' : '']">
|
|
17
|
+
<label for="gasmodel" class="font_normal_body">气表型号</label>
|
|
18
|
+
<input type="text" v-show="false" v-model="$refs.model.selectedItems"
|
|
19
|
+
v-validate:model='{required: true }'>
|
|
20
|
+
<v-select :value.sync="row.gasmodel" :options='row.gasbrand[0].gasmodel' placeholder='气表型号'
|
|
21
|
+
close-on-select
|
|
22
|
+
v-model='row.gasmodel' :disabled="row.gasbrand.length === 0 || curuser.f_user_state != '预备'" v-ref:model></v-select>
|
|
23
|
+
</div>
|
|
24
|
+
|
|
9
25
|
<div class="col-sm-4 form-group" v-if="isiot" :class="[$m.f_meternumber.required ? 'has-error' : '']">
|
|
10
26
|
<label for="f_meternumber" class="font_normal_body"> 表  号</label>
|
|
11
27
|
<input type="text" class="input_search" style="width:60%" v-model="row.f_meternumber"
|
|
@@ -38,21 +54,6 @@
|
|
|
38
54
|
:disabled="!jurisdiction.includes('档案信息查询修改')">
|
|
39
55
|
</div>
|
|
40
56
|
|
|
41
|
-
<div class="col-sm-4 form-group" :class="[$m.brand.required ? 'has-error' : '']">
|
|
42
|
-
<label for="gasbrand" class="font_normal_body">气表品牌</label>
|
|
43
|
-
<input type="text" class="input_search" style="width:60%" v-show="false" v-model="$refs.brand.selectedItems"
|
|
44
|
-
v-validate:brand='{required: true }'>
|
|
45
|
-
<v-select :value.sync="row.gasbrand" :options='meterbrands' placeholder='气表品牌' close-on-select
|
|
46
|
-
search @change='brandChange' v-model='row.gasbrand' :disabled="curuser.f_user_state != '预备'" v-ref:brand></v-select>
|
|
47
|
-
</div>
|
|
48
|
-
<div class="col-sm-4 form-group" :class="[$m.model.required ? 'has-error' : '']">
|
|
49
|
-
<label for="gasmodel" class="font_normal_body">气表型号</label>
|
|
50
|
-
<input type="text" v-show="false" v-model="$refs.model.selectedItems"
|
|
51
|
-
v-validate:model='{required: true }'>
|
|
52
|
-
<v-select :value.sync="row.gasmodel" :options='row.gasbrand[0].gasmodel' placeholder='气表型号'
|
|
53
|
-
close-on-select
|
|
54
|
-
v-model='row.gasmodel' :disabled="row.gasbrand.length === 0 || curuser.f_user_state != '预备'" v-ref:model></v-select>
|
|
55
|
-
</div>
|
|
56
57
|
<div class="col-sm-4 form-group" title="涉及权限:【档案信息查询修改】">
|
|
57
58
|
<label for="f_meter_base" class="font_normal_body"> 累购气量</label>
|
|
58
59
|
<input type="number" class="input_search" style="width:60%" v-model="row.f_total_gas" placeholder='累购气量'
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
</div>
|
|
94
94
|
<div class="row">
|
|
95
95
|
<div class="col-sm-2"></div>
|
|
96
|
-
<input v-if="fileSaveData.reason
|
|
96
|
+
<input v-if="fileSaveData.reason==='其他'" class="input_search" style="width:60%" placeholder='修改原因' v-model="fileSaveData.modifyReason"/>
|
|
97
97
|
</div>
|
|
98
98
|
</article>
|
|
99
99
|
<footer slot="modal-footer" class="modal-footer">
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
<nobr>卡号</nobr>
|
|
89
89
|
</th>
|
|
90
90
|
<th>
|
|
91
|
-
<nobr
|
|
91
|
+
<nobr>客户地址</nobr>
|
|
92
92
|
</th>
|
|
93
93
|
<th>
|
|
94
94
|
<nobr>气价名称</nobr>
|
|
@@ -347,6 +347,9 @@
|
|
|
347
347
|
import Vue from 'vue'
|
|
348
348
|
|
|
349
349
|
let loadParamGem = async function (self) {
|
|
350
|
+
if (!self.f_filialeid) {
|
|
351
|
+
self.f_filialeid = self.$login.f.orgid
|
|
352
|
+
}
|
|
350
353
|
await self.$LoadParams.loadParam(self.f_filialeid)
|
|
351
354
|
}
|
|
352
355
|
|
|
@@ -90,9 +90,9 @@
|
|
|
90
90
|
close-on-select style="width: 60%"></v-select>
|
|
91
91
|
</div>
|
|
92
92
|
<div class="form-group col-sm-3">
|
|
93
|
-
<label class="font_normal_body"
|
|
93
|
+
<label class="font_normal_body">客户等级</label>
|
|
94
94
|
<v-select v-model="model.f_user_level"
|
|
95
|
-
placeholder='
|
|
95
|
+
placeholder='客户等级'
|
|
96
96
|
:value.sync="model.f_user_level"
|
|
97
97
|
:options='$parent.$parent.userlevel'
|
|
98
98
|
condition="i.f_user_level = '{}'"
|