safecheck-client 3.0.34-22 → 3.0.34-24
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/App-/345/215/225/351/241/265/351/235/242/346/211/223/345/214/205/347/224/250.vue +55 -0
- package/src/App.vue +31 -33
- package/src/assets/123.png +0 -0
- package/src/assets/f8632d3c8c4c1cb68e99da754cab1a7.png +0 -0
- package/src/components/LoadData.vue +62 -0
- package/src/components/android/QRCode/QRCodeBinding.vue +247 -0
- package/src/components/android/QRCode/QRCodePage.vue +199 -0
- package/src/components/android/examples/SafeListExamples.vue +95 -0
- package/src/components/android/examples/UserExamples.vue +125 -0
- package/src/filiale/fugou/android.js +11 -11
- package/src/filiale/fugou/pc/CheckBookSearchUser.vue +830 -830
- package/src/filiale/fugou/pc/DefectMainNew.vue +63 -63
- package/src/filiale/fugou/pc/DefectPaperNew.vue +1085 -1085
- package/src/filiale/fugou/pc/PaperDefectMain.vue +928 -928
- package/src/filiale/fugou/pc/PaperList.vue +911 -911
- package/src/filiale/fugou/pc/PlanManage.vue +1061 -1061
- package/src/main-/345/215/225/351/241/265/351/235/242/346/211/223/345/214/205/347/224/250.js +24 -0
- package/src/main.js +33 -32
- package/src/safecheck-android.js +4 -0
@@ -1,63 +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 '../../../components/DefectDealMain/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>
|
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 '../../../components/DefectDealMain/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>
|