safecheck-client 3.0.35-1 → 3.0.35-10
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/Util/SafecheckUpload.vue +269 -265
- package/src/components/android/CivilCurrentCreate.vue +46 -41
- package/src/components/android/examples/UserExamples.vue +136 -136
- package/src/components/rongcheng/AspiratedPaperFeedbackm.vue +1049 -1045
- package/src/filiale/bayan/android/AddPlanItem.vue +13 -2
- package/src/filiale/bayan/android/CheckPlanDown.vue +2 -2
- package/src/filiale/bayan/android/PaperFeedback.vue +1669 -1669
- 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/CheckPlanAreaList.vue +42 -0
- package/src/filiale/bayan/pc/HiddenSituation.vue +295 -295
- package/src/filiale/bayan/pc/NewCheckpaper.vue +1992 -1992
- package/src/filiale/bayan/pc/PaperList.vue +900 -900
- package/src/filiale/bayan/pc/PlanManage.vue +2 -0
- package/src/filiale/bayan/pc/SelectCheckPlan.vue +58 -0
- package/src/filiale/shanxian/android/AddPlanItem.vue +1 -1
- package/src/filiale/shanxian/android/SafecheckOrderV.vue +1 -1
- package/src/filiale/tongchuan/android/SafecheckDevices.vue +1207 -1207
- package/src/filiale/tongchuan/android/SafecheckOrderV.vue +3035 -3035
- package/src/filiale/tongchuan/pc/CheckSearchUser.vue +1053 -1053
- package/src/filiale/tongchuan/pc/checkUserList.vue +639 -639
- package/src/filiale/xilan/android/AddPlanItem.vue +4 -0
- package/src/filiale/xilan/android/CurrentCreate.vue +6 -2
- package/src/filiale/yangchunboneng/pc/CheckPlanAreaList.vue +642 -642
- package/src/main.js +33 -33
@@ -488,6 +488,7 @@
|
|
488
488
|
isSend:false,
|
489
489
|
createPlan:{
|
490
490
|
f_outlets:'',
|
491
|
+
f_class:'',
|
491
492
|
f_end_time:'',
|
492
493
|
f_start_time:'',
|
493
494
|
f_plan_name:'',
|
@@ -638,6 +639,7 @@
|
|
638
639
|
f_plan_name:'',
|
639
640
|
f_plan_year:'',
|
640
641
|
f_plan_month:'',
|
642
|
+
f_class:'',
|
641
643
|
f_outlets:'',
|
642
644
|
isShare:'否',
|
643
645
|
f_issued:'否',
|
@@ -66,6 +66,30 @@
|
|
66
66
|
close-on-select
|
67
67
|
condition="f_check_type = '{}'"></v-select>
|
68
68
|
</div>
|
69
|
+
<div :class="{'form-group col-sm-3':$parent.$parent.$parent.showItem,'form-group col-sm-2':!$parent.$parent.$parent.showItem}">
|
70
|
+
<label class="font_normal_body" >区  域</label>
|
71
|
+
<v-select :value.sync="model.f_quyu" :value-single="true" v-model="model.f_quyu"
|
72
|
+
:options='$parent.$parent.quyus' placeholder='区域' class="select_list select" style="width: 60%"
|
73
|
+
@change="$parent.$parent.quyuChange"
|
74
|
+
close-on-select>
|
75
|
+
</v-select>
|
76
|
+
</div>
|
77
|
+
<div :class="{'form-group col-sm-3':$parent.$parent.$parent.showItem,'form-group col-sm-2':!$parent.$parent.$parent.showItem}">
|
78
|
+
<label class="font_normal_body" >营 业 厅</label>
|
79
|
+
<v-select :value.sync="model.f_bumen" :value-single="true" v-model="model.f_bumen"
|
80
|
+
:options='$parent.$parent.bumens' placeholder='营业厅'
|
81
|
+
@change="$parent.$parent.bumenChange" class="select_list select" style="width: 60%"
|
82
|
+
close-on-select>
|
83
|
+
</v-select>
|
84
|
+
</div>
|
85
|
+
<div :class="{'form-group col-sm-3':$parent.$parent.$parent.showItem,'form-group col-sm-2':!$parent.$parent.$parent.showItem}">
|
86
|
+
<label class="font_normal_body">小  组</label>
|
87
|
+
<v-select :value.sync="model.f_team" :value-single="true" v-model="model.f_team"
|
88
|
+
:options='$parent.$parent.teams' placeholder='小组'
|
89
|
+
@change="$parent.$parent.teamChange" class="select_list select" style="width: 60%"
|
90
|
+
close-on-select>
|
91
|
+
</v-select>
|
92
|
+
</div>
|
69
93
|
<!--<div :class="{'form-group col-sm-3':$parent.$parent.$parent.showItem,'form-group col-sm-2':!$parent.$parent.$parent.showItem}" v-if="$parent.$parent.criteriaShow">-->
|
70
94
|
<!--<label class="font_normal_body">安检起始</label>-->
|
71
95
|
<!--<datepicker-->
|
@@ -92,6 +116,7 @@
|
|
92
116
|
progress="safeGetExportProgress"
|
93
117
|
sqlurl="rs/logic/SafeExportExcel" sql-name="planCount" template-name='安检计划明细' ></export-excel-safe>
|
94
118
|
<button type="button" class="button_search button_spacing" @click="search()">查询</button>
|
119
|
+
<button type="button" class="button_search button_spacing" @click="$parent.$parent.cleamsg()">清空</button>
|
95
120
|
<!--<div class="button_spacing"-->
|
96
121
|
<!--:class="{'button_shrink_top':$parent.criteriaShow,'button_shrink_bottom':!$parent.criteriaShow}"-->
|
97
122
|
<!--@click="$parent.$parent.hidden()">-->
|
@@ -185,6 +210,9 @@ export default {
|
|
185
210
|
}, {plannum: '', ruhu: '', jujian: '', daofang: '',no_plan_num:'',noruhu:'',nodaofang:'',nojujian:'',ruhu_total:'',daofang_total:'',jujian_total:'',total_sum:''})
|
186
211
|
model.f_filialeids = '('+this.$login.f.orgid+')'
|
187
212
|
return {
|
213
|
+
quyus: [{label: '请选择', value: ''}, ...this.$appdata.getParam('区域')],
|
214
|
+
bumens: [{label: '请选择', value: ''}],
|
215
|
+
teams: [{label: '请选择', value: ''}],
|
188
216
|
checktype: this.$appdata.getParam('用户类型')?[{label: '全部', value: ''}, ...this.$appdata.getParam('用户类型')]:[{label: '全部', value: ''}],
|
189
217
|
excelHeaders:{
|
190
218
|
'f_checker': '安检员',
|
@@ -228,6 +256,36 @@ export default {
|
|
228
256
|
}
|
229
257
|
},
|
230
258
|
methods: {
|
259
|
+
cleamsg(){
|
260
|
+
this.$refs.paged.$refs.cri.model= {}
|
261
|
+
},
|
262
|
+
bumenChange(val) {
|
263
|
+
if (val) {
|
264
|
+
this.teams = this.$appdata.getParam(`工单-` + val) ? [{
|
265
|
+
label: '请选择',
|
266
|
+
value: ''
|
267
|
+
}, ...this.$appdata.getParam(`工单-` + val)] : [{label: '请选择', value: ''}]
|
268
|
+
}else {
|
269
|
+
this.checkers = this.allCheckers
|
270
|
+
}
|
271
|
+
},
|
272
|
+
teamChange(val) {
|
273
|
+
if (val) {
|
274
|
+
this.checkers = this.$appdata.getParam(val) ? [...this.$appdata.getParam(val)] : [{label: '请选择', value: ''}]
|
275
|
+
}else {
|
276
|
+
this.checkers = this.allCheckers
|
277
|
+
}
|
278
|
+
},
|
279
|
+
quyuChange(val) {
|
280
|
+
if (val) {
|
281
|
+
this.bumens = this.$appdata.getParam(val) ? [{
|
282
|
+
label: '请选择',
|
283
|
+
value: ''
|
284
|
+
}, ...this.$appdata.getParam(val)] : [{label: '请选择', value: ''}]
|
285
|
+
}else {
|
286
|
+
this.checkers = this.allCheckers
|
287
|
+
}
|
288
|
+
},
|
231
289
|
hidden() {
|
232
290
|
this.criteriaShow = !this.criteriaShow
|
233
291
|
},
|
@@ -223,7 +223,7 @@
|
|
223
223
|
export default {
|
224
224
|
title: '安检员B',
|
225
225
|
data () {
|
226
|
-
let model = new PagedList(`${this.$androidUtil.getProxyUrl()}/rs/sql/提取用户档案`, 20, { groupitem: '""', orderitem: '"f_residential_area,CAST(build as int),f_unit,CAST(floor1 as int) desc,f_room"',f_check_type:'this.f_check_type[0]',
|
226
|
+
let model = new PagedList(`${this.$androidUtil.getProxyUrl()}/rs/sql/提取用户档案`, 20, { groupitem: '""', orderitem: '"f_residential_area,CAST(build as int) desc,f_unit,CAST(floor1 as int) desc,f_room"',f_check_type:'this.f_check_type[0]',
|
227
227
|
f_user_name:'this.model.f_username',myCycle: 'this.myCycle',fyCycle: 'this.fyCycle', f_user_type:'this.f_user_type',f_sign: 'this.f_sign[0]', f_residential_area:'this.model.f_districtname', f_address:'this.model.f_address',f_user_state: 'this.f_user_state[0]',f_orgids:'this.f_orgids',f_unit:'this.model.f_unit',f_building:'this.model.f_building',f_filialeid:'this.f_filialeid'})
|
228
228
|
model.f_sign = ['']
|
229
229
|
model.f_user_type = ''
|