safecheck-client 3.0.35-14 → 3.0.35-15
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/src/components/Util/SafecheckUpload.vue +269 -269
- package/src/components/android/CivilCurrentCreate.vue +1041 -1041
- package/src/components/android/NoCivilCurrentCreate.vue +1033 -1033
- package/src/components/pc/SecurityCheckLedger.vue +113 -113
- package/src/components/rongcheng/AspiratedPaperFeedbackm.vue +1049 -1049
- package/src/components/rongcheng/PhoneDevicesInfo.vue +248 -248
- package/src/filiale/bayan/android/AddPlanItem.vue +450 -450
- package/src/filiale/bayan/android/CurrentCreate.vue +1067 -1067
- package/src/filiale/huaran/android/CheckPlanDown.vue +212 -212
- package/src/filiale/huaran/android.js +13 -13
- package/src/filiale/tongchuan/pc/CheckSearchUser.vue +0 -13
- package/src/safecheck.js +901 -901
@@ -1,113 +1,113 @@
|
|
1
|
-
<template>
|
2
|
-
<div class="flex-row">
|
3
|
-
<div class="basic-main">
|
4
|
-
<criteria-paged :model="model" v-ref:paged>
|
5
|
-
<criteria partial='criteria' class="search_area" @condition-changed='$parent.selfSearch' v-ref:criteria>
|
6
|
-
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
|
7
|
-
<div class="row">
|
8
|
-
<div class="form-group col-sm-2" >
|
9
|
-
<label class="font_normal_body">小区名称</label>
|
10
|
-
<input type="text" class="input_search" v-model="model.f_residential_area"
|
11
|
-
style="width: 60%" placeholder="小区名称" condition="ta.f_residential_area like '%{}%'">
|
12
|
-
</div>
|
13
|
-
<div class="form-group col-sm-2" style="width: auto;margin-top:8px;float: right">
|
14
|
-
<export-excel-safe :data="$parent.$parent.searchData"
|
15
|
-
:field="$parent.$parent.excelHeaders"
|
16
|
-
:choose-col="true"
|
17
|
-
sqlurl="rs/logic/SafeExportExcel" sql-name="securityCheckLedger" template-name='安检台账'></export-excel-safe>
|
18
|
-
<button class="button_spacing button_search" @click="search()">查询</button>
|
19
|
-
</div>
|
20
|
-
</div>
|
21
|
-
</div>
|
22
|
-
</criteria>
|
23
|
-
<data-grid class="list_area table_sy" style="overflow: hidden" :model="model" partial='list' v-ref:grid>
|
24
|
-
<template partial='head'>
|
25
|
-
<tr>
|
26
|
-
<th>
|
27
|
-
<nobr>小区名称</nobr>
|
28
|
-
</th>
|
29
|
-
<th>
|
30
|
-
<nobr>小区用户数</nobr>
|
31
|
-
</th>
|
32
|
-
<th>
|
33
|
-
<nobr>所属计划</nobr>
|
34
|
-
</th>
|
35
|
-
<th>
|
36
|
-
<nobr>计划内用户数</nobr>
|
37
|
-
</th>
|
38
|
-
<th>
|
39
|
-
<nobr>计划下发时间</nobr>
|
40
|
-
</th>
|
41
|
-
<th>
|
42
|
-
<nobr>执行时间</nobr>
|
43
|
-
</th>
|
44
|
-
<th>
|
45
|
-
<nobr>执行周期</nobr>
|
46
|
-
</th>
|
47
|
-
<th>
|
48
|
-
<nobr>周期单位</nobr>
|
49
|
-
</th>
|
50
|
-
<th>
|
51
|
-
<nobr>距离下周期时间(天)</nobr>
|
52
|
-
</th>
|
53
|
-
</tr>
|
54
|
-
</template>
|
55
|
-
<template partial='body'>
|
56
|
-
<td style="text-align: center">{{row.f_residential_area}}</td>
|
57
|
-
<td style="text-align: center">{{row.f_plan_name}}</td>
|
58
|
-
<td style="text-align: center">{{row.area_num}}</td>
|
59
|
-
<td style="text-align: center">{{row.plan_num}}</td>
|
60
|
-
<td style="text-align: center">{{row.f_issue_time}}</td>
|
61
|
-
<td style="text-align: center">{{row.first_check_date}}</td>
|
62
|
-
<td style="text-align: center">{{row.zq_value}}</td>
|
63
|
-
<td style="text-align: center">{{row.dw_value}}</td>
|
64
|
-
<td style="text-align: center">{{row.difference_day}}</td>
|
65
|
-
</template>
|
66
|
-
</data-grid>
|
67
|
-
</criteria-paged>
|
68
|
-
</div>
|
69
|
-
</div>
|
70
|
-
</template>
|
71
|
-
|
72
|
-
<script>
|
73
|
-
import {PagedList} from 'vue-client'
|
74
|
-
|
75
|
-
export default {
|
76
|
-
title: '安检台账',
|
77
|
-
data() {
|
78
|
-
return {
|
79
|
-
model: new PagedList('rs/sql/securityCheckLedger', 20),
|
80
|
-
searchData: {
|
81
|
-
condition: "1=1"
|
82
|
-
},
|
83
|
-
excelHeaders: {
|
84
|
-
'f_residential_area': '小区名称',
|
85
|
-
'f_plan_name': '小区用户数',
|
86
|
-
'area_num': '所属计划',
|
87
|
-
'plan_num': '计划内用户数',
|
88
|
-
'f_issue_time': '计划下发时间',
|
89
|
-
'first_check_date': '执行时间',
|
90
|
-
'zq_value': '执行周期',
|
91
|
-
'dw_value': '周期单位',
|
92
|
-
'difference_day': '距离下周期时间(天)'
|
93
|
-
}
|
94
|
-
}
|
95
|
-
},
|
96
|
-
methods: {
|
97
|
-
selfSearch(args) {
|
98
|
-
this.model.search(args.condition, args.model, args.condValue)
|
99
|
-
}
|
100
|
-
},
|
101
|
-
ready() {
|
102
|
-
|
103
|
-
},
|
104
|
-
watch: {
|
105
|
-
'model.condition'(val) {
|
106
|
-
if (val) {
|
107
|
-
this.searchData.condition = val
|
108
|
-
}
|
109
|
-
}
|
110
|
-
}
|
111
|
-
|
112
|
-
}
|
113
|
-
</script>
|
1
|
+
<template>
|
2
|
+
<div class="flex-row">
|
3
|
+
<div class="basic-main">
|
4
|
+
<criteria-paged :model="model" v-ref:paged>
|
5
|
+
<criteria partial='criteria' class="search_area" @condition-changed='$parent.selfSearch' v-ref:criteria>
|
6
|
+
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
|
7
|
+
<div class="row">
|
8
|
+
<div class="form-group col-sm-2" >
|
9
|
+
<label class="font_normal_body">小区名称</label>
|
10
|
+
<input type="text" class="input_search" v-model="model.f_residential_area"
|
11
|
+
style="width: 60%" placeholder="小区名称" condition="ta.f_residential_area like '%{}%'">
|
12
|
+
</div>
|
13
|
+
<div class="form-group col-sm-2" style="width: auto;margin-top:8px;float: right">
|
14
|
+
<export-excel-safe :data="$parent.$parent.searchData"
|
15
|
+
:field="$parent.$parent.excelHeaders"
|
16
|
+
:choose-col="true"
|
17
|
+
sqlurl="rs/logic/SafeExportExcel" sql-name="securityCheckLedger" template-name='安检台账'></export-excel-safe>
|
18
|
+
<button class="button_spacing button_search" @click="search()">查询</button>
|
19
|
+
</div>
|
20
|
+
</div>
|
21
|
+
</div>
|
22
|
+
</criteria>
|
23
|
+
<data-grid class="list_area table_sy" style="overflow: hidden" :model="model" partial='list' v-ref:grid>
|
24
|
+
<template partial='head'>
|
25
|
+
<tr>
|
26
|
+
<th>
|
27
|
+
<nobr>小区名称</nobr>
|
28
|
+
</th>
|
29
|
+
<th>
|
30
|
+
<nobr>小区用户数</nobr>
|
31
|
+
</th>
|
32
|
+
<th>
|
33
|
+
<nobr>所属计划</nobr>
|
34
|
+
</th>
|
35
|
+
<th>
|
36
|
+
<nobr>计划内用户数</nobr>
|
37
|
+
</th>
|
38
|
+
<th>
|
39
|
+
<nobr>计划下发时间</nobr>
|
40
|
+
</th>
|
41
|
+
<th>
|
42
|
+
<nobr>执行时间</nobr>
|
43
|
+
</th>
|
44
|
+
<th>
|
45
|
+
<nobr>执行周期</nobr>
|
46
|
+
</th>
|
47
|
+
<th>
|
48
|
+
<nobr>周期单位</nobr>
|
49
|
+
</th>
|
50
|
+
<th>
|
51
|
+
<nobr>距离下周期时间(天)</nobr>
|
52
|
+
</th>
|
53
|
+
</tr>
|
54
|
+
</template>
|
55
|
+
<template partial='body'>
|
56
|
+
<td style="text-align: center">{{row.f_residential_area}}</td>
|
57
|
+
<td style="text-align: center">{{row.f_plan_name}}</td>
|
58
|
+
<td style="text-align: center">{{row.area_num}}</td>
|
59
|
+
<td style="text-align: center">{{row.plan_num}}</td>
|
60
|
+
<td style="text-align: center">{{row.f_issue_time}}</td>
|
61
|
+
<td style="text-align: center">{{row.first_check_date}}</td>
|
62
|
+
<td style="text-align: center">{{row.zq_value}}</td>
|
63
|
+
<td style="text-align: center">{{row.dw_value}}</td>
|
64
|
+
<td style="text-align: center">{{row.difference_day}}</td>
|
65
|
+
</template>
|
66
|
+
</data-grid>
|
67
|
+
</criteria-paged>
|
68
|
+
</div>
|
69
|
+
</div>
|
70
|
+
</template>
|
71
|
+
|
72
|
+
<script>
|
73
|
+
import {PagedList} from 'vue-client'
|
74
|
+
|
75
|
+
export default {
|
76
|
+
title: '安检台账',
|
77
|
+
data() {
|
78
|
+
return {
|
79
|
+
model: new PagedList('rs/sql/securityCheckLedger', 20),
|
80
|
+
searchData: {
|
81
|
+
condition: "1=1"
|
82
|
+
},
|
83
|
+
excelHeaders: {
|
84
|
+
'f_residential_area': '小区名称',
|
85
|
+
'f_plan_name': '小区用户数',
|
86
|
+
'area_num': '所属计划',
|
87
|
+
'plan_num': '计划内用户数',
|
88
|
+
'f_issue_time': '计划下发时间',
|
89
|
+
'first_check_date': '执行时间',
|
90
|
+
'zq_value': '执行周期',
|
91
|
+
'dw_value': '周期单位',
|
92
|
+
'difference_day': '距离下周期时间(天)'
|
93
|
+
}
|
94
|
+
}
|
95
|
+
},
|
96
|
+
methods: {
|
97
|
+
selfSearch(args) {
|
98
|
+
this.model.search(args.condition, args.model, args.condValue)
|
99
|
+
}
|
100
|
+
},
|
101
|
+
ready() {
|
102
|
+
|
103
|
+
},
|
104
|
+
watch: {
|
105
|
+
'model.condition'(val) {
|
106
|
+
if (val) {
|
107
|
+
this.searchData.condition = val
|
108
|
+
}
|
109
|
+
}
|
110
|
+
}
|
111
|
+
|
112
|
+
}
|
113
|
+
</script>
|