safecheck-client 3.0.34-2 → 3.0.34-20
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/components/android/AndroidDefectDeal.vue +634 -633
- package/src/components/android/AreaPlan.vue +1 -7
- package/src/components/android/PaperFeedback.vue +1 -1
- package/src/components/android/PaperFeedbackTemp.vue +1 -1
- package/src/components/android/SafePlanItem.vue +509 -509
- package/src/components/android/SafecheckDevices.vue +2 -2
- package/src/components/android/SafecheckDevicesTemp.vue +1 -1
- package/src/components/android/userinfo/SafecheckUserInfo.vue +1 -1
- package/src/components/safecheckNew/android/SafecheckOrderV.vue +2731 -2731
- package/src/filiale/baiyin/android/SafecheckOrderV.vue +2798 -0
- package/src/filiale/baiyin/android.js +11 -10
- package/src/filiale/bayan/android/PaperFeedback.vue +1 -1
- package/src/filiale/bayan/android/SafecheckDevices.vue +1 -1
- package/src/filiale/bayan/android/SafecheckUserInfo.vue +1 -1
- package/src/filiale/dexin/android/SafecheckDevices.vue +1 -1
- package/src/filiale/hanzhong/android/PaperFeedback.vue +1 -1
- package/src/filiale/hanzhong/android/SafecheckDevices.vue +1 -1
- package/src/filiale/hanzhong/android/SafecheckUserInfo.vue +1 -1
- package/src/filiale/jiaxian/android/AddPlanItem.vue +447 -0
- package/src/filiale/jiaxian/android/SafecheckDevices.vue +5 -5
- 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/jingyang/android/PaperFeedback.vue +1 -1
- package/src/filiale/jingyang/android/SafecheckUserInfo.vue +1 -1
- package/src/filiale/pingxiang/android/PaperFeedback.vue +1 -1
- package/src/filiale/qingjian/android/SafecheckDevices.vue +1 -1
- package/src/filiale/qingjian/android/SafecheckUserInfo.vue +1 -1
- package/src/filiale/rongchuang/android/SafecheckOrderV.vue +2696 -2696
- package/src/filiale/shiquan/android/SafecheckDevices.vue +1 -1
- package/src/filiale/siyang/android/SafecheckUserInfo.vue +1 -1
- package/src/filiale/siyang/pc/NewCheckpaper.vue +1938 -1938
- package/src/filiale/siyang/pc/checkUserList.vue +786 -786
- package/src/filiale/siyang/pc.js +16 -16
- package/src/filiale/weinan/android/SafecheckDevices.vue +12 -0
- package/src/filiale/weinan/android/SafecheckOrderV.vue +3345 -3335
- package/src/filiale/weinan/pc/DefectPaperNew.vue +1096 -1065
- package/src/filiale/wuan/android/SafecheckOrderV.vue +4 -1
- package/src/filiale/wuan/android/SafecheckUserInfo.vue +6 -5
- package/src/filiale/yangchunboneng/android/CurrentCreate.vue +8 -11
- package/src/filiale/yangchunboneng/android/DailyworkloadQuery.vue +8 -13
- package/src/filiale/yangchunboneng/android/PaperFeedback.vue +1 -1
- package/src/filiale/yangchunboneng/android/SafecheckDevices.vue +2 -2
- package/src/filiale/yangchunboneng/android/SafecheckUserInfo.vue +1 -1
- package/src/filiale/yangchunboneng/android/safeHistoryLook.vue +8 -13
- package/src/filiale/yangchunboneng/pc/CheckBookUser.vue +269 -269
- package/src/filiale/yangchunboneng/pc/DefectPaperNew.vue +1128 -1128
- package/src/filiale/yangchunboneng/pc/PaperDefectMain.vue +972 -972
- package/src/filiale/yangchunboneng/pc/PaperList.vue +773 -773
- package/src/filiale/yongzhou/android/PaperFeedback.vue +1 -1
- package/src/filiale/yongzhou/android/SafecheckDevices.vue +1 -1
- package/src/filiale/yongzhou/android/SafecheckUserInfo.vue +1 -1
- package/src/filiale/yuansheng/android/SwitchValve.vue +322 -322
- package/src/filiale/yuansheng/android.js +17 -17
- package/src/filiale/yunchengminsheng/android/PaperFeedback.vue +1 -1
- package/src/filiale/yunchengminsheng/android/SafecheckDevices.vue +1 -1
- package/src/filiale/yunchengminsheng/android/SafecheckUserInfo.vue +1 -1
- package/src/main.js +1 -1
package/src/filiale/siyang/pc.js
CHANGED
@@ -1,16 +1,16 @@
|
|
1
|
-
// 分公司特殊组件页面注册
|
2
|
-
import Vue from "vue";
|
3
|
-
|
4
|
-
//手机特殊目录注册到该文件中
|
5
|
-
let specialComp = {
|
6
|
-
'plan-manage':(resolve) => { require(['./pc/PlanManage'], resolve) },
|
7
|
-
'paper-main':(resolve) => { require(['./pc/PaperList'], resolve) },
|
8
|
-
'new-check-paper':(resolve) => {require(['./pc/NewCheckpaper'], resolve)},
|
9
|
-
'check-user-list':(resolve) => { require(['./pc/checkUserList'], resolve) },
|
10
|
-
'paper-defect-main':(resolve) => { require(['./pc/PaperDefectMain'], resolve) },
|
11
|
-
}
|
12
|
-
exports.specialComp = specialComp
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
1
|
+
// 分公司特殊组件页面注册
|
2
|
+
import Vue from "vue";
|
3
|
+
|
4
|
+
//手机特殊目录注册到该文件中
|
5
|
+
let specialComp = {
|
6
|
+
'plan-manage':(resolve) => { require(['./pc/PlanManage'], resolve) },
|
7
|
+
'paper-main':(resolve) => { require(['./pc/PaperList'], resolve) },
|
8
|
+
'new-check-paper':(resolve) => {require(['./pc/NewCheckpaper'], resolve)},
|
9
|
+
'check-user-list':(resolve) => { require(['./pc/checkUserList'], resolve) },
|
10
|
+
'paper-defect-main':(resolve) => { require(['./pc/PaperDefectMain'], resolve) },
|
11
|
+
}
|
12
|
+
exports.specialComp = specialComp
|
13
|
+
|
14
|
+
|
15
|
+
|
16
|
+
|
@@ -174,6 +174,17 @@
|
|
174
174
|
type="number">
|
175
175
|
</div>
|
176
176
|
</div>
|
177
|
+
<div v-if="(row.f_deal_dispose == '自行处理' || row.f_deal_dispose == '限时整改') && row.f_is_defect != '' " style="display: flex;flex-wrap: wrap">
|
178
|
+
<label class="fivelabel">是否限购:</label>
|
179
|
+
<div class="form-group" style="float: left;width:60%">
|
180
|
+
<v-select :options="lives"
|
181
|
+
:value.sync="row.f_is_black"
|
182
|
+
v-model="row.f_is_black"
|
183
|
+
:value-single="true"
|
184
|
+
clear-button
|
185
|
+
close-on-select></v-select>
|
186
|
+
</div>
|
187
|
+
</div>
|
177
188
|
<div
|
178
189
|
v-if="(row.type == 'selector' || row.type == 'radio' || row.type =='checkbox') && row.tooltip != undefined && row.tooltip != '' "
|
179
190
|
class="form-group col-sm-10"
|
@@ -999,6 +1010,7 @@ export default {
|
|
999
1010
|
f_handle_date: '',
|
1000
1011
|
f_block_pitfall: this.config[this.device.device].items[item].blockPitfall ? this.config[this.device.device].items[item].blockPitfall : false,
|
1001
1012
|
f_lose_efficacy: this.config[this.device.device].items[item].loseEfficacy ? this.config[this.device.device].items[item].loseEfficacy : '',
|
1013
|
+
f_is_black:'是',
|
1002
1014
|
isshow: this.config[this.device.device].items[item].isshow == false ? this.config[this.device.device].items[item].isshow : true,
|
1003
1015
|
readonly: this.config[this.device.device].items[item].readonly == true ? true : false,
|
1004
1016
|
remark: this.config[this.device.device].items[item].remark ? this.config[this.device.device].items[item].remark : '',
|