apply-clients 5.0.35-36 → 5.0.35-39
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/.eslintrc.js +16 -16
- package/package.json +2 -2
- package/src/components/app_apply/ApplyToDoList.vue +2920 -2822
- package/src/components/app_apply/OneToMany.vue +192 -0
- package/src/components/app_apply/PlaceControler.vue +299 -287
- package/src/components/app_apply/ezhou/ServiceView.vue +787 -765
- package/src/components/product/Process/Processes/Service/ApplyChargeSearch.vue +2 -1
- package/src/components/product/Process/Processes/Service/ServiceControl.vue +1827 -1827
- package/src/components/product/ServiceView.vue +804 -804
- package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +454 -454
- package/src/components/product/applyReport/ApplyReport.vue +32 -6
- package/src/components/product/applyReport/PrintApplyReport.vue +7 -2
- package/src/ezhouAndroid.js +46 -44
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
<export-excel :data="$parent.$parent.getCondition"
|
|
12
12
|
:field="$parent.$parent.getfield"
|
|
13
13
|
sqlurl="rs/logic/saleExport" sql-name="checkuserReport" template-name='报装统计导出' :choose-col="true"></export-excel>
|
|
14
|
-
<button class="btn btn-primary btn-sm" type="button" @click="search(),$parent.$parent.showpager()" style="margin-left:10%">
|
|
14
|
+
<button class="btn btn-primary btn-sm" type="button" @click="$parent.$parent.search(),$parent.$parent.showpager()" style="margin-left:10%">
|
|
15
15
|
<span class="glyphicon glyphicon-search"></span>查询
|
|
16
16
|
</button>
|
|
17
17
|
</div>
|
|
@@ -20,12 +20,12 @@
|
|
|
20
20
|
<data-grid :model="model" partial='list' v-ref:grid class="list_area" is-fixed='false'>
|
|
21
21
|
<template partial='head'>
|
|
22
22
|
<tr>
|
|
23
|
-
<th colspan="
|
|
23
|
+
<th colspan="7"><h4>报装人员勘察 安装 通气 统计查询</h4></th>
|
|
24
24
|
</tr>
|
|
25
25
|
<tr>
|
|
26
26
|
<th colspan="1" rowspan="2">报装人员</th>
|
|
27
27
|
<th colspan="2">个人报建</th>
|
|
28
|
-
<th colspan="
|
|
28
|
+
<th colspan="4">集体报建</th>
|
|
29
29
|
</tr>
|
|
30
30
|
<tr class="title">
|
|
31
31
|
<th>
|
|
@@ -40,6 +40,9 @@
|
|
|
40
40
|
<th>
|
|
41
41
|
<nobr>安装</nobr>
|
|
42
42
|
</th>
|
|
43
|
+
<th>
|
|
44
|
+
<nobr>验收</nobr>
|
|
45
|
+
</th>
|
|
43
46
|
<th>
|
|
44
47
|
<nobr>通气</nobr>
|
|
45
48
|
</th>
|
|
@@ -62,7 +65,9 @@
|
|
|
62
65
|
<td style="text-align: center;">
|
|
63
66
|
<nobr>{{row.jconstruction_unit}}</nobr>
|
|
64
67
|
</td>
|
|
65
|
-
|
|
68
|
+
<td style="text-align: center;">
|
|
69
|
+
<nobr>{{row.checking_name}}</nobr>
|
|
70
|
+
</td>
|
|
66
71
|
<td style="text-align: center;">
|
|
67
72
|
<nobr>{{row.jgas_name}}</nobr>
|
|
68
73
|
</td>
|
|
@@ -70,6 +75,16 @@
|
|
|
70
75
|
</template>
|
|
71
76
|
</data-grid>
|
|
72
77
|
</criteria-paged>
|
|
78
|
+
<div class="flex" style="height: 10%">
|
|
79
|
+
<div novalidate class="form-inline auto" partial>
|
|
80
|
+
<p class="bg-info text-center" style="padding: 8px;font-size: 20px">个体报建
|
|
81
|
+
勘踏合计:<span style="color: red">{{total.rows[0].sumgname}}</span>次,安装合计:<span style="color: red">{{total.rows[0].sumgunit}}</span>次,
|
|
82
|
+
集体报建 勘踏合计:<span style="color: red">{{total.rows[0].sumname}}</span>次,安装合计:<span style="color: red">{{total.rows[0].sumjunit}}</span>次,
|
|
83
|
+
验收合计:<span style="color: red">{{total.rows[0].sumgcname}}</span>次,
|
|
84
|
+
通气合计:<span style="color: red">{{total.rows[0].sunjname}}</span>次
|
|
85
|
+
</p>
|
|
86
|
+
</div>
|
|
87
|
+
</div>
|
|
73
88
|
</div>
|
|
74
89
|
<modal :show.sync="showQuery" v-ref:modal :large="true" :backdrop="false" title="打印预览">
|
|
75
90
|
<header slot="modal-header" class="modal-header">
|
|
@@ -107,7 +122,7 @@
|
|
|
107
122
|
import * as Util from '../../Util'
|
|
108
123
|
|
|
109
124
|
export default {
|
|
110
|
-
title: '
|
|
125
|
+
title: '报建统计报表',
|
|
111
126
|
data() {
|
|
112
127
|
return {
|
|
113
128
|
usertype: this.$appdata.getParam('用户类型'),
|
|
@@ -120,6 +135,7 @@
|
|
|
120
135
|
}),
|
|
121
136
|
condition: '',
|
|
122
137
|
showQuery:false,
|
|
138
|
+
total: new PagedList('rs/sql/checkuserReportTotal', 999999, {orderitem: '`sumname`'}),
|
|
123
139
|
showstopinfoflag:false,
|
|
124
140
|
stopremarks:"",
|
|
125
141
|
getfield: {
|
|
@@ -128,6 +144,7 @@
|
|
|
128
144
|
'gconstruction_unit': '个体报建安装次数',
|
|
129
145
|
'jsurvey_name': '集体报建踏勘次数',
|
|
130
146
|
'jconstruction_unit': '集体报建安装次数',
|
|
147
|
+
'checking_name': '集体报建验收次数',
|
|
131
148
|
'jgas_name': '集体报建通气次数'
|
|
132
149
|
}
|
|
133
150
|
}
|
|
@@ -135,7 +152,8 @@
|
|
|
135
152
|
ready() {
|
|
136
153
|
this.$refs.cp.$refs.cri.model.startDate = Util.toStandardDateString() + ' 00:00:00'
|
|
137
154
|
this.$refs.cp.$refs.cri.model.endDate = Util.toStandardDateString() + ' 23:59:59'
|
|
138
|
-
this
|
|
155
|
+
this.search()
|
|
156
|
+
|
|
139
157
|
},
|
|
140
158
|
methods: {
|
|
141
159
|
print () {
|
|
@@ -154,6 +172,14 @@
|
|
|
154
172
|
this.$refs.cp.pager = false
|
|
155
173
|
this.$dispatch('showbtn', row)
|
|
156
174
|
},
|
|
175
|
+
search () {
|
|
176
|
+
let condition = "1=1"
|
|
177
|
+
// debugger
|
|
178
|
+
// let condition = args.condition
|
|
179
|
+
debugger
|
|
180
|
+
this.model.search()
|
|
181
|
+
this.total.search()
|
|
182
|
+
},
|
|
157
183
|
showpager() {
|
|
158
184
|
this.$refs.cp.pager = true
|
|
159
185
|
this.$dispatch('hiddenbtn')
|
|
@@ -21,12 +21,12 @@
|
|
|
21
21
|
<div id="print">
|
|
22
22
|
<table border="1">
|
|
23
23
|
<tr>
|
|
24
|
-
<th colspan="
|
|
24
|
+
<th colspan="7"><h4>报装人员勘察 安装 通气 统计查询</h4></th>
|
|
25
25
|
</tr>
|
|
26
26
|
<tr>
|
|
27
27
|
<th colspan="1" rowspan="2" class="cen">报装人员</th>
|
|
28
28
|
<th colspan="2" class="cen">个人报建</th>
|
|
29
|
-
<th colspan="
|
|
29
|
+
<th colspan="4" class="cen">集体报建</th>
|
|
30
30
|
</tr>
|
|
31
31
|
<tr class="title">
|
|
32
32
|
<th class="cen">
|
|
@@ -41,6 +41,9 @@
|
|
|
41
41
|
<th class="cen">
|
|
42
42
|
<nobr>安装</nobr>
|
|
43
43
|
</th>
|
|
44
|
+
<th class="cen">
|
|
45
|
+
<nobr>验收</nobr>
|
|
46
|
+
</th>
|
|
44
47
|
<th class="cen">
|
|
45
48
|
<nobr>通气</nobr>
|
|
46
49
|
</th>
|
|
@@ -51,6 +54,7 @@
|
|
|
51
54
|
<td>{{ item.gconstruction_unit }}</td>
|
|
52
55
|
<td>{{ item.jsurvey_name }}</td>
|
|
53
56
|
<td>{{ item.jconstruction_unit }}</td>
|
|
57
|
+
<td>{{ item.checking_name }}</td>
|
|
54
58
|
<td>{{ item.jgas_name }}</td>
|
|
55
59
|
</tr>
|
|
56
60
|
<tr v-for="item in supplement">
|
|
@@ -60,6 +64,7 @@
|
|
|
60
64
|
<td></td>
|
|
61
65
|
<td></td>
|
|
62
66
|
<td></td>
|
|
67
|
+
<td></td>
|
|
63
68
|
</tr>
|
|
64
69
|
</table>
|
|
65
70
|
</div>
|
package/src/ezhouAndroid.js
CHANGED
|
@@ -1,44 +1,46 @@
|
|
|
1
|
-
import Vue from 'vue'
|
|
2
|
-
import { all } from 'vue-client'
|
|
3
|
-
Vue.config.silent = true
|
|
4
|
-
import ApplyGetSaleParam from './stores/ApplyGetSaleParams'
|
|
5
|
-
import ApplyLoadParams from './stores/ApplyLoadParams'
|
|
6
|
-
/** ****************服务插件*********************/
|
|
7
|
-
|
|
8
|
-
export default function () {
|
|
9
|
-
Vue.use(ApplyGetSaleParam)
|
|
10
|
-
Vue.use(ApplyLoadParams)
|
|
11
|
-
/** ***************************报建模块*********************************/
|
|
12
|
-
// 报建 总入口
|
|
13
|
-
Vue.component('apply_app', (resolve) => { require(['./components/app_apply/ApplyApp'], resolve) })
|
|
14
|
-
// 报建
|
|
15
|
-
Vue.component('
|
|
16
|
-
// 报建
|
|
17
|
-
Vue.component('
|
|
18
|
-
// 报建
|
|
19
|
-
Vue.component('
|
|
20
|
-
// 报建
|
|
21
|
-
Vue.component('
|
|
22
|
-
// 报建
|
|
23
|
-
Vue.component('
|
|
24
|
-
// 报建
|
|
25
|
-
Vue.component('apply-info', (resolve) => { require(['./components/app_apply/
|
|
26
|
-
// 报建
|
|
27
|
-
Vue.component('
|
|
28
|
-
// 报建
|
|
29
|
-
Vue.component('
|
|
30
|
-
// 报建
|
|
31
|
-
Vue.component('
|
|
32
|
-
|
|
33
|
-
Vue.component('
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
//
|
|
38
|
-
Vue.component('service-
|
|
39
|
-
|
|
40
|
-
Vue.component('
|
|
41
|
-
Vue.component('
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
}
|
|
1
|
+
import Vue from 'vue'
|
|
2
|
+
import { all } from 'vue-client'
|
|
3
|
+
Vue.config.silent = true
|
|
4
|
+
import ApplyGetSaleParam from './stores/ApplyGetSaleParams'
|
|
5
|
+
import ApplyLoadParams from './stores/ApplyLoadParams'
|
|
6
|
+
/** ****************服务插件*********************/
|
|
7
|
+
|
|
8
|
+
export default function () {
|
|
9
|
+
Vue.use(ApplyGetSaleParam)
|
|
10
|
+
Vue.use(ApplyLoadParams)
|
|
11
|
+
/** ***************************报建模块*********************************/
|
|
12
|
+
// 报建 总入口
|
|
13
|
+
Vue.component('apply_app', (resolve) => { require(['./components/app_apply/ApplyApp'], resolve) })
|
|
14
|
+
// 报建 总入口
|
|
15
|
+
Vue.component('one-to-many', (resolve) => { require(['./components/app_apply/OneToMany'], resolve) })
|
|
16
|
+
// 报建 待办流程页
|
|
17
|
+
Vue.component('placecontrolerapp', (resolve) => { require(['./components/app_apply/PlaceControler'], resolve) })
|
|
18
|
+
// 报建 已办事项
|
|
19
|
+
Vue.component('applydownlist', (resolve) => { require(['./components/app_apply/ApplyDownList'], resolve) })
|
|
20
|
+
// 报建 上传
|
|
21
|
+
Vue.component('applylistupload', (resolve) => { require(['./components/app_apply/ApplyListUpload'], resolve) })
|
|
22
|
+
// 报建 待办事项
|
|
23
|
+
Vue.component('applytodolist', (resolve) => { require(['./components/app_apply/ApplyToDoList'], resolve) })
|
|
24
|
+
// 报建 用户信息
|
|
25
|
+
Vue.component('apply-user-info', (resolve) => { require(['./components/app_apply/ApplyUserInfo'], resolve) })
|
|
26
|
+
// 报建 报建流程信息
|
|
27
|
+
Vue.component('apply-info', (resolve) => { require(['./components/app_apply/ApplyInfo'], resolve) })
|
|
28
|
+
// 报建 现场勘探
|
|
29
|
+
Vue.component('fieldexploration', (resolve) => { require(['./components/app_apply/FieldExploration'], resolve) })
|
|
30
|
+
// 报建 竣工验收
|
|
31
|
+
Vue.component('acceptance', (resolve) => { require(['./components/app_apply/Acceptance'], resolve) })
|
|
32
|
+
// 报建 通气点火
|
|
33
|
+
Vue.component('ventilation', (resolve) => { require(['./components/app_apply/Ventilation'], resolve) })
|
|
34
|
+
|
|
35
|
+
Vue.component('back-page', (resolve) => { require(['./components/app_apply/ToolsPage.vue'], resolve) })
|
|
36
|
+
|
|
37
|
+
// 业务tab(control层)页
|
|
38
|
+
Vue.component('service-control-app', (resolve) => { require(['./components/app_apply/ServiceControl'], resolve) })
|
|
39
|
+
// 公共业务显示(view层)页
|
|
40
|
+
Vue.component('service-view-app', (resolve) => { require(['./components/app_apply/ezhou/ServiceView'], resolve) })
|
|
41
|
+
Vue.component('minyong', (resolve) => { require(['./components/app_apply/ezhou/MinYong'], resolve) })
|
|
42
|
+
Vue.component('feiminyongv', (resolve) => { require(['./components/app_apply/ezhou/FeiMinYongV'], resolve) })
|
|
43
|
+
Vue.component('feiminyongvv', (resolve) => { require(['./components/app_apply/ezhou/FeiMinYongVV'], resolve) })
|
|
44
|
+
// Vue.component('hetong-minyong', (resolve) => { require(['./components/app_apply/ezhou/HeTongMinYong'], resolve) })
|
|
45
|
+
// Vue.component('hetong-feiminyongv', (resolve) => { require(['./components/app_apply/ezhou/HeTongFeiMinYongV'], resolve) })
|
|
46
|
+
}
|