sale-client 3.5.159 → 3.5.160
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 +1 -1
- package/src/filiale/danxian/components/FilesManage/MeterinfoTest.vue +14 -5
- package/src/filiale/shanxian/components/FilesManage/MeterinfoTest.vue +1061 -0
- package/src/filiale/shanxian/components/FilesManage/UserGeneralInfoTest.vue +684 -0
- package/src/filiale/shanxian/sale.js +5 -1
package/package.json
CHANGED
|
@@ -196,11 +196,17 @@
|
|
|
196
196
|
</div>
|
|
197
197
|
<div class="col-sm-4 form-group">
|
|
198
198
|
<label for="f_gas_person" class="font_normal_body"> 通 气 人</label>
|
|
199
|
-
<input type="text" class="input_search" style="width:60%" style="width:60%" v-model="row.f_gas_person"
|
|
200
|
-
placeholder='通气人'></input
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
199
|
+
<!-- <input type="text" class="input_search" style="width:60%" style="width:60%" v-model="row.f_gas_person"-->
|
|
200
|
+
<!-- placeholder='通气人'></input>-->
|
|
201
|
+
<v-select id="f_gas_person"
|
|
202
|
+
:value.sync="row.f_gas_person"
|
|
203
|
+
v-model="row.f_gas_person"
|
|
204
|
+
:options='gasperson'
|
|
205
|
+
:value-single="true"
|
|
206
|
+
placeholder='通气人'
|
|
207
|
+
search
|
|
208
|
+
close-on-select>
|
|
209
|
+
</v-select>
|
|
204
210
|
</div>
|
|
205
211
|
<div class="col-sm-4 form-group">
|
|
206
212
|
<input type="text" v-model="$refs.f_gas_date.value" v-show="false" >
|
|
@@ -984,6 +990,9 @@
|
|
|
984
990
|
aroundmeters () {
|
|
985
991
|
return this.$appdata.getParam('左右表')
|
|
986
992
|
},
|
|
993
|
+
gasperson () {
|
|
994
|
+
return this.$appdata.getParam('通气人')
|
|
995
|
+
},
|
|
987
996
|
positions () {
|
|
988
997
|
return this.$appdata.getParam('安装位置')
|
|
989
998
|
},
|