safecheck-client 3.0.35-4 → 3.0.35-41
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/src/bootstrap/less/pager.less +76 -76
- package/src/components/NewDefectList/DefectListNew.vue +617 -617
- package/src/components/Util/SafecheckUpload.vue +4 -0
- package/src/components/android/CheckPlanDown.vue +1 -1
- package/src/components/android/CivilCurrentCreate.vue +56 -41
- package/src/components/android/NoCivilCurrentCreate.vue +10 -0
- package/src/components/android/PhoneUpUserinfo.vue +25 -6
- package/src/components/android/SafecheckDevices.vue +1298 -1298
- package/src/components/android/SafecheckOrderV.vue +2 -529
- package/src/components/pc/AddPlanItemYyChange.vue +743 -0
- package/src/components/pc/NewCheckpaper.vue +1998 -1943
- package/src/components/pc/SecurityCheckLedger.vue +133 -0
- package/src/components/pc/SecurityCheckList.vue +144 -0
- package/src/components/pc/SecurityCheckManage.vue +106 -0
- package/src/components/planmanage/PlanManage.vue +47 -2
- package/src/components/report/CheckPlanAreaList.vue +25 -5
- package/src/components/rongcheng/AddPlanItem.vue +1 -1
- package/src/components/rongcheng/AspiratedAreaPlan.vue +1 -0
- package/src/components/rongcheng/AspiratedPaperFeedbackm.vue +4 -0
- package/src/components/rongcheng/AspiratedUserInfo.vue +12 -4
- package/src/components/rongcheng/CheckSearchUser.vue +1 -1
- package/src/components/rongcheng/SafecheckOrderV.vue +1 -1
- package/src/components/rongcheng/SafecheckUserInfo.vue +12 -12
- package/src/filiale/bayan/android/AddPlanItem.vue +22 -2
- package/src/filiale/bayan/android/CheckPlanDown.vue +2 -2
- package/src/filiale/bayan/android/CurrentCreate.vue +10 -0
- package/src/filiale/bayan/android/PhoneUpUserinfo.vue +908 -905
- package/src/filiale/bayan/android/SafecheckOrderV.vue +76 -20
- package/src/filiale/bayan/android/SafecheckUserInfo.vue +4 -0
- package/src/filiale/bayan/pc/PlanManage.vue +2 -0
- package/src/filiale/bayan/pc/SelectCheckPlan.vue +6 -1
- package/src/filiale/dexin/pc/DefectListNew.vue +643 -0
- package/src/filiale/dexin/pc/DefectMainNew.vue +63 -0
- package/src/filiale/dexin/pc/DefectPaperNew.vue +1066 -0
- package/src/filiale/dexin/pc.js +1 -0
- package/src/filiale/huaran/android/CheckPlanDown.vue +212 -0
- package/src/filiale/huaran/android.js +1 -0
- package/src/filiale/huaran/pc/PaperList.vue +22 -1
- package/src/filiale/huaran/pc/PlanManage.vue +53 -6
- package/src/filiale/huaran/pc/checkUserList.vue +55 -22
- package/src/filiale/huaran/pc.js +1 -0
- package/src/filiale/jiaxian/android/SafecheckOrderV.vue +2807 -2807
- package/src/filiale/qianneng/android/SafecheckOrderV.vue +2785 -2785
- package/src/filiale/qianneng/android/SwitchValve.vue +1 -0
- package/src/filiale/shanxian/android/AddPlanItem.vue +447 -447
- package/src/filiale/shanxian/android/SafecheckOrderV.vue +2979 -2979
- package/src/filiale/shanxian/pc/checkUserList.vue +700 -700
- package/src/filiale/siyang/pc/CheckSearchUser.vue +1035 -1035
- package/src/filiale/siyang/pc/checkUserList.vue +108 -133
- package/src/filiale/tongchuan/android/SafecheckOrderV.vue +3 -3
- package/src/filiale/tongchuan/pc/CheckSearchUser.vue +5 -13
- package/src/filiale/tongchuan/pc/PaperDefectMain.vue +1060 -1060
- package/src/filiale/weinan/pc/CheckBookSearchUserList.vue +735 -735
- package/src/filiale/weinan/pc/CheckDetail.vue +278 -278
- package/src/filiale/weinan/pc/checkUserList.vue +712 -712
- package/src/filiale/xilan/android/CurrentCreate.vue +1053 -1067
- package/src/filiale/xilan/android.js +0 -1
- package/src/filiale/xilan/pc/PaperList.vue +795 -0
- package/src/filiale/xilan/pc.js +13 -12
- package/src/filiale/yangchunboneng/pc/CheckPlanAreaList.vue +642 -642
- package/src/safecheck.js +12 -0
- package/src/filiale/xilan/android/AddPlanItem.vue +0 -461
@@ -0,0 +1,63 @@
|
|
1
|
+
<template>
|
2
|
+
<div id="unit" class="flex-row" :class="{'binary':showItem}">
|
3
|
+
<div :class="{'basic-main':!showItem,'binary-left':showItem}">
|
4
|
+
<defect-paper-new @select-changed="selected" :style="style" :style2="style2" v-ref:check></defect-paper-new>
|
5
|
+
</div>
|
6
|
+
<div class="binary-right" v-show="showItem">
|
7
|
+
<div class="flex">
|
8
|
+
<defect-list-new v-if='$refs.check && $refs.check.selected' :check='$refs.check.selected'
|
9
|
+
v-ref:detail></defect-list-new>
|
10
|
+
</div>
|
11
|
+
</div>
|
12
|
+
</div>
|
13
|
+
</template>
|
14
|
+
|
15
|
+
<script>
|
16
|
+
import DefectPaperNew from './DefectPaperNew'
|
17
|
+
import DefectListNew from './DefectListNew'
|
18
|
+
|
19
|
+
export default {
|
20
|
+
title: '隐患查看',
|
21
|
+
props: ['f'],
|
22
|
+
components: {DefectPaperNew, DefectListNew},
|
23
|
+
data() {
|
24
|
+
return {
|
25
|
+
showItem: false,
|
26
|
+
style: 'col-sm-2 form-group',
|
27
|
+
style2: 'col-sm-4 form-group'
|
28
|
+
}
|
29
|
+
},
|
30
|
+
methods: {
|
31
|
+
selected(row) {
|
32
|
+
this.showItem = true
|
33
|
+
}
|
34
|
+
},
|
35
|
+
watch: {
|
36
|
+
'showItem'(val) {
|
37
|
+
//tag
|
38
|
+
//tag
|
39
|
+
if (val) {
|
40
|
+
this.style = 'col-sm-3 form-group'
|
41
|
+
this.style2 = 'col-sm-6 form-group'
|
42
|
+
} else {
|
43
|
+
this.style = 'col-sm-2 form-group'
|
44
|
+
this.style2 = 'col-sm-4 form-group'
|
45
|
+
}
|
46
|
+
}
|
47
|
+
}
|
48
|
+
}
|
49
|
+
</script>
|
50
|
+
<style>
|
51
|
+
.form-input-group label {
|
52
|
+
text-align: right;
|
53
|
+
width: auto;
|
54
|
+
}
|
55
|
+
|
56
|
+
.datapanel {
|
57
|
+
color: #333;
|
58
|
+
background-color: white;
|
59
|
+
box-shadow: darkgrey 0.5px 0.5px 0.5px 0.5px;
|
60
|
+
padding: 5px 7px 5px 7px;
|
61
|
+
border-radius: 10px;
|
62
|
+
}
|
63
|
+
</style>
|