sale-client 3.5.143 → 3.5.144
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
CHANGED
|
@@ -427,7 +427,7 @@ export default {
|
|
|
427
427
|
|
|
428
428
|
// 将oldAddress 置为空,
|
|
429
429
|
this.oldAddress = {}
|
|
430
|
-
|
|
430
|
+
this.data.baseinfo.base.f_user_state = this.data.baseinfo.base.f_user_state ? [this.data.baseinfo.base.f_user_state] : '正常'
|
|
431
431
|
// this.data.baseinfo.base.f_user_nature = this.data.baseinfo.base.f_user_nature ? [this.data.baseinfo.base.f_user_nature] : '民用'
|
|
432
432
|
// this.data.baseinfo.base.f_credentials = this.data.baseinfo.base.f_credentials ? [this.data.baseinfo.base.f_credentials] : '身份证'
|
|
433
433
|
this.data.baseinfo.base.f_cost_type = this.data.baseinfo.base.f_cost_type ? [this.data.baseinfo.base.f_cost_type] : '现金缴费'
|
|
@@ -81,17 +81,17 @@
|
|
|
81
81
|
}})
|
|
82
82
|
}
|
|
83
83
|
}
|
|
84
|
-
if (self.data.f_user_nature
|
|
84
|
+
if (self.data.f_user_nature === '单位') {
|
|
85
85
|
self.temp.push({name: '维管收费',
|
|
86
86
|
value: {
|
|
87
87
|
'weight': 5,
|
|
88
88
|
'routeName': 'repair-charge'
|
|
89
89
|
}})
|
|
90
90
|
}
|
|
91
|
-
if (self.data.f_meter_type
|
|
92
|
-
if (self.data.f_hascard
|
|
93
|
-
if (self.data.f_whether_hairpin
|
|
94
|
-
if(self.data.f_share_times
|
|
91
|
+
if (self.data.f_meter_type === '物联网表') {
|
|
92
|
+
if (self.data.f_hascard === '是') {
|
|
93
|
+
if (self.data.f_whether_hairpin === '未发') {
|
|
94
|
+
if(self.data.f_share_times !== '' && self.data.f_share_times === '是' && self.data.f_times>0){
|
|
95
95
|
self.temp.push({
|
|
96
96
|
name: '补卡',
|
|
97
97
|
value: {
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
}
|
|
107
107
|
}
|
|
108
108
|
// 如果卡上有气,添加购气撤销按钮
|
|
109
|
-
if (self.cardInfo.Gas > 0 || self.cardInfo.Money > 0 || (self.cardInfo.TotalMoney > 0 && self.data.f_support_purchase
|
|
109
|
+
if (self.cardInfo.Gas > 0 || self.cardInfo.Money > 0 || (self.cardInfo.TotalMoney > 0 && self.data.f_support_purchase === '是')) {
|
|
110
110
|
self.temp.push({name: '购气撤销',
|
|
111
111
|
value: {
|
|
112
112
|
'weight': 0,
|
|
@@ -145,6 +145,10 @@
|
|
|
145
145
|
close-on-select
|
|
146
146
|
:value-single="true"> </v-select>
|
|
147
147
|
</div>
|
|
148
|
+
<div class="col-sm-6" >
|
|
149
|
+
<label class="font_normal_body"> 操作员</label>
|
|
150
|
+
<input type="text" v-model="newmeterinfo.f_operator" class="input_search" style="width:60%" placeholder="操作员">
|
|
151
|
+
</div>
|
|
148
152
|
</div>
|
|
149
153
|
<div class="auto row">
|
|
150
154
|
<div style="margin-top: 2%">
|