safecheck-client 3.0.34-30 → 3.0.34-31

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 (33) hide show
  1. package/package.json +1 -1
  2. package/src/App.vue +31 -31
  3. package/src/components/android/ImgSelfAndroid.vue +181 -181
  4. package/src/components/android/SafecheckDevices.vue +1298 -1298
  5. package/src/components/pc/DeviceChange.vue +1088 -1068
  6. package/src/filiale/baiyin/android/AndroidDefectDeal.vue +633 -633
  7. package/src/filiale/baiyin/pc/CheckPlanAreaList.vue +485 -485
  8. package/src/filiale/baiyin/pc/CheckSearchUser.vue +1067 -1067
  9. package/src/filiale/baiyin/pc/DefectListNew.vue +597 -597
  10. package/src/filiale/baiyin/pc/DefectMainNew.vue +63 -63
  11. package/src/filiale/baiyin/pc/DefectPaperNew.vue +1052 -1052
  12. package/src/filiale/baiyin/pc/PaperList.vue +790 -790
  13. package/src/filiale/baiyin/pc/PlanChooser.vue +167 -167
  14. package/src/filiale/baiyin/pc/PlanManage.vue +834 -834
  15. package/src/filiale/baiyin/pc/RightTreeSafe.vue +348 -348
  16. package/src/filiale/baiyin/pc/RoleSelector.vue +160 -160
  17. package/src/filiale/jiaxian/android/AddPlanItem.vue +447 -447
  18. package/src/filiale/jiaxian/android/PhoneUpUserinfo.vue +1231 -1231
  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 +14 -14
  23. package/src/filiale/jiaxian/pc.js +12 -12
  24. package/src/filiale/kelai/pc/CheckPlanAreaList.vue +476 -476
  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 +1295 -1307
  28. package/src/filiale/weinan/android/SafecheckOrderV.vue +3335 -3345
  29. package/src/filiale/yangchunboneng/android/NewCheckpaperAndroid.vue +1362 -1362
  30. package/src/filiale/yangchunboneng/android/PhoneUpUserinfo.vue +1235 -1235
  31. package/src/filiale/yangchunboneng/android/SafecheckOrderV.vue +2845 -2845
  32. package/src/filiale/yangchunboneng/pc/CheckSearchUser.vue +1192 -1192
  33. package/src/main.js +1 -1
@@ -1,167 +1,167 @@
1
- <template>
2
- <div>
3
- <form class="form-inline">
4
- <div class="row form-group">
5
- <div class="col-sm-4">
6
- <label class="font_normal_body" for="c_plan_year">计划年份:</label>
7
- <v-select id="c_plan_year" :value.sync="c_plan_year"
8
- class="select_list select"
9
- :width="'55%'"
10
- style="width: 55%"
11
- :options='c_year_list' close-on-select clear-button></v-select>
12
- </div>
13
- <div class="col-sm-4">
14
- <label class="font_normal_body" for="c_plan_month">计划月份:</label>
15
- <v-select id="c_plan_month" :value.sync="c_plan_month"
16
- class="select_list select"
17
- :width="'55%'"
18
- style="width: 55%"
19
- :options='c_month_list' close-on-select clear-button></v-select>
20
- </div>
21
- <div class="col-sm-4">
22
- <label class="font_normal_body">安检人员:</label>
23
- <v-select id="checker" :value.sync="model.f_checker_id" placeholder='安检员'
24
- :value-single="true"
25
- class="select_list select"
26
- :width="'55%'"
27
- style="width: 55%"
28
- :options='checkers' close-on-select clear-button> </v-select>
29
- </div>
30
- </div>
31
- <div class="row form-group">
32
- <!--<div style="width: 65%;height:100%; display: inline-block">-->
33
- <div class="col-sm-4">
34
- <label class="font_normal_body">是否共享:</label>
35
- <v-select id="share" :value.sync="model.f_is_share" placeholder='是否共享'
36
- :value-single="true"
37
- class="select_list select"
38
- :width="'55%'"
39
- style="width: 55%"
40
- :options='shares' close-on-select clear-button> </v-select>
41
- </div>
42
-
43
- <div class="col-sm-4">
44
- <label class="font_normal_body">计划名称:</label>
45
- <input type="text" class="input_search" v-model="model.f_plan_name"
46
- style="width: 60%" placeholder="计划名称" condition="f_plan_name like '%{}%'">
47
- </div>
48
- <div class="col-sm-4">
49
- <button type="button" class="button_search" @click="search()">查询</button>
50
- </div>
51
- </div>
52
- </form>
53
- <hr>
54
- <table class="table table_sy">
55
- <thead>
56
- <tr>
57
- <th></th>
58
- <th>计划名称</th>
59
- <th>计划类型</th>
60
- </tr>
61
- </thead>
62
- <tbody>
63
- <tr v-for="row in model.rows">
64
- <td @click="select(row, $index)">{{row.selected ? '☆' : ''}}</td>
65
- <td @click="select(row, $index)">{{row.f_plan_name}}</td>
66
- <td @click="select(row, $index)">{{row.f_plan_type}}</td>
67
- </tr>
68
- </tbody>
69
- </table>
70
- </div>
71
- </template>
72
-
73
- <script>
74
- import { PagedList } from 'vue-client'
75
- import Vue from 'vue'
76
- import co from 'co'
77
- import { HttpResetClass } from 'vue-client'
78
-
79
- let selectnew = function * (self) {
80
- let http = new HttpResetClass()
81
- http.load('POST', '/rs/search', {
82
- data:{
83
- source: `this.getSpecialResByType($user$).where(row.getAttributes().get($rolesnames$)!=null ).where(row.getAttributes().get($rolesnames$).indexOf($安检员$) != -1)`,
84
- userid: self.$login.f.f_orgids.substring(0,this.$login.f.f_orgids.length-1)
85
- }
86
- }, {resolveMsg: null, rejectMsg: null}).then((res) => {
87
- self.checkers = []
88
- let arr = []
89
- //tag
90
- res.data.forEach((resRow) => {
91
- if(!arr.includes(resRow.name) && resRow.state == '在职'){
92
- arr.push(resRow.name)
93
- self.checkers.push({label:resRow.name,value:resRow.id})
94
- }
95
- })
96
- self.checkers.push({label:'全部',value:''})
97
- })
98
- }
99
-
100
-
101
- export default {
102
- title: '选择安检计划',
103
- props: ['f'],
104
- data() {
105
- let options = []
106
- let year = (new Date()).getFullYear()
107
- for(let i = year - 8; i <= year +1; i++ )
108
- options.push({label: i+'', value: i+''})
109
- let moptions = []
110
- for(let i=1; i<=12; i++)
111
- moptions.push({label: i + '', value: i + ''})
112
- let model = new PagedList('rs/sql/按年月人员提取安检计划', 20,
113
- {f_subcompany:'this.f_subcompany',f_plan_name:'this.f_plan_name',f_checker_id: 'this.f_checker_id', f_plan_year: 'this.f_plan_year', f_plan_month: 'this.f_plan_month', f_is_share: 'this.f_is_share',f_filialeid:'this.f_filialeid'})
114
- model.f_checker_id = ''
115
- model.f_plan_name=''
116
- model.f_filialeid = this.$login.f.f_orgids.substring(0,this.$login.f.f_orgids.length-1)
117
- return {
118
- checker:'',
119
- checkers:[],
120
- shares: [{label: '全部', value: ''}, {label: '是', value: '是'}, {label: '否', value: '否'}],
121
- c_plan_year: [year + ''],
122
- c_year_list: options,
123
- c_month_list: moptions,
124
- c_plan_month: [moptions[new Date().getMonth()].value],
125
- model: model,
126
- selectedRow: {}
127
- }
128
- },
129
- ready () {
130
- this.model.f_plan_year = this.c_plan_year[0]
131
- this.model.f_plan_month = this.c_plan_month[0]
132
- this.model.f_subcompany = this.$login.f.f_orgids.substring(0,this.$login.f.f_orgids.length-1)
133
- //tag
134
- //tag
135
- //tag
136
- this.model.f_plan_name=''
137
- let gen = selectnew(this)
138
- return co(gen)
139
- },
140
- watch: {
141
- 'c_plan_year' (val) {
142
- this.model.f_plan_year = val[0]
143
- },
144
- 'c_plan_month' (val) {
145
- this.model.f_plan_month = val[0]
146
- },
147
- 'checker'(){
148
- //tag
149
- this.selectedRow = {}
150
- }
151
- },
152
- methods: {
153
- search () {
154
- //this.model.rows = []
155
- this.model.rows = []
156
- this.model.search()
157
- },
158
- select(row, idx) {
159
- if(this.selectedRow)
160
- this.$set('model.rows[' + this.selectedRow.idx + '].selected', false)
161
- this.selectedRow = row
162
- this.selectedRow.idx = idx
163
- this.$set('model.rows[' + idx + '].selected', true)
164
- }
165
- }
166
- }
167
- </script>
1
+ <template>
2
+ <div>
3
+ <form class="form-inline">
4
+ <div class="row form-group">
5
+ <div class="col-sm-4">
6
+ <label class="font_normal_body" for="c_plan_year">计划年份:</label>
7
+ <v-select id="c_plan_year" :value.sync="c_plan_year"
8
+ class="select_list select"
9
+ :width="'55%'"
10
+ style="width: 55%"
11
+ :options='c_year_list' close-on-select clear-button></v-select>
12
+ </div>
13
+ <div class="col-sm-4">
14
+ <label class="font_normal_body" for="c_plan_month">计划月份:</label>
15
+ <v-select id="c_plan_month" :value.sync="c_plan_month"
16
+ class="select_list select"
17
+ :width="'55%'"
18
+ style="width: 55%"
19
+ :options='c_month_list' close-on-select clear-button></v-select>
20
+ </div>
21
+ <div class="col-sm-4">
22
+ <label class="font_normal_body">安检人员:</label>
23
+ <v-select id="checker" :value.sync="model.f_checker_id" placeholder='安检员'
24
+ :value-single="true"
25
+ class="select_list select"
26
+ :width="'55%'"
27
+ style="width: 55%"
28
+ :options='checkers' close-on-select clear-button> </v-select>
29
+ </div>
30
+ </div>
31
+ <div class="row form-group">
32
+ <!--<div style="width: 65%;height:100%; display: inline-block">-->
33
+ <div class="col-sm-4">
34
+ <label class="font_normal_body">是否共享:</label>
35
+ <v-select id="share" :value.sync="model.f_is_share" placeholder='是否共享'
36
+ :value-single="true"
37
+ class="select_list select"
38
+ :width="'55%'"
39
+ style="width: 55%"
40
+ :options='shares' close-on-select clear-button> </v-select>
41
+ </div>
42
+
43
+ <div class="col-sm-4">
44
+ <label class="font_normal_body">计划名称:</label>
45
+ <input type="text" class="input_search" v-model="model.f_plan_name"
46
+ style="width: 60%" placeholder="计划名称" condition="f_plan_name like '%{}%'">
47
+ </div>
48
+ <div class="col-sm-4">
49
+ <button type="button" class="button_search" @click="search()">查询</button>
50
+ </div>
51
+ </div>
52
+ </form>
53
+ <hr>
54
+ <table class="table table_sy">
55
+ <thead>
56
+ <tr>
57
+ <th></th>
58
+ <th>计划名称</th>
59
+ <th>计划类型</th>
60
+ </tr>
61
+ </thead>
62
+ <tbody>
63
+ <tr v-for="row in model.rows">
64
+ <td @click="select(row, $index)">{{row.selected ? '☆' : ''}}</td>
65
+ <td @click="select(row, $index)">{{row.f_plan_name}}</td>
66
+ <td @click="select(row, $index)">{{row.f_plan_type}}</td>
67
+ </tr>
68
+ </tbody>
69
+ </table>
70
+ </div>
71
+ </template>
72
+
73
+ <script>
74
+ import { PagedList } from 'vue-client'
75
+ import Vue from 'vue'
76
+ import co from 'co'
77
+ import { HttpResetClass } from 'vue-client'
78
+
79
+ let selectnew = function * (self) {
80
+ let http = new HttpResetClass()
81
+ http.load('POST', '/rs/search', {
82
+ data:{
83
+ source: `this.getSpecialResByType($user$).where(row.getAttributes().get($rolesnames$)!=null ).where(row.getAttributes().get($rolesnames$).indexOf($安检员$) != -1)`,
84
+ userid: self.$login.f.f_orgids.substring(0,this.$login.f.f_orgids.length-1)
85
+ }
86
+ }, {resolveMsg: null, rejectMsg: null}).then((res) => {
87
+ self.checkers = []
88
+ let arr = []
89
+ //tag
90
+ res.data.forEach((resRow) => {
91
+ if(!arr.includes(resRow.name) && resRow.state == '在职'){
92
+ arr.push(resRow.name)
93
+ self.checkers.push({label:resRow.name,value:resRow.id})
94
+ }
95
+ })
96
+ self.checkers.push({label:'全部',value:''})
97
+ })
98
+ }
99
+
100
+
101
+ export default {
102
+ title: '选择安检计划',
103
+ props: ['f'],
104
+ data() {
105
+ let options = []
106
+ let year = (new Date()).getFullYear()
107
+ for(let i = year - 8; i <= year +1; i++ )
108
+ options.push({label: i+'', value: i+''})
109
+ let moptions = []
110
+ for(let i=1; i<=12; i++)
111
+ moptions.push({label: i + '', value: i + ''})
112
+ let model = new PagedList('rs/sql/按年月人员提取安检计划', 20,
113
+ {f_subcompany:'this.f_subcompany',f_plan_name:'this.f_plan_name',f_checker_id: 'this.f_checker_id', f_plan_year: 'this.f_plan_year', f_plan_month: 'this.f_plan_month', f_is_share: 'this.f_is_share',f_filialeid:'this.f_filialeid'})
114
+ model.f_checker_id = ''
115
+ model.f_plan_name=''
116
+ model.f_filialeid = this.$login.f.f_orgids.substring(0,this.$login.f.f_orgids.length-1)
117
+ return {
118
+ checker:'',
119
+ checkers:[],
120
+ shares: [{label: '全部', value: ''}, {label: '是', value: '是'}, {label: '否', value: '否'}],
121
+ c_plan_year: [year + ''],
122
+ c_year_list: options,
123
+ c_month_list: moptions,
124
+ c_plan_month: [moptions[new Date().getMonth()].value],
125
+ model: model,
126
+ selectedRow: {}
127
+ }
128
+ },
129
+ ready () {
130
+ this.model.f_plan_year = this.c_plan_year[0]
131
+ this.model.f_plan_month = this.c_plan_month[0]
132
+ this.model.f_subcompany = this.$login.f.f_orgids.substring(0,this.$login.f.f_orgids.length-1)
133
+ //tag
134
+ //tag
135
+ //tag
136
+ this.model.f_plan_name=''
137
+ let gen = selectnew(this)
138
+ return co(gen)
139
+ },
140
+ watch: {
141
+ 'c_plan_year' (val) {
142
+ this.model.f_plan_year = val[0]
143
+ },
144
+ 'c_plan_month' (val) {
145
+ this.model.f_plan_month = val[0]
146
+ },
147
+ 'checker'(){
148
+ //tag
149
+ this.selectedRow = {}
150
+ }
151
+ },
152
+ methods: {
153
+ search () {
154
+ //this.model.rows = []
155
+ this.model.rows = []
156
+ this.model.search()
157
+ },
158
+ select(row, idx) {
159
+ if(this.selectedRow)
160
+ this.$set('model.rows[' + this.selectedRow.idx + '].selected', false)
161
+ this.selectedRow = row
162
+ this.selectedRow.idx = idx
163
+ this.$set('model.rows[' + idx + '].selected', true)
164
+ }
165
+ }
166
+ }
167
+ </script>