sale-client 3.5.166-1 → 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/package.json
CHANGED
|
@@ -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='累购气量'
|