apply-clients 3.2.30-11 → 3.2.30-12
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/App.vue +20 -20
- package/src/components/product/Order/OrderApplyList.vue +280 -280
package/package.json
CHANGED
package/src/App.vue
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div>
|
|
3
|
-
<app-base class="bg">
|
|
4
|
-
<div class='flex'>
|
|
5
|
-
<article>
|
|
6
|
-
<route :comp="{name: 'login'}"></route>
|
|
7
|
-
</article>
|
|
8
|
-
</div>
|
|
9
|
-
</app-base>
|
|
10
|
-
</div>
|
|
11
|
-
</template>
|
|
12
|
-
|
|
13
|
-
<script>
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
export default {
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
}
|
|
20
|
-
</script>
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
<app-base class="bg">
|
|
4
|
+
<div class='flex'>
|
|
5
|
+
<article>
|
|
6
|
+
<route :comp="{name: 'login'}"></route>
|
|
7
|
+
</article>
|
|
8
|
+
</div>
|
|
9
|
+
</app-base>
|
|
10
|
+
</div>
|
|
11
|
+
</template>
|
|
12
|
+
|
|
13
|
+
<script>
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
export default {
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
}
|
|
20
|
+
</script>
|
|
@@ -1,280 +1,280 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="col-sm-12">
|
|
3
|
-
<criteria-paged :model="model" v-ref:cp>
|
|
4
|
-
<criteria partial='criteria' @condition-changed='search' v-ref:cri>
|
|
5
|
-
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
|
|
6
|
-
<div class="row">
|
|
7
|
-
<div class="form-group col-sm-3">
|
|
8
|
-
<label class="font_normal_body">组织机构:</label>
|
|
9
|
-
<res-select
|
|
10
|
-
restype='organization'
|
|
11
|
-
:initresid='$parent.$parent.curorgid'
|
|
12
|
-
@res-select="$parent.$parent.getorg"
|
|
13
|
-
is-mul="false"
|
|
14
|
-
></res-select>
|
|
15
|
-
</div>
|
|
16
|
-
<div class="form-group col-sm-3">
|
|
17
|
-
<label class="font_normal_body">处理状态:</label>
|
|
18
|
-
<v-select
|
|
19
|
-
v-model="model.f_orderstate"
|
|
20
|
-
placeholder='处理状态'
|
|
21
|
-
condition="f_orderstate like '%{}%'"
|
|
22
|
-
:value.sync="model.f_orderstate"
|
|
23
|
-
:options='$parent.$parent.orderState'
|
|
24
|
-
class="select select_list"
|
|
25
|
-
:value-single="true"
|
|
26
|
-
close-on-select ></v-select>
|
|
27
|
-
</div>
|
|
28
|
-
<div class="form-group col-sm-6 button-range">
|
|
29
|
-
<button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
|
|
30
|
-
<button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
|
|
31
|
-
<div
|
|
32
|
-
:class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
|
|
33
|
-
@click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"
|
|
34
|
-
class="button_spacing"
|
|
35
|
-
style="float: right">
|
|
36
|
-
</div>
|
|
37
|
-
</div>
|
|
38
|
-
</div>
|
|
39
|
-
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
40
|
-
<div class="form-group col-sm-3">
|
|
41
|
-
<label class="font_normal_body">用户类型:</label>
|
|
42
|
-
<v-select
|
|
43
|
-
placeholder='用户类型'
|
|
44
|
-
v-model="model.f_user_type"
|
|
45
|
-
:value.sync="model.f_user_type"
|
|
46
|
-
condition="f_user_type like '%{}%'"
|
|
47
|
-
:options='$parent.$parent.userType'
|
|
48
|
-
class="select select_list"
|
|
49
|
-
:value-single="true"
|
|
50
|
-
close-on-select ></v-select>
|
|
51
|
-
</div>
|
|
52
|
-
<div class="form-group col-sm-3">
|
|
53
|
-
<label class="font_normal_body">用户性质:</label>
|
|
54
|
-
<v-select
|
|
55
|
-
placeholder='用户性质'
|
|
56
|
-
v-model="model.f_user_nature"
|
|
57
|
-
:value.sync="model.f_user_nature"
|
|
58
|
-
condition="f_user_nature like '%{}%'"
|
|
59
|
-
:options='$parent.$parent.userNature'
|
|
60
|
-
class="select select_list"
|
|
61
|
-
:value-single="true"
|
|
62
|
-
close-on-select ></v-select>
|
|
63
|
-
</div>
|
|
64
|
-
<div class="form-group col-sm-3">
|
|
65
|
-
<label class="font_normal_body">用户姓名:</label>
|
|
66
|
-
<input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
|
|
67
|
-
v-on:keyup.enter="$parent.$parent.search()" condition="f_user_name like '%{}%'" placeholder='用户姓名'>
|
|
68
|
-
</div>
|
|
69
|
-
<div class="form-group col-sm-3">
|
|
70
|
-
<label class="font_normal_body">联 系 人:</label>
|
|
71
|
-
<input type="text" style="width:60%" class="input_search" v-model="model.f_contact"
|
|
72
|
-
v-on:keyup.enter="$parent.$parent.search()" condition="f_contact like '%{}%'" placeholder='联系人'>
|
|
73
|
-
</div>
|
|
74
|
-
<div class="form-group col-sm-3">
|
|
75
|
-
<label class="font_normal_body">联系电话:</label>
|
|
76
|
-
<input type="text" style="width:60%" class="input_search" v-model="model.f_phone"
|
|
77
|
-
v-on:keyup.enter="$parent.$parent.search()" condition="f_phone like '%{}%'" placeholder='联系电话'>
|
|
78
|
-
</div>
|
|
79
|
-
<div class="form-group col-sm-3">
|
|
80
|
-
<label class="font_normal_body">详细地址:</label>
|
|
81
|
-
<input type="text" style="width:60%" class="input_search" v-model="model.f_address"
|
|
82
|
-
v-on:keyup.enter="$parent.$parent.search()" condition="f_address like '%{}%'" placeholder='详细地址'>
|
|
83
|
-
</div>
|
|
84
|
-
<div class="form-group col-sm-3">
|
|
85
|
-
<label class="font_normal_body">审 核 人:</label>
|
|
86
|
-
<input type="text" style="width:60%" class="input_search" v-model="model.f_check_user"
|
|
87
|
-
v-on:keyup.enter="$parent.$parent.search()" condition="f_check_user like '%{}%'" placeholder='审核人'>
|
|
88
|
-
</div>
|
|
89
|
-
<div class="form-group col-sm-3">
|
|
90
|
-
<label class="font_normal_body">处 理 人:</label>
|
|
91
|
-
<input type="text" style="width:60%" class="input_search" v-model="model.f_process_user"
|
|
92
|
-
v-on:keyup.enter="$parent.$parent.search()" condition="f_process_user like '%{}%'" placeholder='处理人'>
|
|
93
|
-
</div>
|
|
94
|
-
<div class="form-group col-sm-3">
|
|
95
|
-
<label class="font_normal_body">报建编号:</label>
|
|
96
|
-
<input type="text" style="width:60%" class="input_search" v-model="model.f_apply_num"
|
|
97
|
-
v-on:keyup.enter="$parent.$parent.search()" condition="f_apply_num like '%{}%'" placeholder='报建编号'>
|
|
98
|
-
</div>
|
|
99
|
-
<div class="form-group col-sm-3">
|
|
100
|
-
<label for="startDate" class="font_normal_body">开始时间:</label>
|
|
101
|
-
<datepicker id="startDate" placeholder="开始日期"
|
|
102
|
-
style="width: 60%!important;"
|
|
103
|
-
v-model="model.startDate"
|
|
104
|
-
:value.sync="model.startDate"
|
|
105
|
-
:format="'yyyy-MM-dd 00:00:00'"
|
|
106
|
-
:show-reset-button="true"
|
|
107
|
-
condition="f_orderdate >= to_date('{}', 'yyyy-mm-dd hh24:mi:ss')">
|
|
108
|
-
</datepicker>
|
|
109
|
-
</div>
|
|
110
|
-
<div class="form-group col-sm-3">
|
|
111
|
-
<label for="endDate" class="font_normal_body">结束时间:</label>
|
|
112
|
-
<datepicker id="endDate" placeholder="结束日期"
|
|
113
|
-
style="width: 60%!important;"
|
|
114
|
-
v-model="model.endDate"
|
|
115
|
-
:value.sync="model.endDate"
|
|
116
|
-
:format="'yyyy-MM-dd 23:59:59'"
|
|
117
|
-
:show-reset-button="true"
|
|
118
|
-
condition="f_orderdate <= to_date('{}', 'yyyy-mm-dd hh24:mi:ss')">
|
|
119
|
-
</datepicker>
|
|
120
|
-
</div>
|
|
121
|
-
</div>
|
|
122
|
-
</div>
|
|
123
|
-
</criteria>
|
|
124
|
-
<data-grid :model="model" partial='list' v-ref:grid class="list_area table_sy">
|
|
125
|
-
<template partial='head'>
|
|
126
|
-
<tr>
|
|
127
|
-
<th style="white-space: nowrap;">序号</th>
|
|
128
|
-
<th style="white-space: nowrap;">报装类型</th>
|
|
129
|
-
<th style="white-space: nowrap;">处理状态</th>
|
|
130
|
-
<th style="white-space: nowrap;">用户姓名</th>
|
|
131
|
-
<th style="white-space: nowrap;">联系电话</th>
|
|
132
|
-
<th style="white-space: nowrap;">联系部门</th>
|
|
133
|
-
<th style="white-space: nowrap;">用气位置</th>
|
|
134
|
-
<th style="white-space: nowrap;">预约地址</th>
|
|
135
|
-
<th style="white-space: nowrap;">备注信息</th>
|
|
136
|
-
<th style="white-space: nowrap;">预约时间</th>
|
|
137
|
-
<th style="white-space: nowrap;">设备名称</th>
|
|
138
|
-
<th style="white-space: nowrap;">设备型号</th>
|
|
139
|
-
<th style="white-space: nowrap;">设备数量</th>
|
|
140
|
-
<th style="white-space: nowrap;">单台额定每小时用气方量(Nm³)</th>
|
|
141
|
-
<th style="white-space: nowrap;">额定用气压力(kpa)</th>
|
|
142
|
-
<th style="white-space: nowrap;">应缴金额</th>
|
|
143
|
-
<th style="white-space: nowrap;">实缴金额</th>
|
|
144
|
-
<th style="white-space: nowrap;">缴费状态</th>
|
|
145
|
-
<th style="white-space: nowrap;">缴费时间</th>
|
|
146
|
-
<th style="white-space: nowrap;">操作</th>
|
|
147
|
-
</tr>
|
|
148
|
-
</template>
|
|
149
|
-
<template partial='body'>
|
|
150
|
-
<tr>
|
|
151
|
-
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
152
|
-
<nobr>{{$index+1}}</nobr>
|
|
153
|
-
</td>
|
|
154
|
-
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
155
|
-
<nobr>{{row.f_apply_type}}</nobr>
|
|
156
|
-
</td>
|
|
157
|
-
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
158
|
-
<nobr>{{row.f_orderstate}}</nobr>
|
|
159
|
-
</td>
|
|
160
|
-
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
161
|
-
<nobr>{{row.f_user_name}}</nobr>
|
|
162
|
-
</td>
|
|
163
|
-
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
164
|
-
<nobr>{{row.f_phone}}</nobr>
|
|
165
|
-
</td>
|
|
166
|
-
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
167
|
-
<nobr>{{row.f_contact_department}}</nobr>
|
|
168
|
-
</td>
|
|
169
|
-
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
170
|
-
<nobr>{{row.f_usegasposition}}</nobr>
|
|
171
|
-
</td>
|
|
172
|
-
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
173
|
-
<nobr>{{row.f_address}}</nobr>
|
|
174
|
-
</td>
|
|
175
|
-
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
176
|
-
<nobr>{{row.f_orderremark}}</nobr>
|
|
177
|
-
</td>
|
|
178
|
-
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
179
|
-
<nobr>{{row.f_orderdate}}</nobr>
|
|
180
|
-
</td>
|
|
181
|
-
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
182
|
-
<nobr>{{row.f_device_name}}</nobr>
|
|
183
|
-
</td>
|
|
184
|
-
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
185
|
-
<nobr>{{row.f_delice_type}}</nobr>
|
|
186
|
-
</td>
|
|
187
|
-
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
188
|
-
<nobr>{{row.f_delice_num}}</nobr>
|
|
189
|
-
</td>
|
|
190
|
-
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
191
|
-
<nobr>{{row.f_usegas_amount}}</nobr>
|
|
192
|
-
</td>
|
|
193
|
-
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
194
|
-
<nobr>{{row.f_usegas_pressure}}</nobr>
|
|
195
|
-
</td>
|
|
196
|
-
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
197
|
-
<nobr>{{row.deu_money}}</nobr>
|
|
198
|
-
</td>
|
|
199
|
-
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
200
|
-
<nobr>{{row.money}}</nobr>
|
|
201
|
-
</td>
|
|
202
|
-
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
203
|
-
<nobr>{{row.money_state }}</nobr>
|
|
204
|
-
</td>
|
|
205
|
-
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
206
|
-
<nobr>{{row.money_date}}</nobr>
|
|
207
|
-
</td>
|
|
208
|
-
<td style="text-align: center;">
|
|
209
|
-
<button class="button_search button_spacing width-60"
|
|
210
|
-
@click="$parent.$parent.$parent.handleOrder('check', row)"
|
|
211
|
-
v-if="row.f_orderstate === '待审核'"
|
|
212
|
-
>审核</button>
|
|
213
|
-
</td>
|
|
214
|
-
</tr>
|
|
215
|
-
</template>
|
|
216
|
-
</data-grid>
|
|
217
|
-
</criteria-paged>
|
|
218
|
-
</div>
|
|
219
|
-
</template>
|
|
220
|
-
<script>
|
|
221
|
-
import {PagedList} from 'vue-client'
|
|
222
|
-
export default {
|
|
223
|
-
title: '预约单',
|
|
224
|
-
data () {
|
|
225
|
-
return {
|
|
226
|
-
model: new PagedList('rs/sql/getOrderApply', 20, {
|
|
227
|
-
data: {
|
|
228
|
-
|
|
229
|
-
}
|
|
230
|
-
}),
|
|
231
|
-
curorgid: [this.$login.f.orgid],
|
|
232
|
-
criteriaShow: false,
|
|
233
|
-
orderState: [
|
|
234
|
-
{'label': '待缴费', 'value': '待缴费'},
|
|
235
|
-
{'label': '待审核', 'value': '待审核'},
|
|
236
|
-
{'label': '预约成功', 'value': '预约成功'},
|
|
237
|
-
{'label': '预约失败', 'value': '预约失败'}
|
|
238
|
-
],
|
|
239
|
-
userType: [
|
|
240
|
-
{'label': '民用', 'value': '民用'},
|
|
241
|
-
{'label': '非民用', 'value': '非民用'}
|
|
242
|
-
],
|
|
243
|
-
userNature: [
|
|
244
|
-
{'label': '民用', 'value': '民用'},
|
|
245
|
-
{'label': '非民用', 'value': '非民用'}
|
|
246
|
-
]
|
|
247
|
-
}
|
|
248
|
-
},
|
|
249
|
-
ready () {
|
|
250
|
-
// 调用查询
|
|
251
|
-
this.search()
|
|
252
|
-
},
|
|
253
|
-
events: {
|
|
254
|
-
},
|
|
255
|
-
methods: {
|
|
256
|
-
// 处理
|
|
257
|
-
handleOrder (type, row) {
|
|
258
|
-
this.$dispatch('handleOrder', type, row)
|
|
259
|
-
},
|
|
260
|
-
search () {
|
|
261
|
-
this.$dispatch('search')
|
|
262
|
-
},
|
|
263
|
-
clear () {
|
|
264
|
-
Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
|
|
265
|
-
this.$refs.cp.$refs.cri.model[key] = null
|
|
266
|
-
})
|
|
267
|
-
},
|
|
268
|
-
getorg (val) {
|
|
269
|
-
if (val.length <= 0) {
|
|
270
|
-
return
|
|
271
|
-
}
|
|
272
|
-
this.model.params.data.orgid = val[0]
|
|
273
|
-
}
|
|
274
|
-
},
|
|
275
|
-
computed: {
|
|
276
|
-
}
|
|
277
|
-
}
|
|
278
|
-
</script>
|
|
279
|
-
<style scoped>
|
|
280
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="col-sm-12">
|
|
3
|
+
<criteria-paged :model="model" v-ref:cp>
|
|
4
|
+
<criteria partial='criteria' @condition-changed='search' v-ref:cri>
|
|
5
|
+
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
|
|
6
|
+
<div class="row">
|
|
7
|
+
<div class="form-group col-sm-3">
|
|
8
|
+
<label class="font_normal_body">组织机构:</label>
|
|
9
|
+
<res-select
|
|
10
|
+
restype='organization'
|
|
11
|
+
:initresid='$parent.$parent.curorgid'
|
|
12
|
+
@res-select="$parent.$parent.getorg"
|
|
13
|
+
is-mul="false"
|
|
14
|
+
></res-select>
|
|
15
|
+
</div>
|
|
16
|
+
<div class="form-group col-sm-3">
|
|
17
|
+
<label class="font_normal_body">处理状态:</label>
|
|
18
|
+
<v-select
|
|
19
|
+
v-model="model.f_orderstate"
|
|
20
|
+
placeholder='处理状态'
|
|
21
|
+
condition="f_orderstate like '%{}%'"
|
|
22
|
+
:value.sync="model.f_orderstate"
|
|
23
|
+
:options='$parent.$parent.orderState'
|
|
24
|
+
class="select select_list"
|
|
25
|
+
:value-single="true"
|
|
26
|
+
close-on-select ></v-select>
|
|
27
|
+
</div>
|
|
28
|
+
<div class="form-group col-sm-6 button-range">
|
|
29
|
+
<button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
|
|
30
|
+
<button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
|
|
31
|
+
<div
|
|
32
|
+
:class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
|
|
33
|
+
@click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"
|
|
34
|
+
class="button_spacing"
|
|
35
|
+
style="float: right">
|
|
36
|
+
</div>
|
|
37
|
+
</div>
|
|
38
|
+
</div>
|
|
39
|
+
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
40
|
+
<div class="form-group col-sm-3">
|
|
41
|
+
<label class="font_normal_body">用户类型:</label>
|
|
42
|
+
<v-select
|
|
43
|
+
placeholder='用户类型'
|
|
44
|
+
v-model="model.f_user_type"
|
|
45
|
+
:value.sync="model.f_user_type"
|
|
46
|
+
condition="f_user_type like '%{}%'"
|
|
47
|
+
:options='$parent.$parent.userType'
|
|
48
|
+
class="select select_list"
|
|
49
|
+
:value-single="true"
|
|
50
|
+
close-on-select ></v-select>
|
|
51
|
+
</div>
|
|
52
|
+
<div class="form-group col-sm-3">
|
|
53
|
+
<label class="font_normal_body">用户性质:</label>
|
|
54
|
+
<v-select
|
|
55
|
+
placeholder='用户性质'
|
|
56
|
+
v-model="model.f_user_nature"
|
|
57
|
+
:value.sync="model.f_user_nature"
|
|
58
|
+
condition="f_user_nature like '%{}%'"
|
|
59
|
+
:options='$parent.$parent.userNature'
|
|
60
|
+
class="select select_list"
|
|
61
|
+
:value-single="true"
|
|
62
|
+
close-on-select ></v-select>
|
|
63
|
+
</div>
|
|
64
|
+
<div class="form-group col-sm-3">
|
|
65
|
+
<label class="font_normal_body">用户姓名:</label>
|
|
66
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
|
|
67
|
+
v-on:keyup.enter="$parent.$parent.search()" condition="f_user_name like '%{}%'" placeholder='用户姓名'>
|
|
68
|
+
</div>
|
|
69
|
+
<div class="form-group col-sm-3">
|
|
70
|
+
<label class="font_normal_body">联 系 人:</label>
|
|
71
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_contact"
|
|
72
|
+
v-on:keyup.enter="$parent.$parent.search()" condition="f_contact like '%{}%'" placeholder='联系人'>
|
|
73
|
+
</div>
|
|
74
|
+
<div class="form-group col-sm-3">
|
|
75
|
+
<label class="font_normal_body">联系电话:</label>
|
|
76
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_phone"
|
|
77
|
+
v-on:keyup.enter="$parent.$parent.search()" condition="f_phone like '%{}%'" placeholder='联系电话'>
|
|
78
|
+
</div>
|
|
79
|
+
<div class="form-group col-sm-3">
|
|
80
|
+
<label class="font_normal_body">详细地址:</label>
|
|
81
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_address"
|
|
82
|
+
v-on:keyup.enter="$parent.$parent.search()" condition="f_address like '%{}%'" placeholder='详细地址'>
|
|
83
|
+
</div>
|
|
84
|
+
<div class="form-group col-sm-3">
|
|
85
|
+
<label class="font_normal_body">审 核 人:</label>
|
|
86
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_check_user"
|
|
87
|
+
v-on:keyup.enter="$parent.$parent.search()" condition="f_check_user like '%{}%'" placeholder='审核人'>
|
|
88
|
+
</div>
|
|
89
|
+
<div class="form-group col-sm-3">
|
|
90
|
+
<label class="font_normal_body">处 理 人:</label>
|
|
91
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_process_user"
|
|
92
|
+
v-on:keyup.enter="$parent.$parent.search()" condition="f_process_user like '%{}%'" placeholder='处理人'>
|
|
93
|
+
</div>
|
|
94
|
+
<div class="form-group col-sm-3">
|
|
95
|
+
<label class="font_normal_body">报建编号:</label>
|
|
96
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_apply_num"
|
|
97
|
+
v-on:keyup.enter="$parent.$parent.search()" condition="f_apply_num like '%{}%'" placeholder='报建编号'>
|
|
98
|
+
</div>
|
|
99
|
+
<div class="form-group col-sm-3">
|
|
100
|
+
<label for="startDate" class="font_normal_body">开始时间:</label>
|
|
101
|
+
<datepicker id="startDate" placeholder="开始日期"
|
|
102
|
+
style="width: 60%!important;"
|
|
103
|
+
v-model="model.startDate"
|
|
104
|
+
:value.sync="model.startDate"
|
|
105
|
+
:format="'yyyy-MM-dd 00:00:00'"
|
|
106
|
+
:show-reset-button="true"
|
|
107
|
+
condition="f_orderdate >= to_date('{}', 'yyyy-mm-dd hh24:mi:ss')">
|
|
108
|
+
</datepicker>
|
|
109
|
+
</div>
|
|
110
|
+
<div class="form-group col-sm-3">
|
|
111
|
+
<label for="endDate" class="font_normal_body">结束时间:</label>
|
|
112
|
+
<datepicker id="endDate" placeholder="结束日期"
|
|
113
|
+
style="width: 60%!important;"
|
|
114
|
+
v-model="model.endDate"
|
|
115
|
+
:value.sync="model.endDate"
|
|
116
|
+
:format="'yyyy-MM-dd 23:59:59'"
|
|
117
|
+
:show-reset-button="true"
|
|
118
|
+
condition="f_orderdate <= to_date('{}', 'yyyy-mm-dd hh24:mi:ss')">
|
|
119
|
+
</datepicker>
|
|
120
|
+
</div>
|
|
121
|
+
</div>
|
|
122
|
+
</div>
|
|
123
|
+
</criteria>
|
|
124
|
+
<data-grid :model="model" partial='list' v-ref:grid class="list_area table_sy">
|
|
125
|
+
<template partial='head'>
|
|
126
|
+
<tr>
|
|
127
|
+
<th style="white-space: nowrap;">序号</th>
|
|
128
|
+
<th style="white-space: nowrap;">报装类型</th>
|
|
129
|
+
<th style="white-space: nowrap;">处理状态</th>
|
|
130
|
+
<th style="white-space: nowrap;">用户姓名</th>
|
|
131
|
+
<th style="white-space: nowrap;">联系电话</th>
|
|
132
|
+
<th style="white-space: nowrap;">联系部门</th>
|
|
133
|
+
<th style="white-space: nowrap;">用气位置</th>
|
|
134
|
+
<th style="white-space: nowrap;">预约地址</th>
|
|
135
|
+
<th style="white-space: nowrap;">备注信息</th>
|
|
136
|
+
<th style="white-space: nowrap;">预约时间</th>
|
|
137
|
+
<th style="white-space: nowrap;">设备名称</th>
|
|
138
|
+
<th style="white-space: nowrap;">设备型号</th>
|
|
139
|
+
<th style="white-space: nowrap;">设备数量</th>
|
|
140
|
+
<th style="white-space: nowrap;">单台额定每小时用气方量(Nm³)</th>
|
|
141
|
+
<th style="white-space: nowrap;">额定用气压力(kpa)</th>
|
|
142
|
+
<th style="white-space: nowrap;">应缴金额</th>
|
|
143
|
+
<th style="white-space: nowrap;">实缴金额</th>
|
|
144
|
+
<th style="white-space: nowrap;">缴费状态</th>
|
|
145
|
+
<th style="white-space: nowrap;">缴费时间</th>
|
|
146
|
+
<th style="white-space: nowrap;">操作</th>
|
|
147
|
+
</tr>
|
|
148
|
+
</template>
|
|
149
|
+
<template partial='body'>
|
|
150
|
+
<tr>
|
|
151
|
+
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
152
|
+
<nobr>{{$index+1}}</nobr>
|
|
153
|
+
</td>
|
|
154
|
+
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
155
|
+
<nobr>{{row.f_apply_type}}</nobr>
|
|
156
|
+
</td>
|
|
157
|
+
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
158
|
+
<nobr>{{row.f_orderstate}}</nobr>
|
|
159
|
+
</td>
|
|
160
|
+
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
161
|
+
<nobr>{{row.f_user_name}}</nobr>
|
|
162
|
+
</td>
|
|
163
|
+
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
164
|
+
<nobr>{{row.f_phone}}</nobr>
|
|
165
|
+
</td>
|
|
166
|
+
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
167
|
+
<nobr>{{row.f_contact_department}}</nobr>
|
|
168
|
+
</td>
|
|
169
|
+
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
170
|
+
<nobr>{{row.f_usegasposition}}</nobr>
|
|
171
|
+
</td>
|
|
172
|
+
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
173
|
+
<nobr>{{row.f_address}}</nobr>
|
|
174
|
+
</td>
|
|
175
|
+
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
176
|
+
<nobr>{{row.f_orderremark}}</nobr>
|
|
177
|
+
</td>
|
|
178
|
+
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
179
|
+
<nobr>{{row.f_orderdate}}</nobr>
|
|
180
|
+
</td>
|
|
181
|
+
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
182
|
+
<nobr>{{row.f_device_name}}</nobr>
|
|
183
|
+
</td>
|
|
184
|
+
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
185
|
+
<nobr>{{row.f_delice_type}}</nobr>
|
|
186
|
+
</td>
|
|
187
|
+
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
188
|
+
<nobr>{{row.f_delice_num}}</nobr>
|
|
189
|
+
</td>
|
|
190
|
+
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
191
|
+
<nobr>{{row.f_usegas_amount}}</nobr>
|
|
192
|
+
</td>
|
|
193
|
+
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
194
|
+
<nobr>{{row.f_usegas_pressure}}</nobr>
|
|
195
|
+
</td>
|
|
196
|
+
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
197
|
+
<nobr>{{row.deu_money}}</nobr>
|
|
198
|
+
</td>
|
|
199
|
+
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
200
|
+
<nobr>{{row.money}}</nobr>
|
|
201
|
+
</td>
|
|
202
|
+
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
203
|
+
<nobr>{{row.money_state }}</nobr>
|
|
204
|
+
</td>
|
|
205
|
+
<td style="text-align: center;" @click="$parent.$parent.$parent.handleOrder('view', row)">
|
|
206
|
+
<nobr>{{row.money_date}}</nobr>
|
|
207
|
+
</td>
|
|
208
|
+
<td style="text-align: center;">
|
|
209
|
+
<button class="button_search button_spacing width-60"
|
|
210
|
+
@click="$parent.$parent.$parent.handleOrder('check', row)"
|
|
211
|
+
v-if="row.f_orderstate === '待审核'"
|
|
212
|
+
>审核</button>
|
|
213
|
+
</td>
|
|
214
|
+
</tr>
|
|
215
|
+
</template>
|
|
216
|
+
</data-grid>
|
|
217
|
+
</criteria-paged>
|
|
218
|
+
</div>
|
|
219
|
+
</template>
|
|
220
|
+
<script>
|
|
221
|
+
import {PagedList} from 'vue-client'
|
|
222
|
+
export default {
|
|
223
|
+
title: '预约单',
|
|
224
|
+
data () {
|
|
225
|
+
return {
|
|
226
|
+
model: new PagedList('rs/sql/getOrderApply', 20, {
|
|
227
|
+
data: {
|
|
228
|
+
f_orgstr: this.$login.f.orgid
|
|
229
|
+
}
|
|
230
|
+
}),
|
|
231
|
+
curorgid: [this.$login.f.orgid],
|
|
232
|
+
criteriaShow: false,
|
|
233
|
+
orderState: [
|
|
234
|
+
{'label': '待缴费', 'value': '待缴费'},
|
|
235
|
+
{'label': '待审核', 'value': '待审核'},
|
|
236
|
+
{'label': '预约成功', 'value': '预约成功'},
|
|
237
|
+
{'label': '预约失败', 'value': '预约失败'}
|
|
238
|
+
],
|
|
239
|
+
userType: [
|
|
240
|
+
{'label': '民用', 'value': '民用'},
|
|
241
|
+
{'label': '非民用', 'value': '非民用'}
|
|
242
|
+
],
|
|
243
|
+
userNature: [
|
|
244
|
+
{'label': '民用', 'value': '民用'},
|
|
245
|
+
{'label': '非民用', 'value': '非民用'}
|
|
246
|
+
]
|
|
247
|
+
}
|
|
248
|
+
},
|
|
249
|
+
ready () {
|
|
250
|
+
// 调用查询
|
|
251
|
+
this.search()
|
|
252
|
+
},
|
|
253
|
+
events: {
|
|
254
|
+
},
|
|
255
|
+
methods: {
|
|
256
|
+
// 处理
|
|
257
|
+
handleOrder (type, row) {
|
|
258
|
+
this.$dispatch('handleOrder', type, row)
|
|
259
|
+
},
|
|
260
|
+
search () {
|
|
261
|
+
this.$dispatch('search')
|
|
262
|
+
},
|
|
263
|
+
clear () {
|
|
264
|
+
Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
|
|
265
|
+
this.$refs.cp.$refs.cri.model[key] = null
|
|
266
|
+
})
|
|
267
|
+
},
|
|
268
|
+
getorg (val) {
|
|
269
|
+
if (val.length <= 0) {
|
|
270
|
+
return
|
|
271
|
+
}
|
|
272
|
+
this.model.params.data.orgid = val[0]
|
|
273
|
+
}
|
|
274
|
+
},
|
|
275
|
+
computed: {
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
</script>
|
|
279
|
+
<style scoped>
|
|
280
|
+
</style>
|