safecheck-client 4.0.0-66 → 4.0.0-67
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 +3 -3
- package/src/components/NewDefectList/DefectListNew.vue +23 -23
- package/src/components/NewDefectList/DefectPaperNew.vue +52 -72
- package/src/components/paper/PaperList.vue +341 -368
- package/src/components/planmanage/PlanManage.vue +821 -828
- package/src/components/planmanage/checkUserList.vue +361 -366
- package/src/components/querycheckpaper/CheckSearchUser.vue +71 -97
- package/src/components/report/CheckPlanAreaList.vue +267 -273
- package/src/filiale/jinhong/android/CurrentCreate.vue +1192 -0
- package/src/filiale/jinhong/android.js +2 -1
- package/src/filiale/jinhong/pc/checkUserList.vue +8 -10
@@ -4,7 +4,8 @@ import Vue from "vue";
|
|
4
4
|
// 手机特殊目录注册到该文件中
|
5
5
|
let specialComp = {
|
6
6
|
'phone-insurance-record-list': (resolve) => { require(['./android/PhoneInsuranceRecordList.vue'], resolve) },
|
7
|
-
'phone-insurance-purchase-detail': (resolve) => { require(['./android/PhoneInsurancePurchaseDetail'], resolve) }
|
7
|
+
'phone-insurance-purchase-detail': (resolve) => { require(['./android/PhoneInsurancePurchaseDetail'], resolve) },
|
8
|
+
'current-create': (resolve) => { require(['./android/CurrentCreate'], resolve) }
|
8
9
|
}
|
9
10
|
exports.specialComp = specialComp
|
10
11
|
|
@@ -267,16 +267,14 @@
|
|
267
267
|
</div>
|
268
268
|
<div class="form-group col-sm-4">
|
269
269
|
<label class="font_normal_body">安检册:</label>
|
270
|
-
<v-select
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
value-single
|
279
|
-
>
|
270
|
+
<v-select class="select_list select"
|
271
|
+
placeholder='安检册' style="width: 60%"
|
272
|
+
:value.sync="model.f_meter_book_num" v-model="model.f_meter_book_num"
|
273
|
+
:options='$parent.$parent.checkBooks'
|
274
|
+
filer-key="name"
|
275
|
+
close-on-select clear-button
|
276
|
+
condition="f_check_book_name like '%{}%'"
|
277
|
+
:value-single="true">
|
280
278
|
</v-select>
|
281
279
|
</div>
|
282
280
|
<div class="form-group col-sm-4" >
|