safecheck-client 3.0.33-2 → 3.0.33-22
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 +133 -133
- package/src/App.vue +31 -31
- package/src/components/paper/PaperList.vue +5 -4
- package/src/components/planmanage/checkUserList.vue +34 -2
- package/src/components/report/CheckPlanCountChartArea.vue +5 -0
- package/src/filiale/bayan/android/AddPlanItem.vue +5 -1
- package/src/filiale/bayan/android/SafecheckOrderV.vue +3 -0
- package/src/filiale/dexin/android/SafecheckDevices.vue +1 -1
- package/src/filiale/dexin/android/WebMeterOpen.vue +1 -1
- package/src/filiale/dexin/android/WebMeterOpenEdit.vue +25 -37
- package/src/filiale/fugou/pc/AddToCheckBook.vue +56 -119
- package/src/filiale/fugou/pc/CheckBookEntry.vue +47 -19
- package/src/filiale/fugou/pc/CheckBookSearchUser.vue +718 -575
- package/src/filiale/fugou/pc/PlanManage.vue +17 -1
- package/src/filiale/fugou/pc/checkUserList.vue +222 -42
- package/src/filiale/tongchuan/pc/checkUserList.vue +2 -2
- package/src/filiale/weinan/android/SafecheckDevices.vue +1082 -1025
- package/src/filiale/weinan/android/SafecheckOrderV.vue +71 -26
- package/src/filiale/wensu/pc/CheckSearchUser.vue +2 -0
- package/src/filiale/wensu/pc/DefectPaperNew.vue +1 -1
- package/src/filiale/wensu/pc/PlanManage.vue +831 -831
- package/src/filiale/wensu/pc/checkUserList.vue +8 -8
- package/src/filiale/wensu/pc.js +20 -20
- package/src/filiale/wenxi/android/SafecheckUserInfo.vue +1 -1
- package/src/filiale/wuhai/pc/PaperList.vue +785 -0
- package/src/filiale/wuhai/pc.js +1 -0
- package/src/filiale/yongzhou/pc/DefectPaperNew.vue +1105 -0
- package/src/filiale/yongzhou/pc/safeCheckDetail.vue +298 -0
- package/src/filiale/yongzhou/pc/safeCheckExamine.vue +277 -0
- package/src/filiale/yongzhou/pc/safeDetail.vue +27 -6
- package/src/filiale/yongzhou/pc.js +1 -0
- package/src/filiale/yunchengminsheng/pc/checkUserList.vue +18 -1
- package/src/main.js +33 -33
@@ -84,6 +84,9 @@
|
|
84
84
|
<th>
|
85
85
|
<nobr>计划安检总户数</nobr>
|
86
86
|
</th>
|
87
|
+
<th>
|
88
|
+
<nobr>申请安检数</nobr>
|
89
|
+
</th>
|
87
90
|
<th>
|
88
91
|
<nobr>未检户数</nobr>
|
89
92
|
</th>
|
@@ -111,6 +114,12 @@
|
|
111
114
|
<th>
|
112
115
|
<nobr>安检率</nobr>
|
113
116
|
</th>
|
117
|
+
<th>
|
118
|
+
<nobr>申请安检户数</nobr>
|
119
|
+
</th>
|
120
|
+
<th>
|
121
|
+
<nobr>总入户数</nobr>
|
122
|
+
</th>
|
114
123
|
</tr>
|
115
124
|
</template>
|
116
125
|
<template partial='body'>
|
@@ -118,6 +127,7 @@
|
|
118
127
|
<td style="text-align: center">{{ $index + 1 }}</td>
|
119
128
|
<td style="text-align: center">{{ row.f_residential_area }}</td>
|
120
129
|
<td style="text-align: center">{{ row.totalcount }}</td>
|
130
|
+
<td style="text-align: center">{{ row.sqajcount }}</td>
|
121
131
|
<td style="text-align: center">{{ row.wjcount }}</td>
|
122
132
|
<td style="text-align: center">{{ row.yjcount }}</td>
|
123
133
|
<td style="text-align: center">{{ row.rhcount }}</td>
|
@@ -127,11 +137,13 @@
|
|
127
137
|
<td style="text-align: center">{{ row.unique_dfby_count }}</td>
|
128
138
|
<td style="text-align: center">{{ row.jjcount }}</td>
|
129
139
|
<td style="text-align: center">{{ row.check_bv }}</td>
|
140
|
+
<td style="text-align: center">{{ row.no_plan_num }}</td>
|
141
|
+
<td style="text-align: center">{{ row.total_yjnpm }}</td>
|
130
142
|
</template>
|
131
143
|
<template partial="foot">
|
132
144
|
<td style="text-align: center" colspan="2"><span><b>合计:</b></span></td>
|
133
145
|
<td style="text-align: center">{{ model.sums.totalcount }}</td>
|
134
|
-
|
146
|
+
<td style="text-align: center">{{ model.sums.sqajcount }}</td>
|
135
147
|
<td style="text-align: center">{{ model.sums.wjcount }}</td>
|
136
148
|
|
137
149
|
<td style="text-align: center">{{ model.sums.yjcount }}</td>
|
@@ -146,7 +158,8 @@
|
|
146
158
|
<td style="text-align: center">
|
147
159
|
{{ ((model.sums.yjcount / model.sums.totalcount)*100.0).toFixed(2) }}%
|
148
160
|
</td>
|
149
|
-
|
161
|
+
<td style="text-align: center">{{ model.sums.no_plan_num }}</td>
|
162
|
+
<td style="text-align: center">{{ model.sums.total_yjnpm }}</td>
|
150
163
|
</template>
|
151
164
|
</data-grid>
|
152
165
|
</criteria-paged>
|
@@ -165,6 +178,7 @@ export default {
|
|
165
178
|
return {
|
166
179
|
model: new PagedList("/rs/sql/safeDetail", 999, {orgid: this.$login.f.orgid}, {
|
167
180
|
totalcount: '',
|
181
|
+
sqajcount:'',
|
168
182
|
wjcount: '',
|
169
183
|
yjcount: '',
|
170
184
|
rhcount: '',
|
@@ -172,7 +186,9 @@ export default {
|
|
172
186
|
dfbycount2: '',
|
173
187
|
dfbycount3: '',
|
174
188
|
unique_dfby_count: '',
|
175
|
-
jjcount: ''
|
189
|
+
jjcount: '',
|
190
|
+
no_plan_num: '',
|
191
|
+
total_yjnpm: '',
|
176
192
|
}),
|
177
193
|
resids: {},
|
178
194
|
searchData: {
|
@@ -184,6 +200,7 @@ export default {
|
|
184
200
|
excelHeaders: {
|
185
201
|
'f_residential_area': '小区名称',
|
186
202
|
'totalcount': '计划安检总户数',
|
203
|
+
'sqajcount': '申请安检数',
|
187
204
|
'wjcount': '未检户数',
|
188
205
|
'yjcount': '已检户数',
|
189
206
|
'rhcount': '入户户数',
|
@@ -192,10 +209,12 @@ export default {
|
|
192
209
|
'dfbycount3': '到访不遇-3次',
|
193
210
|
'unique_dfby_count': '到访不遇小计',
|
194
211
|
'jjcount': '拒检户数',
|
195
|
-
'check_bv':'安检率'
|
212
|
+
'check_bv':'安检率',
|
213
|
+
'no_plan_num':'申请安检户数',
|
214
|
+
'total_yjnpm':'总入户数'
|
196
215
|
},
|
197
216
|
printshow: false,
|
198
|
-
defaultPrint: ['f_residential_area', 'totalcount', 'wjcount', 'rhcount','dfbycount1','dfbycount2','dfbycount3','unique_dfby_count','jjcount','check_bv'],
|
217
|
+
defaultPrint: ['f_residential_area', 'totalcount', 'sqajcount','wjcount', 'rhcount','dfbycount1','dfbycount2','dfbycount3','unique_dfby_count','jjcount','check_bv','no_plan_num','total_yjnpm'],
|
199
218
|
sumsmodel: {},
|
200
219
|
}
|
201
220
|
},
|
@@ -211,6 +230,7 @@ export default {
|
|
211
230
|
this.print_model.rows.push({
|
212
231
|
f_residential_area:'合计',
|
213
232
|
totalcount: this.sumsmodel.totalcount,
|
233
|
+
sqajcount: this.sumsmodel.sqajcount,
|
214
234
|
wjcount: this.sumsmodel.wjcount,
|
215
235
|
yjcount: this.sumsmodel.yjcount,
|
216
236
|
rhcount: this.sumsmodel.rhcount,
|
@@ -218,7 +238,8 @@ export default {
|
|
218
238
|
dfbycount2: this.sumsmodel.dfbycount2,
|
219
239
|
dfbycount3: this.sumsmodel.dfbycount3,
|
220
240
|
unique_dfby_count: this.sumsmodel.unique_dfby_count,
|
221
|
-
|
241
|
+
no_plan_num:this.sumsmodel.no_plan_num,
|
242
|
+
total_yjnpm:this.sumsmodel.total_yjnpm,
|
222
243
|
})
|
223
244
|
this.print_model.totalPage = 0
|
224
245
|
},
|
@@ -9,6 +9,7 @@ let specialComp = {
|
|
9
9
|
'paper-main': (resolve) => { require(['./pc/PaperList'], resolve) },
|
10
10
|
"safe-table":(resolve) => { require(['./pc/safeTable'], resolve) },
|
11
11
|
"safe-detail":(resolve) => { require(['./pc/safeDetail'], resolve) },
|
12
|
+
"safe-defect-paper-new":(resolve) => { require(['./pc/DefectPaperNew.vue'], resolve) },
|
12
13
|
'check-search-user':(resolve) => {require(['./pc/CheckSearchUser'], resolve)},
|
13
14
|
"community-detail":(resolve) => { require(['./pc/communityDetail'], resolve) },
|
14
15
|
"community-type-detail-g":(resolve) => { require(['./pc/communityTypeDetailG'], resolve) },
|
@@ -81,6 +81,21 @@
|
|
81
81
|
>
|
82
82
|
</v-select>
|
83
83
|
</div>
|
84
|
+
<div class="form-group col-sm-4" >
|
85
|
+
<label class="font_normal_body">表具状态:</label>
|
86
|
+
<v-select
|
87
|
+
class="select select_list"
|
88
|
+
:value.sync="model.f_table_state"
|
89
|
+
v-model="model.f_table_state"
|
90
|
+
:options='$parent.$parent.tableStates'
|
91
|
+
placeholder='请选择'
|
92
|
+
condition="uf.f_table_state='{}'"
|
93
|
+
:search="false"
|
94
|
+
close-on-select
|
95
|
+
value-single
|
96
|
+
>
|
97
|
+
</v-select>
|
98
|
+
</div>
|
84
99
|
<div class="form-group col-sm-4" >
|
85
100
|
<label class="font_normal_body">用气性质:</label>
|
86
101
|
<v-select
|
@@ -402,6 +417,7 @@
|
|
402
417
|
showCondtion:false,
|
403
418
|
userTypes:[],//用户类型
|
404
419
|
userStates:[],//用户状态
|
420
|
+
tableStates:[],//表具状态
|
405
421
|
gasproperties:[],//用气性质
|
406
422
|
meter_classifys:[],//气表类型
|
407
423
|
hasHousehold:[{label:"全部",value:""},{label:"已入户",value:"已入户"},{label:"未入户",value:"未入户"}],
|
@@ -520,7 +536,8 @@
|
|
520
536
|
value: ''
|
521
537
|
}, ...this.$appdata.getParam('用户类型')] : [{label: '全部', value: ''}]
|
522
538
|
|
523
|
-
this.userStates=this.$appdata.getParam('安检用户状态') ? [
|
539
|
+
this.userStates=this.$appdata.getParam('安检用户状态') ? [{label: '全部', value: ''},...this.$appdata.getParam('安检用户状态')] : [{label: '全部', value: ''}]
|
540
|
+
this.tableStates=this.$appdata.getParam('安检表具状态') ? [{label: '全部', value: ''},...this.$appdata.getParam('安检表具状态')] : [{label: '全部', value: ''}]
|
524
541
|
this.gasproperties=this.$appdata.getParam('用气性质') ? [{
|
525
542
|
label: '全部',
|
526
543
|
value: ''
|
package/src/main.js
CHANGED
@@ -1,33 +1,33 @@
|
|
1
|
-
import Vue from 'vue'
|
2
|
-
import App from './App'
|
3
|
-
import { all } from 'vue-client'
|
4
|
-
import { system } from 'system-clients'
|
5
|
-
import safecheck from './safecheck'
|
6
|
-
import echarts from 'echarts'
|
7
|
-
// import safecheck from './rongcheng'
|
8
|
-
|
9
|
-
all()
|
10
|
-
// 验证码开关赋值
|
11
|
-
var Verificationfalg = false
|
12
|
-
system(Verificationfalg)
|
13
|
-
// system()
|
14
|
-
safecheck('
|
15
|
-
// safecheck('rizhao')
|
16
|
-
require('./bootstrap/less/bootstrap.less')
|
17
|
-
require('./expandcss.less')
|
18
|
-
|
19
|
-
Vue.prototype.$echarts = echarts
|
20
|
-
Vue.android = false
|
21
|
-
|
22
|
-
Vue.url = '/SafeCheck/rs/'
|
23
|
-
if(Vue.android)
|
24
|
-
Vue.url = Vue.staticUrl
|
25
|
-
Vue.interval = 1*60*1000
|
26
|
-
Vue.nopic = 'file:///android_asset/nopic.png'
|
27
|
-
Vue.mapSetup = false
|
28
|
-
|
29
|
-
/* eslint-disable no-new */
|
30
|
-
new Vue({
|
31
|
-
el: 'body',
|
32
|
-
components: { App }
|
33
|
-
})
|
1
|
+
import Vue from 'vue'
|
2
|
+
import App from './App'
|
3
|
+
import { all } from 'vue-client'
|
4
|
+
import { system } from 'system-clients'
|
5
|
+
import safecheck from './safecheck'
|
6
|
+
import echarts from 'echarts'
|
7
|
+
// import safecheck from './rongcheng'
|
8
|
+
|
9
|
+
all()
|
10
|
+
// 验证码开关赋值
|
11
|
+
var Verificationfalg = false
|
12
|
+
system(Verificationfalg)
|
13
|
+
// system()
|
14
|
+
safecheck('yongzhou')
|
15
|
+
// safecheck('rizhao')
|
16
|
+
require('./bootstrap/less/bootstrap.less')
|
17
|
+
require('./expandcss.less')
|
18
|
+
|
19
|
+
Vue.prototype.$echarts = echarts
|
20
|
+
Vue.android = false
|
21
|
+
|
22
|
+
Vue.url = '/SafeCheck/rs/'
|
23
|
+
if(Vue.android)
|
24
|
+
Vue.url = Vue.staticUrl
|
25
|
+
Vue.interval = 1*60*1000
|
26
|
+
Vue.nopic = 'file:///android_asset/nopic.png'
|
27
|
+
Vue.mapSetup = false
|
28
|
+
|
29
|
+
/* eslint-disable no-new */
|
30
|
+
new Vue({
|
31
|
+
el: 'body',
|
32
|
+
components: { App }
|
33
|
+
})
|