readmeter-changan 1.0.35 → 1.0.36
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
|
@@ -160,6 +160,19 @@
|
|
|
160
160
|
<input type="text" id="f_remark" class="form-control font" v-el:f_remark v-model="model.f_remark" >
|
|
161
161
|
</div>
|
|
162
162
|
</div>
|
|
163
|
+
<div class="auto col-xs-12 col-sm-6 col-md-6 bg-white app-row ">
|
|
164
|
+
<label for="f_condition" class="panel-title col-xs-4 col-sm-4 col-md-4 text-left font">未安装替换表周检</label>
|
|
165
|
+
<div class="col-xs-8 col-sm-8 col-md-8 ">
|
|
166
|
+
<v-select id="f_new_install"
|
|
167
|
+
v-model="model.f_new_install"
|
|
168
|
+
placeholder='请选择'
|
|
169
|
+
:value.sync="model.f_new_install"
|
|
170
|
+
:value-single="true"
|
|
171
|
+
:options='install'
|
|
172
|
+
close-on-select clear-button>
|
|
173
|
+
</v-select>
|
|
174
|
+
</div>
|
|
175
|
+
</div>
|
|
163
176
|
<div class="auto row col-sm-12 col-xs-12 col-md-12 bg-white">
|
|
164
177
|
<div class="auto col-sm-6 col-xs-6 col-md-6">
|
|
165
178
|
<input class="magic-checkbox" type="checkbox" id="f_check_install" :true-value="'是'" :false-value="''"
|
|
@@ -349,11 +362,13 @@
|
|
|
349
362
|
title: '手机单户抄表',
|
|
350
363
|
data () {
|
|
351
364
|
return {
|
|
365
|
+
install:[{label:'开始',value:'开始'},{label:'结束',value:'结束'}],
|
|
352
366
|
model: {
|
|
353
367
|
f_mark:'',
|
|
354
368
|
f_condition:'',
|
|
355
369
|
f_pressure:'',
|
|
356
370
|
f_temperature:'',
|
|
371
|
+
f_new_install:'',
|
|
357
372
|
f_result_state:'',
|
|
358
373
|
f_check_result_state:'',
|
|
359
374
|
f_check_install:'',
|