sale-client 4.3.8 → 4.3.9
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/.gradle/5.2.1/fileChanges/last-build.bin +0 -0
- package/.gradle/5.2.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/5.2.1/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +2 -0
- package/.gradle/vcs-1/gc.properties +0 -0
- package/package.json +1 -1
- package/src/components/common/userinfo_detail/iot_detail/QueryInstruct.vue +1 -1
- package/src/filiale/hongYa/revenue/comprehen/ComprehenOperation/newchangemeter/ChangeMeter.vue +20 -5
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
File without changes
|
package/package.json
CHANGED
package/src/filiale/hongYa/revenue/comprehen/ComprehenOperation/newchangemeter/ChangeMeter.vue
CHANGED
|
@@ -224,6 +224,18 @@
|
|
|
224
224
|
<input class="input_search" style="width:60%" type="text"
|
|
225
225
|
v-model="model.f_serial_number" placeholder="业务单号">
|
|
226
226
|
</div>
|
|
227
|
+
<div class="col-sm-4" >
|
|
228
|
+
<label for="f_changetables_reason" :class="[$v.f_changetables_reason.required ? 'has-error' : '']" >换表原因</label>
|
|
229
|
+
<input type="text" class="input_search" style="width: 60%" v-show="false" v-model="$refs.f_changetables_reason.selectedItems" v-validate:f_changetables_reason='{required: true }'>
|
|
230
|
+
<v-select id="f_changetables_reason"
|
|
231
|
+
v-model="model.f_changetables_reason"
|
|
232
|
+
:value-single="true"
|
|
233
|
+
placeholder='换表原因'
|
|
234
|
+
:value.sync="model.f_changetables_reason"
|
|
235
|
+
:options='reason'
|
|
236
|
+
v-ref:f_changetables_reason
|
|
237
|
+
close-on-select></v-select>
|
|
238
|
+
</div>
|
|
227
239
|
<div class="col-sm-4 ">
|
|
228
240
|
<label class=" font_normal_body">阶梯累计</label>
|
|
229
241
|
<v-select id="f_ladder_sync"
|
|
@@ -235,6 +247,7 @@
|
|
|
235
247
|
:options='ladder'
|
|
236
248
|
close-on-select clear-button></v-select>
|
|
237
249
|
</div>
|
|
250
|
+
|
|
238
251
|
<div class="col-sm-4"
|
|
239
252
|
:class="[$v.f_stair_use.required || $v.f_stair_use.dctest ? 'has-error' : 'has-success']"
|
|
240
253
|
v-if=" model.metermessage.gasbrand[0].f_meter_type ==='物联网表'&& model.f_ladder_sync !=='不同步'">
|
|
@@ -243,6 +256,7 @@
|
|
|
243
256
|
v-validate:f_stair_use='{required: true, dctest: [0, ">=" ] }'
|
|
244
257
|
v-model="model.f_stair_use" placeholder="旧表阶梯使用量">
|
|
245
258
|
</div>
|
|
259
|
+
|
|
246
260
|
<div class="col-sm-4 "
|
|
247
261
|
v-if="(model.metermessage.gasbrand[0].f_meter_type ==='物联网表' && model.metermessage.gasbrand[0].f_hascard ==='是')
|
|
248
262
|
|| (model.f_type.includes('清零') && row.f_meter_type ==='物联网表' && row.f_hascard ==='是')">
|
|
@@ -275,6 +289,7 @@
|
|
|
275
289
|
close-on-select></v-select>
|
|
276
290
|
</div>
|
|
277
291
|
</div>
|
|
292
|
+
|
|
278
293
|
<div class="row auto">
|
|
279
294
|
<div class="col-sm-12"
|
|
280
295
|
v-if="!commitflag"
|
|
@@ -293,10 +308,7 @@
|
|
|
293
308
|
</div>
|
|
294
309
|
</div>
|
|
295
310
|
|
|
296
|
-
|
|
297
|
-
<label class="font_normal_body ">换表原因</label>
|
|
298
|
-
<textarea class="input_textarea" rows="3" style="width:87%;" v-model="model.f_changetables_reason"></textarea>
|
|
299
|
-
</div>
|
|
311
|
+
|
|
300
312
|
<div style="text-align:right;height:auto;">
|
|
301
313
|
<button class="button_search" v-show="config.approve == true ? applyButtonShow : false" type="button" @click="apply()"
|
|
302
314
|
:disabled="(!meterinfo && !(model.f_type.includes('清零') || model.f_type.includes('换卡控流量计'))) || !$v.valid"
|
|
@@ -1155,7 +1167,10 @@ export default {
|
|
|
1155
1167
|
}
|
|
1156
1168
|
}
|
|
1157
1169
|
</script>
|
|
1158
|
-
<style lang="less">
|
|
1170
|
+
<style lang="less" scoped>
|
|
1171
|
+
.has-error {
|
|
1172
|
+
color: #a94442;
|
|
1173
|
+
}
|
|
1159
1174
|
#ChangeMeter {
|
|
1160
1175
|
.col-sm-4 {
|
|
1161
1176
|
.font_normal_body {
|