safecheck-client 3.0.34-20 → 3.0.34-21

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.
Files changed (34) hide show
  1. package/package.json +3 -3
  2. package/src/App.vue +31 -31
  3. package/src/components/android/AndroidDefectDeal.vue +634 -634
  4. package/src/components/android/ImgSelfAndroid.vue +181 -181
  5. package/src/filiale/baiyin/android/AndroidDefectDeal.vue +633 -633
  6. package/src/filiale/baiyin/android/SafecheckOrderV.vue +2798 -2798
  7. package/src/filiale/baiyin/android.js +11 -11
  8. package/src/filiale/baiyin/pc/CheckPlanAreaList.vue +485 -485
  9. package/src/filiale/baiyin/pc/CheckSearchUser.vue +1067 -1067
  10. package/src/filiale/baiyin/pc/DefectListNew.vue +597 -597
  11. package/src/filiale/baiyin/pc/DefectMainNew.vue +63 -63
  12. package/src/filiale/baiyin/pc/DefectPaperNew.vue +1052 -1052
  13. package/src/filiale/baiyin/pc/PaperList.vue +790 -790
  14. package/src/filiale/baiyin/pc/PlanChooser.vue +167 -167
  15. package/src/filiale/baiyin/pc/PlanManage.vue +834 -834
  16. package/src/filiale/baiyin/pc/RightTreeSafe.vue +348 -348
  17. package/src/filiale/baiyin/pc/RoleSelector.vue +160 -160
  18. package/src/filiale/jiaxian/android/AddPlanItem.vue +447 -447
  19. package/src/filiale/jiaxian/android/SafecheckDevices.vue +1298 -1298
  20. package/src/filiale/jiaxian/android/SafecheckOrderV.vue +2811 -2811
  21. package/src/filiale/jiaxian/android/SafecheckUserInfo.vue +784 -784
  22. package/src/filiale/jiaxian/android.js +13 -13
  23. package/src/filiale/jiaxian/pc.js +12 -12
  24. package/src/filiale/kelai/pc/CheckPlanAreaList.vue +476 -468
  25. package/src/filiale/qingjian/android/PhoneUpUserinfo.vue +1270 -1270
  26. package/src/filiale/qingjian/android/SafecheckOrderV.vue +2844 -2844
  27. package/src/filiale/weinan/android/SafecheckDevices.vue +1307 -1307
  28. package/src/filiale/weinan/android/SafecheckOrderV.vue +3345 -3345
  29. package/src/filiale/weinan/pc/DefectPaperNew.vue +1096 -1096
  30. package/src/filiale/yangchunboneng/android/NewCheckpaperAndroid.vue +1362 -1362
  31. package/src/filiale/yangchunboneng/android/PhoneUpUserinfo.vue +1235 -1235
  32. package/src/filiale/yangchunboneng/android/SafecheckOrderV.vue +2845 -2845
  33. package/src/filiale/yangchunboneng/pc/CheckSearchUser.vue +1192 -1192
  34. package/src/main.js +1 -1
@@ -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 './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 './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>