sale-client 3.6.347 → 3.6.348
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
|
@@ -190,11 +190,11 @@
|
|
|
190
190
|
</div>
|
|
191
191
|
<div class="col-sm-4 form-group">
|
|
192
192
|
<label for="f_gas_person" class="font_normal_body"> 通 气 人</label>
|
|
193
|
-
<input type="text" class="input_search" style="width:60%" style="width:60%" v-model="row.f_gas_person"
|
|
194
|
-
placeholder='通气人'></input
|
|
195
|
-
|
|
193
|
+
<!-- <input type="text" class="input_search" style="width:60%" style="width:60%" v-model="row.f_gas_person"
|
|
194
|
+
placeholder='通气人'></input>-->
|
|
195
|
+
<v-select :value.sync="row.f_gas_person" v-model="row.f_gas_person"
|
|
196
196
|
:options='gasperson' placeholder='通气人'
|
|
197
|
-
close-on-select></v-select>
|
|
197
|
+
close-on-select></v-select>
|
|
198
198
|
</div>
|
|
199
199
|
<div class="col-sm-4 form-group" :class="[$m.f_gas_date.required ? 'has-error col' : '']">
|
|
200
200
|
<input type="text" v-model="$refs.f_gas_date.value" v-show="false" v-validate:f_gas_date='{required: true }'>
|
|
@@ -896,6 +896,9 @@
|
|
|
896
896
|
usestate () {
|
|
897
897
|
return this.$appdata.getParam('使用状态')
|
|
898
898
|
},
|
|
899
|
+
gasperson () {
|
|
900
|
+
return this.$appdata.getParam('通气人员')
|
|
901
|
+
},
|
|
899
902
|
gongyetype () {
|
|
900
903
|
return this.$appdata.getParam('工业备注')
|
|
901
904
|
},
|