safecheck-client 3.0.33-16 → 3.0.33-18
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 +34 -31
- package/src/filiale/bayan/android/SafecheckOrderV.vue +1 -1
- package/src/filiale/tongchuan/android/CurrentCreate.vue +1001 -1001
- package/src/filiale/tongchuan/android/UploadPage.vue +297 -297
- package/src/filiale/tongchuan/pc/HiddenSituation.vue +164 -164
- package/src/filiale/tongchuan/pc/RoleSelector.vue +172 -172
- package/src/filiale/tongchuan/pc/checkUserList.vue +609 -609
- package/src/filiale/yongzhou/pc/DefectPaperNew.vue +1105 -0
- package/src/filiale/yongzhou/pc/safeDetail.vue +9 -2
- package/src/filiale/yongzhou/pc.js +1 -0
- 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>
|
@@ -118,6 +121,7 @@
|
|
118
121
|
<td style="text-align: center">{{ $index + 1 }}</td>
|
119
122
|
<td style="text-align: center">{{ row.f_residential_area }}</td>
|
120
123
|
<td style="text-align: center">{{ row.totalcount }}</td>
|
124
|
+
<td style="text-align: center">{{ row.sqajcount }}</td>
|
121
125
|
<td style="text-align: center">{{ row.wjcount }}</td>
|
122
126
|
<td style="text-align: center">{{ row.yjcount }}</td>
|
123
127
|
<td style="text-align: center">{{ row.rhcount }}</td>
|
@@ -131,7 +135,7 @@
|
|
131
135
|
<template partial="foot">
|
132
136
|
<td style="text-align: center" colspan="2"><span><b>合计:</b></span></td>
|
133
137
|
<td style="text-align: center">{{ model.sums.totalcount }}</td>
|
134
|
-
|
138
|
+
<td style="text-align: center">{{ model.sums.sqajcount }}</td>
|
135
139
|
<td style="text-align: center">{{ model.sums.wjcount }}</td>
|
136
140
|
|
137
141
|
<td style="text-align: center">{{ model.sums.yjcount }}</td>
|
@@ -165,6 +169,7 @@ export default {
|
|
165
169
|
return {
|
166
170
|
model: new PagedList("/rs/sql/safeDetail", 999, {orgid: this.$login.f.orgid}, {
|
167
171
|
totalcount: '',
|
172
|
+
sqajcount:'',
|
168
173
|
wjcount: '',
|
169
174
|
yjcount: '',
|
170
175
|
rhcount: '',
|
@@ -184,6 +189,7 @@ export default {
|
|
184
189
|
excelHeaders: {
|
185
190
|
'f_residential_area': '小区名称',
|
186
191
|
'totalcount': '计划安检总户数',
|
192
|
+
'sqajcount': '申请安检数',
|
187
193
|
'wjcount': '未检户数',
|
188
194
|
'yjcount': '已检户数',
|
189
195
|
'rhcount': '入户户数',
|
@@ -195,7 +201,7 @@ export default {
|
|
195
201
|
'check_bv':'安检率'
|
196
202
|
},
|
197
203
|
printshow: false,
|
198
|
-
defaultPrint: ['f_residential_area', 'totalcount', 'wjcount', 'rhcount','dfbycount1','dfbycount2','dfbycount3','unique_dfby_count','jjcount','check_bv'],
|
204
|
+
defaultPrint: ['f_residential_area', 'totalcount', 'sqajcount','wjcount', 'rhcount','dfbycount1','dfbycount2','dfbycount3','unique_dfby_count','jjcount','check_bv'],
|
199
205
|
sumsmodel: {},
|
200
206
|
}
|
201
207
|
},
|
@@ -211,6 +217,7 @@ export default {
|
|
211
217
|
this.print_model.rows.push({
|
212
218
|
f_residential_area:'合计',
|
213
219
|
totalcount: this.sumsmodel.totalcount,
|
220
|
+
sqajcount: this.sumsmodel.sqajcount,
|
214
221
|
wjcount: this.sumsmodel.wjcount,
|
215
222
|
yjcount: this.sumsmodel.yjcount,
|
216
223
|
rhcount: this.sumsmodel.rhcount,
|
@@ -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) },
|
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('tongchuan');
|
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
|
+
})
|