apply-clients 5.0.37-2 → 5.0.37-3
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 +111 -111
- package/src/components/app_apply/ServiceControl.vue +687 -687
- package/src/components/product/EngineeringManagement/EngineerUpload.vue +304 -304
- package/src/components/product/EngineeringManagement/EngineeringSelect.vue +586 -586
- package/src/components/product/EngineeringSupervisory/EngineeringApplyStopInfo.vue +281 -281
- package/src/components/product/EngineeringSupervisory/EngineeringSupervisoryControl.vue +132 -132
- package/src/components/product/EngineeringSupervisory/EngineeringSupervisoryList.vue +340 -340
- package/src/components/product/EngineeringSupervisory/EngineeringSupervisoryServiceControl.vue +490 -490
- package/src/components/product/Function/InstallInfoSelect.vue +255 -255
- package/src/components/product/Function/functions/BuyerMessage.vue +512 -512
- package/src/components/product/Process/Processes/Service/ApplyChargeSearch.vue +392 -392
- package/src/components/product/Process/Processes/Service/ServiceControl.vue +2200 -2200
- package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +556 -559
- package/src/components/product/stopInfo/ApplyStopInfo.vue +281 -281
- package/src/ezhouAndroid.js +48 -48
|
@@ -1,255 +1,255 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="d1 flex">
|
|
3
|
-
<div class="left col-sm-12">
|
|
4
|
-
<criteria-paged :model="model" v-ref:cp>
|
|
5
|
-
<criteria partial='criteria' @condition-changed='search' v-ref:cri style="padding: 20px;background-color: #f6f6f6;">
|
|
6
|
-
<form novalidate class="" partial>
|
|
7
|
-
<div class="row">
|
|
8
|
-
<div class="col-sm-2">
|
|
9
|
-
<label class="col-sm-4 control-label">联系人</label>
|
|
10
|
-
<div class="col-sm-8">
|
|
11
|
-
<input type="text" class="form-control" v-model="model.f_user_name" v-on:keyup.enter="search"
|
|
12
|
-
condition="f_user_name like '{}%'" placeholder="联系人">
|
|
13
|
-
</div>
|
|
14
|
-
</div>
|
|
15
|
-
<div class="col-sm-2">
|
|
16
|
-
<label class="col-sm-4 control-label">项目名称</label>
|
|
17
|
-
<div class="col-sm-8">
|
|
18
|
-
<input type="text" class="form-control" v-model="model.f_entry_name" v-on:keyup.enter="search"
|
|
19
|
-
condition="f_entry_name like '{}%'" placeholder="项目名称">
|
|
20
|
-
</div>
|
|
21
|
-
</div>
|
|
22
|
-
<div class="col-sm-2">
|
|
23
|
-
<label class="col-sm-4 control-label">报建编号</label>
|
|
24
|
-
<div class="col-sm-8">
|
|
25
|
-
<input type="text" class="form-control" v-model="model.f_apply_num" v-on:keyup.enter="search"
|
|
26
|
-
condition="f_apply_num like '{}%'" placeholder="报建编号">
|
|
27
|
-
</div>
|
|
28
|
-
</div>
|
|
29
|
-
<!-- <div class="col-sm-2">
|
|
30
|
-
<label for="f_user_name" class="col-sm-6"><nobr> 地址:</nobr></label>
|
|
31
|
-
<div class="col-sm-6">
|
|
32
|
-
<input type="text" class="form-control" v-model="model.f_address" v-on:keyup.enter="search"
|
|
33
|
-
condition="f_address like '{}%'" >
|
|
34
|
-
</div>
|
|
35
|
-
</div> -->
|
|
36
|
-
<div class="col-sm-2">
|
|
37
|
-
<!--<label for="f_user_name" class="col-sm-6"><nobr> 小区:</nobr></label>-->
|
|
38
|
-
<label class="col-sm-4 control-label">小区</label>
|
|
39
|
-
<div class="col-sm-8">
|
|
40
|
-
<input type="text" class="form-control" v-model="model.f_residential_area" v-on:keyup.enter="search"
|
|
41
|
-
condition="f_residential_area like '{}%'" placeholder="小区">
|
|
42
|
-
</div>
|
|
43
|
-
</div>
|
|
44
|
-
<div class="col-sm-2 ">
|
|
45
|
-
<label class="col-sm-4 control-label">开始日期</label>
|
|
46
|
-
<div class="col-sm-8">
|
|
47
|
-
<datepicker @change="$dispatch('setQueryCondition',model)" id="startDate" placeholder="开始日期"
|
|
48
|
-
width='100%'
|
|
49
|
-
v-model="model.startDate"
|
|
50
|
-
:value.sync="model.startDate"
|
|
51
|
-
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
52
|
-
:show-reset-button="true"
|
|
53
|
-
condition="f_apply_date >= '{}'">
|
|
54
|
-
</datepicker>
|
|
55
|
-
</div>
|
|
56
|
-
</div>
|
|
57
|
-
<div class="col-sm-2">
|
|
58
|
-
<button class="btn btn-primary btn-sm" type="button" @click="search(),$parent.$parent.showpager()" style="margin-left:3%">
|
|
59
|
-
<span class="glyphicon glyphicon-search"></span>查询</button>
|
|
60
|
-
<button class="btn-primary btn btn-sm button_spacing" @click.prevent="$parent.$parent.clear()">清空</button>
|
|
61
|
-
</div>
|
|
62
|
-
</div>
|
|
63
|
-
<div class="row" style="margin-top:5px;">
|
|
64
|
-
<div class="col-sm-2">
|
|
65
|
-
<label class="col-sm-4 control-label">终止日期</label>
|
|
66
|
-
<div class="col-sm-8">
|
|
67
|
-
<datepicker @change="$dispatch('setQueryCondition',model)" id="endDate" placeholder="终止日期"
|
|
68
|
-
width='100%'
|
|
69
|
-
v-model="model.endDate"
|
|
70
|
-
:value.sync="model.endDate"
|
|
71
|
-
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
72
|
-
:show-reset-button="true"
|
|
73
|
-
condition="f_apply_date <= '{}'">
|
|
74
|
-
</datepicker>
|
|
75
|
-
</div>
|
|
76
|
-
</div>
|
|
77
|
-
<div class="col-sm-2">
|
|
78
|
-
<label class="col-sm-4 control-label">用户类型</label>
|
|
79
|
-
<div class="col-sm-8">
|
|
80
|
-
<v-select :options="$parent.$parent.usertype"
|
|
81
|
-
placeholder='用户类型'
|
|
82
|
-
condition="f_user_type like '{}'"
|
|
83
|
-
:width="100"
|
|
84
|
-
v-model="model.f_user_type"
|
|
85
|
-
style="width: 100%"
|
|
86
|
-
:value.sync="model.f_user_type" close-on-select>
|
|
87
|
-
</v-select>
|
|
88
|
-
</div>
|
|
89
|
-
</div>
|
|
90
|
-
<div class="col-sm-2">
|
|
91
|
-
<label class="col-sm-4 control-label">报建类型</label>
|
|
92
|
-
<div class="col-sm-8">
|
|
93
|
-
<v-select :options="$parent.$parent.applytype"
|
|
94
|
-
placeholder='报建类型'
|
|
95
|
-
condition="f_apply_type like '{}%'"
|
|
96
|
-
:width="100"
|
|
97
|
-
v-model="model.f_apply_type"
|
|
98
|
-
:value.sync="model.f_apply_type"
|
|
99
|
-
style="width: 100%" close-on-select>
|
|
100
|
-
</v-select>
|
|
101
|
-
</div>
|
|
102
|
-
</div>
|
|
103
|
-
</div>
|
|
104
|
-
|
|
105
|
-
</form>
|
|
106
|
-
</criteria>
|
|
107
|
-
<data-grid :model="model" partial='list' v-ref:grid class="list_area" is-fixed='false' style="margin-top: -21px;">
|
|
108
|
-
<template partial='head' style="margin-top: 20px;">
|
|
109
|
-
<tr class="title">
|
|
110
|
-
<th>
|
|
111
|
-
<nobr>序号</nobr>
|
|
112
|
-
</th>
|
|
113
|
-
<th>
|
|
114
|
-
<nobr>项目名称</nobr>
|
|
115
|
-
</th>
|
|
116
|
-
<th>
|
|
117
|
-
<nobr>报建编号</nobr>
|
|
118
|
-
</th>
|
|
119
|
-
<th>
|
|
120
|
-
<nobr>联系人</nobr>
|
|
121
|
-
</th>
|
|
122
|
-
<th>
|
|
123
|
-
<nobr>电话</nobr>
|
|
124
|
-
</th>
|
|
125
|
-
<th>
|
|
126
|
-
<nobr>小区</nobr>
|
|
127
|
-
</th>
|
|
128
|
-
<th v-if="!this.$login.f.f_fengongsi.includes('中燃')">
|
|
129
|
-
<nobr>用户类型</nobr>
|
|
130
|
-
</th>
|
|
131
|
-
<th>
|
|
132
|
-
<nobr>流程状态</nobr>
|
|
133
|
-
</th>
|
|
134
|
-
<th>
|
|
135
|
-
<nobr>报建类型</nobr>
|
|
136
|
-
</th>
|
|
137
|
-
<th>
|
|
138
|
-
<nobr>报建日期</nobr>
|
|
139
|
-
</th>
|
|
140
|
-
<th>
|
|
141
|
-
<nobr>安装户数</nobr>
|
|
142
|
-
</th>
|
|
143
|
-
<th>
|
|
144
|
-
<nobr>操作</nobr>
|
|
145
|
-
</th>
|
|
146
|
-
</tr>
|
|
147
|
-
</template>
|
|
148
|
-
<template partial='body'>
|
|
149
|
-
<tr>
|
|
150
|
-
<td style="text-align: center;">
|
|
151
|
-
<nobr>{{$index+1}}</nobr>
|
|
152
|
-
</td>
|
|
153
|
-
<td style="text-align: center;">
|
|
154
|
-
<nobr>{{row.f_entry_name}}</nobr>
|
|
155
|
-
</td>
|
|
156
|
-
<td style="text-align: center;">
|
|
157
|
-
<nobr>{{row.f_apply_num}}</nobr>
|
|
158
|
-
</td>
|
|
159
|
-
<td style="text-align: center;">
|
|
160
|
-
<nobr>{{row.f_user_name}}</nobr>
|
|
161
|
-
</td>
|
|
162
|
-
<td style="text-align: center;">
|
|
163
|
-
<nobr>{{row.f_phone}}</nobr>
|
|
164
|
-
</td>
|
|
165
|
-
<td style="text-align: center;">
|
|
166
|
-
<nobr>{{row.f_residential_area}}</nobr>
|
|
167
|
-
</td>
|
|
168
|
-
<td style="text-align: center;" v-if="!this.$login.f.f_fengongsi.includes('中燃')">
|
|
169
|
-
<nobr>{{row.f_user_type}}</nobr>
|
|
170
|
-
</td>
|
|
171
|
-
<td style="text-align: center;">
|
|
172
|
-
<nobr>{{row.defname}}</nobr>
|
|
173
|
-
</td>
|
|
174
|
-
<td style="text-align: center;">
|
|
175
|
-
<nobr>{{row.f_apply_type}}</nobr>
|
|
176
|
-
</td>
|
|
177
|
-
<td style="text-align: center;">
|
|
178
|
-
<nobr>{{row.f_apply_date}}</nobr>
|
|
179
|
-
</td>
|
|
180
|
-
<td style="text-align: center;">
|
|
181
|
-
<nobr>{{row.f_install_num}}</nobr>
|
|
182
|
-
</td>
|
|
183
|
-
<td style="text-align: center;">
|
|
184
|
-
<dropdown>
|
|
185
|
-
<button type="button" data-toggle="dropdown" style="border: 0px;background: none;">
|
|
186
|
-
<span class="glyphicon glyphicon-th-list" style="position: inherit;"></span>
|
|
187
|
-
</button>
|
|
188
|
-
<ul slot="dropdown-menu" class="dropdown-menu dropdown-menu-right">
|
|
189
|
-
<li v-for="(index,func) in $function_vue">
|
|
190
|
-
<a href="#" @click="$dispatch('func',func,row)">{{func.title}}</a>
|
|
191
|
-
</li>
|
|
192
|
-
</ul>
|
|
193
|
-
</dropdown>
|
|
194
|
-
</td>
|
|
195
|
-
</tr>
|
|
196
|
-
</template>
|
|
197
|
-
</data-grid>
|
|
198
|
-
</criteria-paged>
|
|
199
|
-
</div>
|
|
200
|
-
</div>
|
|
201
|
-
</template>
|
|
202
|
-
<script>
|
|
203
|
-
import {
|
|
204
|
-
PagedList
|
|
205
|
-
} from 'vue-client'
|
|
206
|
-
|
|
207
|
-
export default {
|
|
208
|
-
title: '报建业务信息',
|
|
209
|
-
data() {
|
|
210
|
-
return {
|
|
211
|
-
usertype: this.$appdata.getParam('用户类型'),
|
|
212
|
-
defnameType: this.$appdata.getParam('流程状态'),
|
|
213
|
-
applytype: this.$appdata.getParam('报建类型'),
|
|
214
|
-
//中燃 专用
|
|
215
|
-
fapplytype: this.$appdata.getParam('用户类型'),
|
|
216
|
-
showbtn: false,
|
|
217
|
-
model: new PagedList('rs/sql/checkuserfunction', 20, {
|
|
218
|
-
data: {
|
|
219
|
-
id: this.$login.f.id,
|
|
220
|
-
fengongsi: this.$login.f.f_fengongsi,
|
|
221
|
-
f_product_id: 0
|
|
222
|
-
}
|
|
223
|
-
}),
|
|
224
|
-
condition: ''
|
|
225
|
-
}
|
|
226
|
-
},
|
|
227
|
-
ready() {
|
|
228
|
-
this.$refs.cp.$refs.cri.search()
|
|
229
|
-
},
|
|
230
|
-
methods: {
|
|
231
|
-
clear(){
|
|
232
|
-
Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
|
|
233
|
-
this.$refs.cp.$refs.cri.model[key] = []
|
|
234
|
-
})
|
|
235
|
-
},
|
|
236
|
-
clifun(row) {
|
|
237
|
-
this.$refs.cp.$refs.grid.model.rows = [row]
|
|
238
|
-
this.$refs.cp.pager = false
|
|
239
|
-
this.$dispatch('showbtn', row)
|
|
240
|
-
},
|
|
241
|
-
showpager() {
|
|
242
|
-
this.$refs.cp.pager = true
|
|
243
|
-
this.$dispatch('hiddenbtn')
|
|
244
|
-
}
|
|
245
|
-
}
|
|
246
|
-
}
|
|
247
|
-
</script>
|
|
248
|
-
<style scoped>
|
|
249
|
-
label {
|
|
250
|
-
display: flex;
|
|
251
|
-
justify-content:center;
|
|
252
|
-
align-items:Center;
|
|
253
|
-
padding-top: 8px;
|
|
254
|
-
}
|
|
255
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="d1 flex">
|
|
3
|
+
<div class="left col-sm-12">
|
|
4
|
+
<criteria-paged :model="model" v-ref:cp>
|
|
5
|
+
<criteria partial='criteria' @condition-changed='search' v-ref:cri style="padding: 20px;background-color: #f6f6f6;">
|
|
6
|
+
<form novalidate class="" partial>
|
|
7
|
+
<div class="row">
|
|
8
|
+
<div class="col-sm-2">
|
|
9
|
+
<label class="col-sm-4 control-label">联系人</label>
|
|
10
|
+
<div class="col-sm-8">
|
|
11
|
+
<input type="text" class="form-control" v-model="model.f_user_name" v-on:keyup.enter="search"
|
|
12
|
+
condition="f_user_name like '{}%'" placeholder="联系人">
|
|
13
|
+
</div>
|
|
14
|
+
</div>
|
|
15
|
+
<div class="col-sm-2">
|
|
16
|
+
<label class="col-sm-4 control-label">项目名称</label>
|
|
17
|
+
<div class="col-sm-8">
|
|
18
|
+
<input type="text" class="form-control" v-model="model.f_entry_name" v-on:keyup.enter="search"
|
|
19
|
+
condition="f_entry_name like '{}%'" placeholder="项目名称">
|
|
20
|
+
</div>
|
|
21
|
+
</div>
|
|
22
|
+
<div class="col-sm-2">
|
|
23
|
+
<label class="col-sm-4 control-label">报建编号</label>
|
|
24
|
+
<div class="col-sm-8">
|
|
25
|
+
<input type="text" class="form-control" v-model="model.f_apply_num" v-on:keyup.enter="search"
|
|
26
|
+
condition="f_apply_num like '{}%'" placeholder="报建编号">
|
|
27
|
+
</div>
|
|
28
|
+
</div>
|
|
29
|
+
<!-- <div class="col-sm-2">
|
|
30
|
+
<label for="f_user_name" class="col-sm-6"><nobr> 地址:</nobr></label>
|
|
31
|
+
<div class="col-sm-6">
|
|
32
|
+
<input type="text" class="form-control" v-model="model.f_address" v-on:keyup.enter="search"
|
|
33
|
+
condition="f_address like '{}%'" >
|
|
34
|
+
</div>
|
|
35
|
+
</div> -->
|
|
36
|
+
<div class="col-sm-2">
|
|
37
|
+
<!--<label for="f_user_name" class="col-sm-6"><nobr> 小区:</nobr></label>-->
|
|
38
|
+
<label class="col-sm-4 control-label">小区</label>
|
|
39
|
+
<div class="col-sm-8">
|
|
40
|
+
<input type="text" class="form-control" v-model="model.f_residential_area" v-on:keyup.enter="search"
|
|
41
|
+
condition="f_residential_area like '{}%'" placeholder="小区">
|
|
42
|
+
</div>
|
|
43
|
+
</div>
|
|
44
|
+
<div class="col-sm-2 ">
|
|
45
|
+
<label class="col-sm-4 control-label">开始日期</label>
|
|
46
|
+
<div class="col-sm-8">
|
|
47
|
+
<datepicker @change="$dispatch('setQueryCondition',model)" id="startDate" placeholder="开始日期"
|
|
48
|
+
width='100%'
|
|
49
|
+
v-model="model.startDate"
|
|
50
|
+
:value.sync="model.startDate"
|
|
51
|
+
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
52
|
+
:show-reset-button="true"
|
|
53
|
+
condition="f_apply_date >= '{}'">
|
|
54
|
+
</datepicker>
|
|
55
|
+
</div>
|
|
56
|
+
</div>
|
|
57
|
+
<div class="col-sm-2">
|
|
58
|
+
<button class="btn btn-primary btn-sm" type="button" @click="search(),$parent.$parent.showpager()" style="margin-left:3%">
|
|
59
|
+
<span class="glyphicon glyphicon-search"></span>查询</button>
|
|
60
|
+
<button class="btn-primary btn btn-sm button_spacing" @click.prevent="$parent.$parent.clear()">清空</button>
|
|
61
|
+
</div>
|
|
62
|
+
</div>
|
|
63
|
+
<div class="row" style="margin-top:5px;">
|
|
64
|
+
<div class="col-sm-2">
|
|
65
|
+
<label class="col-sm-4 control-label">终止日期</label>
|
|
66
|
+
<div class="col-sm-8">
|
|
67
|
+
<datepicker @change="$dispatch('setQueryCondition',model)" id="endDate" placeholder="终止日期"
|
|
68
|
+
width='100%'
|
|
69
|
+
v-model="model.endDate"
|
|
70
|
+
:value.sync="model.endDate"
|
|
71
|
+
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
72
|
+
:show-reset-button="true"
|
|
73
|
+
condition="f_apply_date <= '{}'">
|
|
74
|
+
</datepicker>
|
|
75
|
+
</div>
|
|
76
|
+
</div>
|
|
77
|
+
<div class="col-sm-2">
|
|
78
|
+
<label class="col-sm-4 control-label">用户类型</label>
|
|
79
|
+
<div class="col-sm-8">
|
|
80
|
+
<v-select :options="$parent.$parent.usertype"
|
|
81
|
+
placeholder='用户类型'
|
|
82
|
+
condition="f_user_type like '{}'"
|
|
83
|
+
:width="100"
|
|
84
|
+
v-model="model.f_user_type"
|
|
85
|
+
style="width: 100%"
|
|
86
|
+
:value.sync="model.f_user_type" close-on-select>
|
|
87
|
+
</v-select>
|
|
88
|
+
</div>
|
|
89
|
+
</div>
|
|
90
|
+
<div class="col-sm-2">
|
|
91
|
+
<label class="col-sm-4 control-label">报建类型</label>
|
|
92
|
+
<div class="col-sm-8">
|
|
93
|
+
<v-select :options="$parent.$parent.applytype"
|
|
94
|
+
placeholder='报建类型'
|
|
95
|
+
condition="f_apply_type like '{}%'"
|
|
96
|
+
:width="100"
|
|
97
|
+
v-model="model.f_apply_type"
|
|
98
|
+
:value.sync="model.f_apply_type"
|
|
99
|
+
style="width: 100%" close-on-select>
|
|
100
|
+
</v-select>
|
|
101
|
+
</div>
|
|
102
|
+
</div>
|
|
103
|
+
</div>
|
|
104
|
+
|
|
105
|
+
</form>
|
|
106
|
+
</criteria>
|
|
107
|
+
<data-grid :model="model" partial='list' v-ref:grid class="list_area" is-fixed='false' style="margin-top: -21px;">
|
|
108
|
+
<template partial='head' style="margin-top: 20px;">
|
|
109
|
+
<tr class="title">
|
|
110
|
+
<th>
|
|
111
|
+
<nobr>序号</nobr>
|
|
112
|
+
</th>
|
|
113
|
+
<th>
|
|
114
|
+
<nobr>项目名称</nobr>
|
|
115
|
+
</th>
|
|
116
|
+
<th>
|
|
117
|
+
<nobr>报建编号</nobr>
|
|
118
|
+
</th>
|
|
119
|
+
<th>
|
|
120
|
+
<nobr>联系人</nobr>
|
|
121
|
+
</th>
|
|
122
|
+
<th>
|
|
123
|
+
<nobr>电话</nobr>
|
|
124
|
+
</th>
|
|
125
|
+
<th>
|
|
126
|
+
<nobr>小区</nobr>
|
|
127
|
+
</th>
|
|
128
|
+
<th v-if="!this.$login.f.f_fengongsi.includes('中燃')">
|
|
129
|
+
<nobr>用户类型</nobr>
|
|
130
|
+
</th>
|
|
131
|
+
<th>
|
|
132
|
+
<nobr>流程状态</nobr>
|
|
133
|
+
</th>
|
|
134
|
+
<th>
|
|
135
|
+
<nobr>报建类型</nobr>
|
|
136
|
+
</th>
|
|
137
|
+
<th>
|
|
138
|
+
<nobr>报建日期</nobr>
|
|
139
|
+
</th>
|
|
140
|
+
<th>
|
|
141
|
+
<nobr>安装户数</nobr>
|
|
142
|
+
</th>
|
|
143
|
+
<th>
|
|
144
|
+
<nobr>操作</nobr>
|
|
145
|
+
</th>
|
|
146
|
+
</tr>
|
|
147
|
+
</template>
|
|
148
|
+
<template partial='body'>
|
|
149
|
+
<tr>
|
|
150
|
+
<td style="text-align: center;">
|
|
151
|
+
<nobr>{{$index+1}}</nobr>
|
|
152
|
+
</td>
|
|
153
|
+
<td style="text-align: center;">
|
|
154
|
+
<nobr>{{row.f_entry_name}}</nobr>
|
|
155
|
+
</td>
|
|
156
|
+
<td style="text-align: center;">
|
|
157
|
+
<nobr>{{row.f_apply_num}}</nobr>
|
|
158
|
+
</td>
|
|
159
|
+
<td style="text-align: center;">
|
|
160
|
+
<nobr>{{row.f_user_name}}</nobr>
|
|
161
|
+
</td>
|
|
162
|
+
<td style="text-align: center;">
|
|
163
|
+
<nobr>{{row.f_phone}}</nobr>
|
|
164
|
+
</td>
|
|
165
|
+
<td style="text-align: center;">
|
|
166
|
+
<nobr>{{row.f_residential_area}}</nobr>
|
|
167
|
+
</td>
|
|
168
|
+
<td style="text-align: center;" v-if="!this.$login.f.f_fengongsi.includes('中燃')">
|
|
169
|
+
<nobr>{{row.f_user_type}}</nobr>
|
|
170
|
+
</td>
|
|
171
|
+
<td style="text-align: center;">
|
|
172
|
+
<nobr>{{row.defname}}</nobr>
|
|
173
|
+
</td>
|
|
174
|
+
<td style="text-align: center;">
|
|
175
|
+
<nobr>{{row.f_apply_type}}</nobr>
|
|
176
|
+
</td>
|
|
177
|
+
<td style="text-align: center;">
|
|
178
|
+
<nobr>{{row.f_apply_date}}</nobr>
|
|
179
|
+
</td>
|
|
180
|
+
<td style="text-align: center;">
|
|
181
|
+
<nobr>{{row.f_install_num}}</nobr>
|
|
182
|
+
</td>
|
|
183
|
+
<td style="text-align: center;">
|
|
184
|
+
<dropdown>
|
|
185
|
+
<button type="button" data-toggle="dropdown" style="border: 0px;background: none;">
|
|
186
|
+
<span class="glyphicon glyphicon-th-list" style="position: inherit;"></span>
|
|
187
|
+
</button>
|
|
188
|
+
<ul slot="dropdown-menu" class="dropdown-menu dropdown-menu-right">
|
|
189
|
+
<li v-for="(index,func) in $function_vue">
|
|
190
|
+
<a href="#" @click="$dispatch('func',func,row)">{{func.title}}</a>
|
|
191
|
+
</li>
|
|
192
|
+
</ul>
|
|
193
|
+
</dropdown>
|
|
194
|
+
</td>
|
|
195
|
+
</tr>
|
|
196
|
+
</template>
|
|
197
|
+
</data-grid>
|
|
198
|
+
</criteria-paged>
|
|
199
|
+
</div>
|
|
200
|
+
</div>
|
|
201
|
+
</template>
|
|
202
|
+
<script>
|
|
203
|
+
import {
|
|
204
|
+
PagedList
|
|
205
|
+
} from 'vue-client'
|
|
206
|
+
|
|
207
|
+
export default {
|
|
208
|
+
title: '报建业务信息',
|
|
209
|
+
data() {
|
|
210
|
+
return {
|
|
211
|
+
usertype: this.$appdata.getParam('用户类型'),
|
|
212
|
+
defnameType: this.$appdata.getParam('流程状态'),
|
|
213
|
+
applytype: this.$appdata.getParam('报建类型'),
|
|
214
|
+
//中燃 专用
|
|
215
|
+
fapplytype: this.$appdata.getParam('用户类型'),
|
|
216
|
+
showbtn: false,
|
|
217
|
+
model: new PagedList('rs/sql/checkuserfunction', 20, {
|
|
218
|
+
data: {
|
|
219
|
+
id: this.$login.f.id,
|
|
220
|
+
fengongsi: this.$login.f.f_fengongsi,
|
|
221
|
+
f_product_id: 0
|
|
222
|
+
}
|
|
223
|
+
}),
|
|
224
|
+
condition: ''
|
|
225
|
+
}
|
|
226
|
+
},
|
|
227
|
+
ready() {
|
|
228
|
+
this.$refs.cp.$refs.cri.search()
|
|
229
|
+
},
|
|
230
|
+
methods: {
|
|
231
|
+
clear(){
|
|
232
|
+
Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
|
|
233
|
+
this.$refs.cp.$refs.cri.model[key] = []
|
|
234
|
+
})
|
|
235
|
+
},
|
|
236
|
+
clifun(row) {
|
|
237
|
+
this.$refs.cp.$refs.grid.model.rows = [row]
|
|
238
|
+
this.$refs.cp.pager = false
|
|
239
|
+
this.$dispatch('showbtn', row)
|
|
240
|
+
},
|
|
241
|
+
showpager() {
|
|
242
|
+
this.$refs.cp.pager = true
|
|
243
|
+
this.$dispatch('hiddenbtn')
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
</script>
|
|
248
|
+
<style scoped>
|
|
249
|
+
label {
|
|
250
|
+
display: flex;
|
|
251
|
+
justify-content:center;
|
|
252
|
+
align-items:Center;
|
|
253
|
+
padding-top: 8px;
|
|
254
|
+
}
|
|
255
|
+
</style>
|