safecheck-client 3.0.34-15 → 3.0.34-19
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/jiaxian/android/AddPlanItem.vue +447 -0
- package/src/filiale/jiaxian/android/SafecheckDevices.vue +4 -4
- package/src/filiale/jiaxian/android/SafecheckOrderV.vue +2811 -0
- package/src/filiale/jiaxian/android/SafecheckUserInfo.vue +784 -0
- package/src/filiale/jiaxian/android.js +3 -0
- package/src/filiale/weinan/android/SafecheckDevices.vue +1307 -1295
- package/src/filiale/weinan/android/SafecheckOrderV.vue +10 -0
@@ -147,6 +147,15 @@
|
|
147
147
|
type="text">
|
148
148
|
</div>
|
149
149
|
</div>
|
150
|
+
<div v-if="item.f_deal_dispose == '自行处理' || item.f_deal_dispose == '限时整改'" class="form-group" style="display: flex;flex-wrap: wrap">
|
151
|
+
<label class="fivelabel">是否拉黑</label>
|
152
|
+
<v-select :options="lives"
|
153
|
+
:value.sync="item.f_is_black"
|
154
|
+
v-model="item.f_is_black"
|
155
|
+
:value-single="true"
|
156
|
+
clear-button
|
157
|
+
close-on-select></v-select>
|
158
|
+
</div>
|
150
159
|
</div>
|
151
160
|
</div>
|
152
161
|
</div>
|
@@ -197,6 +206,7 @@ export default {
|
|
197
206
|
value: '报修'
|
198
207
|
}, {label: '限时整改', value: '限时整改'}, {label: '跟踪处置', value: '跟踪处置'}],
|
199
208
|
showModal3:false,
|
209
|
+
lives: [{label: '是', value: '是'}, {label: '否', value: '否'}],
|
200
210
|
data: {
|
201
211
|
f_devices: [],
|
202
212
|
f_defect_content: '',
|