apply-clients 3.2.32 → 3.2.37
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/AndroidApp.vue +26 -26
- package/src/App.vue +20 -20
- package/src/apply.js +67 -67
- package/src/applyAndroid.js +24 -24
- package/src/components/Util.js +359 -359
- package/src/components/app_apply/AppOnetomany.vue +90 -90
- package/src/components/app_apply/AppServiceView.vue +664 -664
- package/src/components/app_apply/AppTakePic.vue +112 -112
- package/src/components/app_apply/Process/AppExplorationUser.vue +310 -310
- package/src/components/app_apply/Process/AppServiceControl.vue +409 -409
- package/src/components/app_apply/Process/Processes/AppInstallationDetails.vue +456 -456
- package/src/components/app_apply/Supervisory/AppProcessSupervisory.vue +300 -300
- package/src/components/app_apply/Supervisory/AppSupervisoryCart.vue +121 -121
- package/src/components/product/ApplyCharge/ApplyChargeList.vue +251 -251
- package/src/components/product/ApplyCharge/ApplyChargeReport.vue +107 -107
- package/src/components/product/ApplyCharge/ApplyChargeSearch.vue +30 -30
- package/src/components/product/Function/InstallFunction.vue +147 -147
- package/src/components/product/Function/InstallInfoSelect.vue +281 -281
- package/src/components/product/Function/Service/FunctionServiceControl.vue +245 -245
- package/src/components/product/Function/StopApplyCrrdList.vue +176 -176
- package/src/components/product/Function/functions/StopInstall.vue +106 -106
- package/src/components/product/Process/ExplorationSelect.vue +346 -346
- package/src/components/product/Process/ExplorationUser.vue +134 -134
- package/src/components/product/Process/Processes/InstallationDetails.vue +243 -233
- package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +201 -201
- package/src/components/product/Process/Processes/chargeManagement.vue +555 -555
- package/src/components/product/Process/Processes/printCharge.vue +133 -133
- package/src/components/product/Process/Processes/supplementalAgreement.vue +297 -297
- package/src/components/product/Process/ShowBackReason.vue +32 -32
- package/src/components/product/ServiceView.vue +759 -759
- package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +199 -199
- package/src/components/product/Supervisory/SupervisoryControl.vue +119 -119
- package/src/components/product/Supervisory/SupervisoryList.vue +208 -208
- package/src/components/product/Supervisory/SupervisoryhCart.vue +103 -103
- package/src/components/product/VueUtils/ApplyUpload.vue +261 -261
- package/src/main.js +23 -23
|
@@ -1,300 +1,300 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div style="width: 100%">
|
|
3
|
-
<criteria-paged :model="model" v-ref:cp>
|
|
4
|
-
<criteria partial='criteria' @condition-changed='search' v-ref:cri>
|
|
5
|
-
<div partial style="padding: 10px">
|
|
6
|
-
<div class="row app-row vertical-center">
|
|
7
|
-
<div class="col-xs-4">
|
|
8
|
-
<label class="font text-left">项目名称:</label>
|
|
9
|
-
</div>
|
|
10
|
-
<div class="col-xs-8" >
|
|
11
|
-
<input class="search_input input-font" v-model=model.f_entry_name condition="u.f_entry_name like '%{}%'" />
|
|
12
|
-
</div>
|
|
13
|
-
</div>
|
|
14
|
-
<div class="row app-row vertical-center" v-if="$parent.$parent.criteriaShow">
|
|
15
|
-
<div class="col-xs-4">
|
|
16
|
-
<label class="font text-left">客户名称:</label>
|
|
17
|
-
</div>
|
|
18
|
-
<div class="col-xs-8" >
|
|
19
|
-
<input class="search_input input-font" v-model=model.f_user_name condition="u.f_user_name like '%{}%'" />
|
|
20
|
-
</div>
|
|
21
|
-
</div>
|
|
22
|
-
<div class="row app-row vertical-center" v-if="$parent.$parent.criteriaShow">
|
|
23
|
-
<div class="col-xs-4">
|
|
24
|
-
<label class="font text-left">联 系 人:</label>
|
|
25
|
-
</div>
|
|
26
|
-
<div class="col-xs-8" >
|
|
27
|
-
<input class="search_input input-font" v-model=model.f_contact condition="u.f_contact like '%{}%'" />
|
|
28
|
-
</div>
|
|
29
|
-
</div>
|
|
30
|
-
<div class="row app-row vertical-center" v-if="$parent.$parent.criteriaShow">
|
|
31
|
-
<div class="col-xs-4">
|
|
32
|
-
<label class="font text-left">报建编号:</label>
|
|
33
|
-
</div>
|
|
34
|
-
<div class="col-xs-8" >
|
|
35
|
-
<input class="search_input input-font" v-model=model.f_apply_num condition="u.f_apply_num like '%{}%'" />
|
|
36
|
-
</div>
|
|
37
|
-
</div>
|
|
38
|
-
<div class="row app-row vertical-center" v-if="$parent.$parent.criteriaShow">
|
|
39
|
-
<div class="col-xs-4">
|
|
40
|
-
<label class="font text-left">合同编号:</label>
|
|
41
|
-
</div>
|
|
42
|
-
<div class="col-xs-8" >
|
|
43
|
-
<input class="search_input input-font" v-model=model.f_contract_number condition="u.f_contract_number like '%{}%'" />
|
|
44
|
-
</div>
|
|
45
|
-
</div>
|
|
46
|
-
<div class="row app-row vertical-center" v-if="$parent.$parent.criteriaShow">
|
|
47
|
-
<div class="col-xs-4">
|
|
48
|
-
<label class="font text-left">报建类型:</label>
|
|
49
|
-
</div>
|
|
50
|
-
<div class="col-xs-8" >
|
|
51
|
-
<v-select
|
|
52
|
-
width="100%"
|
|
53
|
-
v-model="model.f_apply_type"
|
|
54
|
-
placeholder='报建类型'
|
|
55
|
-
condition="u.f_apply_type like '%{}%'"
|
|
56
|
-
:value.sync="model.f_apply_type"
|
|
57
|
-
:options='$parent.$parent.applytype'
|
|
58
|
-
class="select select_list"
|
|
59
|
-
:value-single="true"
|
|
60
|
-
@change="$parent.$parent.applyTypeChange()"
|
|
61
|
-
close-on-select ></v-select>
|
|
62
|
-
</div>
|
|
63
|
-
</div>
|
|
64
|
-
<div class="row app-row vertical-center" v-if="$parent.$parent.criteriaShow">
|
|
65
|
-
<div class="col-xs-4">
|
|
66
|
-
<label class="font text-left">办理环节:</label>
|
|
67
|
-
</div>
|
|
68
|
-
<div class="col-xs-8" >
|
|
69
|
-
<v-select
|
|
70
|
-
width="100%"
|
|
71
|
-
v-model="model.defname"
|
|
72
|
-
placeholder='办理环节'
|
|
73
|
-
condition="act.defname = '{}'"
|
|
74
|
-
:value.sync="model.defname"
|
|
75
|
-
:options='$parent.$parent.defnames'
|
|
76
|
-
class="select select_list"
|
|
77
|
-
:value-single="true"
|
|
78
|
-
close-on-select ></v-select>
|
|
79
|
-
</div>
|
|
80
|
-
</div>
|
|
81
|
-
<div class="row app-row vertical-center" v-if="$parent.$parent.criteriaShow">
|
|
82
|
-
<div class="col-xs-4">
|
|
83
|
-
<label class="font text-left">联系电话:</label>
|
|
84
|
-
</div>
|
|
85
|
-
<div class="col-xs-8" >
|
|
86
|
-
<input class="search_input input-font" v-model=model.f_phone condition="u.f_phone like '%{}%'" />
|
|
87
|
-
</div>
|
|
88
|
-
</div>
|
|
89
|
-
<div class="row app-row vertical-center" v-if="$parent.$parent.criteriaShow">
|
|
90
|
-
<div class="col-xs-4">
|
|
91
|
-
<label class="font text-left">用户地址:</label>
|
|
92
|
-
</div>
|
|
93
|
-
<div class="col-xs-8" >
|
|
94
|
-
<input class="search_input input-font" v-model=model.f_address condition="u.f_address like '%{}%'" />
|
|
95
|
-
</div>
|
|
96
|
-
</div>
|
|
97
|
-
<div class="row app-row vertical-center" v-if="$parent.$parent.criteriaShow">
|
|
98
|
-
<div class="col-xs-4">
|
|
99
|
-
<label class="font text-left">开始时间:</label>
|
|
100
|
-
</div>
|
|
101
|
-
<div class="col-xs-8" >
|
|
102
|
-
<datepicker id="startDate" placeholder="开始日期"
|
|
103
|
-
style="width: 100%!important;"
|
|
104
|
-
v-model="model.startDate"
|
|
105
|
-
:value.sync="model.startDate"
|
|
106
|
-
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
107
|
-
:show-reset-button="true"
|
|
108
|
-
condition="u.f_apply_date >= '{}'">
|
|
109
|
-
</datepicker>
|
|
110
|
-
</div>
|
|
111
|
-
</div>
|
|
112
|
-
<div class="row app-row vertical-center" v-if="$parent.$parent.criteriaShow">
|
|
113
|
-
<div class="col-xs-4">
|
|
114
|
-
<label class="font text-left">结束时间:</label>
|
|
115
|
-
</div>
|
|
116
|
-
<div class="col-xs-8" >
|
|
117
|
-
<datepicker id="endDate" placeholder="结束日期"
|
|
118
|
-
style="width: 100%!important;"
|
|
119
|
-
v-model="model.endDate"
|
|
120
|
-
:value.sync="model.endDate"
|
|
121
|
-
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
122
|
-
:show-reset-button="true"
|
|
123
|
-
condition="f_apply_date <= '{}'">
|
|
124
|
-
</datepicker>
|
|
125
|
-
</div>
|
|
126
|
-
</div>
|
|
127
|
-
<div class="row app-row text-right" style="padding-bottom: 10px;height: auto;">
|
|
128
|
-
<button class="btn btn-primary" @click="$parent.$parent.search()">查询</button>
|
|
129
|
-
<button class="btn btn-info" @click="$parent.$parent.clear()">清空</button>
|
|
130
|
-
<button class="btn" :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}" @click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"></button>
|
|
131
|
-
</div>
|
|
132
|
-
</div>
|
|
133
|
-
</criteria>
|
|
134
|
-
<list :model="model" partial='list'>
|
|
135
|
-
<div partial class="auto app-text panel" style="margin: 10px">
|
|
136
|
-
<div class="panel-body panel-self">
|
|
137
|
-
<div class="col-xs-6">
|
|
138
|
-
<p class="col-xs-6 text-left font"><b>工程编号:</b></p>
|
|
139
|
-
<p class="col-xs-6 text-left input-font">{{ row.f_project_number }}</p>
|
|
140
|
-
</div>
|
|
141
|
-
<div class="col-xs-6">
|
|
142
|
-
<p class="col-xs-6 text-left font"><b>CEA 号:</b></p>
|
|
143
|
-
<p class="col-xs-6 text-left input-font">{{ row.f_cea_number }}</p>
|
|
144
|
-
</div>
|
|
145
|
-
<div class="col-xs-12">
|
|
146
|
-
<p class="col-xs-3 text-left font"><b>项目名称:</b></p>
|
|
147
|
-
<p class="col-xs-9 text-left input-font">{{ row.f_entry_name }}</p>
|
|
148
|
-
</div>
|
|
149
|
-
<div class="col-xs-6">
|
|
150
|
-
<p class="col-xs-6 text-left font"><b>项目类型:</b></p>
|
|
151
|
-
<p class="col-xs-6 text-left input-font">{{ row.f_apply_type }}</p>
|
|
152
|
-
</div>
|
|
153
|
-
<div class="col-xs-6">
|
|
154
|
-
<p class="col-xs-6 text-left font"><b>工程类型:</b></p>
|
|
155
|
-
<p class="col-xs-6 text-left input-font">{{ row.f_project_type }}</p>
|
|
156
|
-
</div>
|
|
157
|
-
<div class="col-xs-6">
|
|
158
|
-
<p class="col-xs-6 text-left font"><b>项目区域:</b></p>
|
|
159
|
-
<p class="col-xs-6 text-left input-font">{{ row.f_project_area }}</p>
|
|
160
|
-
</div>
|
|
161
|
-
<div class="col-xs-6">
|
|
162
|
-
<p class="col-xs-6 text-left font"><b>联 系 人:</b></p>
|
|
163
|
-
<p class="col-xs-6 text-left input-font">{{ row.f_contact }}</p>
|
|
164
|
-
</div>
|
|
165
|
-
<div class="col-xs-6">
|
|
166
|
-
<p class="col-xs-6 text-left font"><b>联系电话:</b></p>
|
|
167
|
-
<p class="col-xs-6 text-left input-font">{{ row.f_phone }}</p>
|
|
168
|
-
</div>
|
|
169
|
-
<div class="col-xs-6">
|
|
170
|
-
<p class="col-xs-6 text-left font"><b>办理环节:</b></p>
|
|
171
|
-
<p class="col-xs-6 text-left input-font">{{ row.defname }}</p>
|
|
172
|
-
</div>
|
|
173
|
-
<div class="col-xs-12">
|
|
174
|
-
<p class="col-xs-3 text-left font"><b>项目地址:</b></p>
|
|
175
|
-
<p class="col-xs-9 text-left input-font">{{ row.f_address }}</p>
|
|
176
|
-
</div>
|
|
177
|
-
<div class="col-xs-12 text-right">
|
|
178
|
-
<button class="btn btn-info" @click="$parent.$parent.$parent.click(row)">查看进度</button>
|
|
179
|
-
</div>
|
|
180
|
-
</div>
|
|
181
|
-
</div>
|
|
182
|
-
</list>
|
|
183
|
-
</criteria-paged>
|
|
184
|
-
</div>
|
|
185
|
-
</template>
|
|
186
|
-
<script>
|
|
187
|
-
import Vue from 'vue'
|
|
188
|
-
import { PagedList, HttpResetClass } from 'vue-client'
|
|
189
|
-
import {isEmpty} from '../../Util'
|
|
190
|
-
export default {
|
|
191
|
-
title: '报建流程',
|
|
192
|
-
data () {
|
|
193
|
-
return {
|
|
194
|
-
model: new PagedList(`${this.$androidUtil.getProxyUrl()}/rs/sql/supervisory`, 20, {
|
|
195
|
-
data: {
|
|
196
|
-
id: Vue.user.id,
|
|
197
|
-
orgid: Vue.user.orgid
|
|
198
|
-
// id: '178686',
|
|
199
|
-
// orgid: '178632'
|
|
200
|
-
}
|
|
201
|
-
}),
|
|
202
|
-
criteriaShow: false,
|
|
203
|
-
applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')], // 所有报建类型
|
|
204
|
-
defnames: [{label: '全部', value: ''}]
|
|
205
|
-
}
|
|
206
|
-
},
|
|
207
|
-
ready () {
|
|
208
|
-
this.search()
|
|
209
|
-
},
|
|
210
|
-
methods: {
|
|
211
|
-
clear () {
|
|
212
|
-
Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
|
|
213
|
-
this.$refs.cp.$refs.cri.model[key] = null
|
|
214
|
-
})
|
|
215
|
-
},
|
|
216
|
-
// 查询
|
|
217
|
-
search () {
|
|
218
|
-
this.$refs.cp.$refs.cri.search()
|
|
219
|
-
},
|
|
220
|
-
click (row) {
|
|
221
|
-
let _this = this
|
|
222
|
-
this.$dispatch('gotoson', {
|
|
223
|
-
_this: _this,
|
|
224
|
-
title: '详情信息',
|
|
225
|
-
safe: true
|
|
226
|
-
})
|
|
227
|
-
this.$goto('app-supervisory-cart', {selectdata: row}, 'self', _this.search)
|
|
228
|
-
},
|
|
229
|
-
applyTypeChange () {
|
|
230
|
-
if (!isEmpty(this.$refs.cp.$refs.cri.model.f_apply_type)) {
|
|
231
|
-
let http = new HttpResetClass()
|
|
232
|
-
http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/logic/getDefnameByType`, {
|
|
233
|
-
f_apply_type: this.$refs.cp.$refs.cri.model.f_apply_type
|
|
234
|
-
}, {resolveMsg: null, rejectMsg: null}).then((res) => {
|
|
235
|
-
this.defnames = [{label: '全部', value: ''}, ...res.data]
|
|
236
|
-
})
|
|
237
|
-
} else {
|
|
238
|
-
this.defnames = [{label: '全部', value: ''}]
|
|
239
|
-
}
|
|
240
|
-
}
|
|
241
|
-
},
|
|
242
|
-
events: {
|
|
243
|
-
},
|
|
244
|
-
watch: {
|
|
245
|
-
}
|
|
246
|
-
}
|
|
247
|
-
</script>
|
|
248
|
-
<style scoped>
|
|
249
|
-
.vertical-center {
|
|
250
|
-
display: flex;
|
|
251
|
-
align-items: center;
|
|
252
|
-
text-align: center;
|
|
253
|
-
}
|
|
254
|
-
.app-row {
|
|
255
|
-
height: auto;
|
|
256
|
-
background-color: white;
|
|
257
|
-
padding: 10px 10px 0 10px;
|
|
258
|
-
border-bottom: 1px solid rgba(235, 235, 235, 0.5);
|
|
259
|
-
}
|
|
260
|
-
.search_input {
|
|
261
|
-
border: 0;
|
|
262
|
-
outline: none;
|
|
263
|
-
}
|
|
264
|
-
.input-font{
|
|
265
|
-
font: 15px PingFang-SC-Medium;
|
|
266
|
-
color: #333333;
|
|
267
|
-
}
|
|
268
|
-
.app-text {
|
|
269
|
-
font-size: 12px;
|
|
270
|
-
}
|
|
271
|
-
.panel-self{
|
|
272
|
-
border-radius: 10px;
|
|
273
|
-
border:1px solid #499EDF;
|
|
274
|
-
background-color: #F8F8F8;
|
|
275
|
-
}
|
|
276
|
-
.font{
|
|
277
|
-
font: 15px PingFang-SC-Medium;
|
|
278
|
-
color: #666666;
|
|
279
|
-
}
|
|
280
|
-
.input-font{
|
|
281
|
-
font: 15px PingFang-SC-Medium;
|
|
282
|
-
color: #333333;
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
.button_shrink_top {
|
|
286
|
-
width: 34px;
|
|
287
|
-
height: 34px;
|
|
288
|
-
border: solid 1px #6aa6e2;
|
|
289
|
-
background-size: 100%;
|
|
290
|
-
background-image: url("../../../../static/newStyle/stretch_top.png")
|
|
291
|
-
}
|
|
292
|
-
|
|
293
|
-
.button_shrink_bottom {
|
|
294
|
-
width: 34px;
|
|
295
|
-
height: 34px;
|
|
296
|
-
border: solid 1px #6aa6e2;
|
|
297
|
-
background-size: 100%;
|
|
298
|
-
background-image: url("../../../../static/newStyle/stretch_bottom.png")
|
|
299
|
-
}
|
|
300
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div style="width: 100%">
|
|
3
|
+
<criteria-paged :model="model" v-ref:cp>
|
|
4
|
+
<criteria partial='criteria' @condition-changed='search' v-ref:cri>
|
|
5
|
+
<div partial style="padding: 10px">
|
|
6
|
+
<div class="row app-row vertical-center">
|
|
7
|
+
<div class="col-xs-4">
|
|
8
|
+
<label class="font text-left">项目名称:</label>
|
|
9
|
+
</div>
|
|
10
|
+
<div class="col-xs-8" >
|
|
11
|
+
<input class="search_input input-font" v-model=model.f_entry_name condition="u.f_entry_name like '%{}%'" />
|
|
12
|
+
</div>
|
|
13
|
+
</div>
|
|
14
|
+
<div class="row app-row vertical-center" v-if="$parent.$parent.criteriaShow">
|
|
15
|
+
<div class="col-xs-4">
|
|
16
|
+
<label class="font text-left">客户名称:</label>
|
|
17
|
+
</div>
|
|
18
|
+
<div class="col-xs-8" >
|
|
19
|
+
<input class="search_input input-font" v-model=model.f_user_name condition="u.f_user_name like '%{}%'" />
|
|
20
|
+
</div>
|
|
21
|
+
</div>
|
|
22
|
+
<div class="row app-row vertical-center" v-if="$parent.$parent.criteriaShow">
|
|
23
|
+
<div class="col-xs-4">
|
|
24
|
+
<label class="font text-left">联 系 人:</label>
|
|
25
|
+
</div>
|
|
26
|
+
<div class="col-xs-8" >
|
|
27
|
+
<input class="search_input input-font" v-model=model.f_contact condition="u.f_contact like '%{}%'" />
|
|
28
|
+
</div>
|
|
29
|
+
</div>
|
|
30
|
+
<div class="row app-row vertical-center" v-if="$parent.$parent.criteriaShow">
|
|
31
|
+
<div class="col-xs-4">
|
|
32
|
+
<label class="font text-left">报建编号:</label>
|
|
33
|
+
</div>
|
|
34
|
+
<div class="col-xs-8" >
|
|
35
|
+
<input class="search_input input-font" v-model=model.f_apply_num condition="u.f_apply_num like '%{}%'" />
|
|
36
|
+
</div>
|
|
37
|
+
</div>
|
|
38
|
+
<div class="row app-row vertical-center" v-if="$parent.$parent.criteriaShow">
|
|
39
|
+
<div class="col-xs-4">
|
|
40
|
+
<label class="font text-left">合同编号:</label>
|
|
41
|
+
</div>
|
|
42
|
+
<div class="col-xs-8" >
|
|
43
|
+
<input class="search_input input-font" v-model=model.f_contract_number condition="u.f_contract_number like '%{}%'" />
|
|
44
|
+
</div>
|
|
45
|
+
</div>
|
|
46
|
+
<div class="row app-row vertical-center" v-if="$parent.$parent.criteriaShow">
|
|
47
|
+
<div class="col-xs-4">
|
|
48
|
+
<label class="font text-left">报建类型:</label>
|
|
49
|
+
</div>
|
|
50
|
+
<div class="col-xs-8" >
|
|
51
|
+
<v-select
|
|
52
|
+
width="100%"
|
|
53
|
+
v-model="model.f_apply_type"
|
|
54
|
+
placeholder='报建类型'
|
|
55
|
+
condition="u.f_apply_type like '%{}%'"
|
|
56
|
+
:value.sync="model.f_apply_type"
|
|
57
|
+
:options='$parent.$parent.applytype'
|
|
58
|
+
class="select select_list"
|
|
59
|
+
:value-single="true"
|
|
60
|
+
@change="$parent.$parent.applyTypeChange()"
|
|
61
|
+
close-on-select ></v-select>
|
|
62
|
+
</div>
|
|
63
|
+
</div>
|
|
64
|
+
<div class="row app-row vertical-center" v-if="$parent.$parent.criteriaShow">
|
|
65
|
+
<div class="col-xs-4">
|
|
66
|
+
<label class="font text-left">办理环节:</label>
|
|
67
|
+
</div>
|
|
68
|
+
<div class="col-xs-8" >
|
|
69
|
+
<v-select
|
|
70
|
+
width="100%"
|
|
71
|
+
v-model="model.defname"
|
|
72
|
+
placeholder='办理环节'
|
|
73
|
+
condition="act.defname = '{}'"
|
|
74
|
+
:value.sync="model.defname"
|
|
75
|
+
:options='$parent.$parent.defnames'
|
|
76
|
+
class="select select_list"
|
|
77
|
+
:value-single="true"
|
|
78
|
+
close-on-select ></v-select>
|
|
79
|
+
</div>
|
|
80
|
+
</div>
|
|
81
|
+
<div class="row app-row vertical-center" v-if="$parent.$parent.criteriaShow">
|
|
82
|
+
<div class="col-xs-4">
|
|
83
|
+
<label class="font text-left">联系电话:</label>
|
|
84
|
+
</div>
|
|
85
|
+
<div class="col-xs-8" >
|
|
86
|
+
<input class="search_input input-font" v-model=model.f_phone condition="u.f_phone like '%{}%'" />
|
|
87
|
+
</div>
|
|
88
|
+
</div>
|
|
89
|
+
<div class="row app-row vertical-center" v-if="$parent.$parent.criteriaShow">
|
|
90
|
+
<div class="col-xs-4">
|
|
91
|
+
<label class="font text-left">用户地址:</label>
|
|
92
|
+
</div>
|
|
93
|
+
<div class="col-xs-8" >
|
|
94
|
+
<input class="search_input input-font" v-model=model.f_address condition="u.f_address like '%{}%'" />
|
|
95
|
+
</div>
|
|
96
|
+
</div>
|
|
97
|
+
<div class="row app-row vertical-center" v-if="$parent.$parent.criteriaShow">
|
|
98
|
+
<div class="col-xs-4">
|
|
99
|
+
<label class="font text-left">开始时间:</label>
|
|
100
|
+
</div>
|
|
101
|
+
<div class="col-xs-8" >
|
|
102
|
+
<datepicker id="startDate" placeholder="开始日期"
|
|
103
|
+
style="width: 100%!important;"
|
|
104
|
+
v-model="model.startDate"
|
|
105
|
+
:value.sync="model.startDate"
|
|
106
|
+
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
107
|
+
:show-reset-button="true"
|
|
108
|
+
condition="u.f_apply_date >= '{}'">
|
|
109
|
+
</datepicker>
|
|
110
|
+
</div>
|
|
111
|
+
</div>
|
|
112
|
+
<div class="row app-row vertical-center" v-if="$parent.$parent.criteriaShow">
|
|
113
|
+
<div class="col-xs-4">
|
|
114
|
+
<label class="font text-left">结束时间:</label>
|
|
115
|
+
</div>
|
|
116
|
+
<div class="col-xs-8" >
|
|
117
|
+
<datepicker id="endDate" placeholder="结束日期"
|
|
118
|
+
style="width: 100%!important;"
|
|
119
|
+
v-model="model.endDate"
|
|
120
|
+
:value.sync="model.endDate"
|
|
121
|
+
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
122
|
+
:show-reset-button="true"
|
|
123
|
+
condition="f_apply_date <= '{}'">
|
|
124
|
+
</datepicker>
|
|
125
|
+
</div>
|
|
126
|
+
</div>
|
|
127
|
+
<div class="row app-row text-right" style="padding-bottom: 10px;height: auto;">
|
|
128
|
+
<button class="btn btn-primary" @click="$parent.$parent.search()">查询</button>
|
|
129
|
+
<button class="btn btn-info" @click="$parent.$parent.clear()">清空</button>
|
|
130
|
+
<button class="btn" :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}" @click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"></button>
|
|
131
|
+
</div>
|
|
132
|
+
</div>
|
|
133
|
+
</criteria>
|
|
134
|
+
<list :model="model" partial='list'>
|
|
135
|
+
<div partial class="auto app-text panel" style="margin: 10px">
|
|
136
|
+
<div class="panel-body panel-self">
|
|
137
|
+
<div class="col-xs-6">
|
|
138
|
+
<p class="col-xs-6 text-left font"><b>工程编号:</b></p>
|
|
139
|
+
<p class="col-xs-6 text-left input-font">{{ row.f_project_number }}</p>
|
|
140
|
+
</div>
|
|
141
|
+
<div class="col-xs-6">
|
|
142
|
+
<p class="col-xs-6 text-left font"><b>CEA 号:</b></p>
|
|
143
|
+
<p class="col-xs-6 text-left input-font">{{ row.f_cea_number }}</p>
|
|
144
|
+
</div>
|
|
145
|
+
<div class="col-xs-12">
|
|
146
|
+
<p class="col-xs-3 text-left font"><b>项目名称:</b></p>
|
|
147
|
+
<p class="col-xs-9 text-left input-font">{{ row.f_entry_name }}</p>
|
|
148
|
+
</div>
|
|
149
|
+
<div class="col-xs-6">
|
|
150
|
+
<p class="col-xs-6 text-left font"><b>项目类型:</b></p>
|
|
151
|
+
<p class="col-xs-6 text-left input-font">{{ row.f_apply_type }}</p>
|
|
152
|
+
</div>
|
|
153
|
+
<div class="col-xs-6">
|
|
154
|
+
<p class="col-xs-6 text-left font"><b>工程类型:</b></p>
|
|
155
|
+
<p class="col-xs-6 text-left input-font">{{ row.f_project_type }}</p>
|
|
156
|
+
</div>
|
|
157
|
+
<div class="col-xs-6">
|
|
158
|
+
<p class="col-xs-6 text-left font"><b>项目区域:</b></p>
|
|
159
|
+
<p class="col-xs-6 text-left input-font">{{ row.f_project_area }}</p>
|
|
160
|
+
</div>
|
|
161
|
+
<div class="col-xs-6">
|
|
162
|
+
<p class="col-xs-6 text-left font"><b>联 系 人:</b></p>
|
|
163
|
+
<p class="col-xs-6 text-left input-font">{{ row.f_contact }}</p>
|
|
164
|
+
</div>
|
|
165
|
+
<div class="col-xs-6">
|
|
166
|
+
<p class="col-xs-6 text-left font"><b>联系电话:</b></p>
|
|
167
|
+
<p class="col-xs-6 text-left input-font">{{ row.f_phone }}</p>
|
|
168
|
+
</div>
|
|
169
|
+
<div class="col-xs-6">
|
|
170
|
+
<p class="col-xs-6 text-left font"><b>办理环节:</b></p>
|
|
171
|
+
<p class="col-xs-6 text-left input-font">{{ row.defname }}</p>
|
|
172
|
+
</div>
|
|
173
|
+
<div class="col-xs-12">
|
|
174
|
+
<p class="col-xs-3 text-left font"><b>项目地址:</b></p>
|
|
175
|
+
<p class="col-xs-9 text-left input-font">{{ row.f_address }}</p>
|
|
176
|
+
</div>
|
|
177
|
+
<div class="col-xs-12 text-right">
|
|
178
|
+
<button class="btn btn-info" @click="$parent.$parent.$parent.click(row)">查看进度</button>
|
|
179
|
+
</div>
|
|
180
|
+
</div>
|
|
181
|
+
</div>
|
|
182
|
+
</list>
|
|
183
|
+
</criteria-paged>
|
|
184
|
+
</div>
|
|
185
|
+
</template>
|
|
186
|
+
<script>
|
|
187
|
+
import Vue from 'vue'
|
|
188
|
+
import { PagedList, HttpResetClass } from 'vue-client'
|
|
189
|
+
import {isEmpty} from '../../Util'
|
|
190
|
+
export default {
|
|
191
|
+
title: '报建流程',
|
|
192
|
+
data () {
|
|
193
|
+
return {
|
|
194
|
+
model: new PagedList(`${this.$androidUtil.getProxyUrl()}/rs/sql/supervisory`, 20, {
|
|
195
|
+
data: {
|
|
196
|
+
id: Vue.user.id,
|
|
197
|
+
orgid: Vue.user.orgid
|
|
198
|
+
// id: '178686',
|
|
199
|
+
// orgid: '178632'
|
|
200
|
+
}
|
|
201
|
+
}),
|
|
202
|
+
criteriaShow: false,
|
|
203
|
+
applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')], // 所有报建类型
|
|
204
|
+
defnames: [{label: '全部', value: ''}]
|
|
205
|
+
}
|
|
206
|
+
},
|
|
207
|
+
ready () {
|
|
208
|
+
this.search()
|
|
209
|
+
},
|
|
210
|
+
methods: {
|
|
211
|
+
clear () {
|
|
212
|
+
Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
|
|
213
|
+
this.$refs.cp.$refs.cri.model[key] = null
|
|
214
|
+
})
|
|
215
|
+
},
|
|
216
|
+
// 查询
|
|
217
|
+
search () {
|
|
218
|
+
this.$refs.cp.$refs.cri.search()
|
|
219
|
+
},
|
|
220
|
+
click (row) {
|
|
221
|
+
let _this = this
|
|
222
|
+
this.$dispatch('gotoson', {
|
|
223
|
+
_this: _this,
|
|
224
|
+
title: '详情信息',
|
|
225
|
+
safe: true
|
|
226
|
+
})
|
|
227
|
+
this.$goto('app-supervisory-cart', {selectdata: row}, 'self', _this.search)
|
|
228
|
+
},
|
|
229
|
+
applyTypeChange () {
|
|
230
|
+
if (!isEmpty(this.$refs.cp.$refs.cri.model.f_apply_type)) {
|
|
231
|
+
let http = new HttpResetClass()
|
|
232
|
+
http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/logic/getDefnameByType`, {
|
|
233
|
+
f_apply_type: this.$refs.cp.$refs.cri.model.f_apply_type
|
|
234
|
+
}, {resolveMsg: null, rejectMsg: null}).then((res) => {
|
|
235
|
+
this.defnames = [{label: '全部', value: ''}, ...res.data]
|
|
236
|
+
})
|
|
237
|
+
} else {
|
|
238
|
+
this.defnames = [{label: '全部', value: ''}]
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
},
|
|
242
|
+
events: {
|
|
243
|
+
},
|
|
244
|
+
watch: {
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
</script>
|
|
248
|
+
<style scoped>
|
|
249
|
+
.vertical-center {
|
|
250
|
+
display: flex;
|
|
251
|
+
align-items: center;
|
|
252
|
+
text-align: center;
|
|
253
|
+
}
|
|
254
|
+
.app-row {
|
|
255
|
+
height: auto;
|
|
256
|
+
background-color: white;
|
|
257
|
+
padding: 10px 10px 0 10px;
|
|
258
|
+
border-bottom: 1px solid rgba(235, 235, 235, 0.5);
|
|
259
|
+
}
|
|
260
|
+
.search_input {
|
|
261
|
+
border: 0;
|
|
262
|
+
outline: none;
|
|
263
|
+
}
|
|
264
|
+
.input-font{
|
|
265
|
+
font: 15px PingFang-SC-Medium;
|
|
266
|
+
color: #333333;
|
|
267
|
+
}
|
|
268
|
+
.app-text {
|
|
269
|
+
font-size: 12px;
|
|
270
|
+
}
|
|
271
|
+
.panel-self{
|
|
272
|
+
border-radius: 10px;
|
|
273
|
+
border:1px solid #499EDF;
|
|
274
|
+
background-color: #F8F8F8;
|
|
275
|
+
}
|
|
276
|
+
.font{
|
|
277
|
+
font: 15px PingFang-SC-Medium;
|
|
278
|
+
color: #666666;
|
|
279
|
+
}
|
|
280
|
+
.input-font{
|
|
281
|
+
font: 15px PingFang-SC-Medium;
|
|
282
|
+
color: #333333;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.button_shrink_top {
|
|
286
|
+
width: 34px;
|
|
287
|
+
height: 34px;
|
|
288
|
+
border: solid 1px #6aa6e2;
|
|
289
|
+
background-size: 100%;
|
|
290
|
+
background-image: url("../../../../static/newStyle/stretch_top.png")
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.button_shrink_bottom {
|
|
294
|
+
width: 34px;
|
|
295
|
+
height: 34px;
|
|
296
|
+
border: solid 1px #6aa6e2;
|
|
297
|
+
background-size: 100%;
|
|
298
|
+
background-image: url("../../../../static/newStyle/stretch_bottom.png")
|
|
299
|
+
}
|
|
300
|
+
</style>
|