apply-clients 6.0.1 → 6.0.4
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/build/dev-server.js +72 -72
- package/package.json +1 -1
- package/src/apply.js +219 -219
- package/src/components/apply/base/rightview/InstallCardList2.vue +267 -268
- package/src/components/apply/base/rightview/carddetail/BuildFeeDetail2.vue +77 -77
- package/src/components/apply/base/rightview/carddetail/ChangeFeeDetail2.vue +116 -116
- package/src/components/apply/base/rightview/carddetail/ReduceFeeDetail2.vue +77 -77
- package/src/components/build/Install/ExplorationSelect.vue +308 -308
- package/src/components/build/Install/ExplorationUser.vue +315 -315
- package/src/components/build/Install/InstallFee/AddContract.vue +257 -257
- package/src/components/build/Install/InstallFee/InstallFee.vue +929 -929
- package/src/components/build/Install/InstallFee/InstallInfoSelect.vue +232 -232
- package/src/components/build/Install/InstallFee/PreparationFee.vue +223 -223
- package/src/components/build/Install/InstallFee/PrestoreFee.vue +630 -630
- package/src/components/build/Install/Process/CustomerBuildingMessage.vue +251 -251
- package/src/components/build/Install/Process/CustomerEquipmentMessage.vue +172 -172
- package/src/components/build/Install/Process/CustomerEssentialInfo.vue +1 -1
- package/src/components/build/Install/Process/CustomerFile.vue +423 -423
- package/src/components/build/Install/Process/CustomerMaterialMessage.vue +414 -414
- package/src/components/build/Install/Process/CustomerRecordMessage.vue +10 -10
- package/src/components/build/Install/Process/FeeNormeAndContratSigne.vue +376 -376
- package/src/components/build/Install/Process/MeterType.vue +379 -379
- package/src/components/build/Install/Process/PlaceControler.vue +304 -304
- package/src/components/build/Install/Process/boneng/qbj_placecontroler.vue +1 -1
- package/src/components/build/Install/Process/zhongran/ZR_Construction.vue +388 -388
- package/src/components/build/Install/Process/zhongran/ZR_CustomerEssentialInfo.vue +1 -1
- package/src/components/build/Install/Process/zhongran/ZR_MaterialPlan.vue +259 -259
- package/src/components/build/Install/Process/zhongran/ZR_MaterialPlanExamine.vue +243 -243
- package/src/components/build/Install/Process/zhongran/ZR_PlaceControler.vue +426 -426
- package/src/components/build/Install/Process/zhongran/ZR_PlaceControler_print.vue +187 -187
- package/src/components/build/Install/Process/zhongran/ZR_TestDesign.vue +441 -441
- package/src/components/build/Install/ProcessInfo/ApplyRecordCancel.vue +135 -135
- package/src/components/build/Install/bill/BillGZKMakeInfo.vue +58 -58
- package/src/components/build/Install/bill/BillQRKMakeInfo.vue +79 -79
- package/src/components/build/Install/bill/BillXSDMakeInfo.vue +206 -206
- package/src/components/build/Install/monitor/SupervisoryControl.vue +178 -178
- package/src/main.js +25 -25
- package/.gradle/3.5.1/file-changes/last-build.bin +0 -0
- package/.gradle/3.5.1/taskHistory/taskHistory.lock +0 -0
- package/.gradle/buildOutputCleanup/built.bin +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +0 -2
- package/.gradle/buildOutputCleanup/cache.properties.lock +0 -1
- package/yarn.lock +0 -8074
|
@@ -1,232 +1,232 @@
|
|
|
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="col-sm-10">
|
|
8
|
-
<div class="col-sm-2">
|
|
9
|
-
<div class="col-sm-11">
|
|
10
|
-
<input type="text" class="form-control" v-model="model.f_user_name" v-on:keyup.enter="search"
|
|
11
|
-
condition="f_user_name like '{}%'" placeholder="用户姓名">
|
|
12
|
-
</div>
|
|
13
|
-
</div>
|
|
14
|
-
<div class="col-sm-2">
|
|
15
|
-
<div class="col-sm-11">
|
|
16
|
-
<input type="text" class="form-control" v-model="model.f_apply_num" v-on:keyup.enter="search"
|
|
17
|
-
condition="f_apply_num like '{}%'" placeholder="报建编号">
|
|
18
|
-
</div>
|
|
19
|
-
</div>
|
|
20
|
-
<!-- <div class="col-sm-2">
|
|
21
|
-
<label for="f_user_name" class="col-sm-6"><nobr> 地址:</nobr></label>
|
|
22
|
-
<div class="col-sm-6">
|
|
23
|
-
<input type="text" class="form-control" v-model="model.f_address" v-on:keyup.enter="search"
|
|
24
|
-
condition="f_address like '{}%'" >
|
|
25
|
-
</div>
|
|
26
|
-
</div> -->
|
|
27
|
-
<div class="col-sm-2">
|
|
28
|
-
<!--<label for="f_user_name" class="col-sm-6"><nobr> 小区:</nobr></label>-->
|
|
29
|
-
<div class="col-sm-11">
|
|
30
|
-
<input type="text" class="form-control" v-model="model.f_residential_area" v-on:keyup.enter="search"
|
|
31
|
-
condition="f_residential_area like '{}%'" placeholder="小区">
|
|
32
|
-
</div>
|
|
33
|
-
</div>
|
|
34
|
-
<div class="col-sm-2">
|
|
35
|
-
<!--<label for="f_user_name" class="col-sm-6"><nobr> 用户类型:</nobr></label>-->
|
|
36
|
-
<div class="col-sm-11" v-if="this.$login.f.f_fengongsi.includes('西昌')">
|
|
37
|
-
<v-select :options="$parent.$parent.fapplytype" placeholder='用户类型' condition="f_user_type like '{}%'"
|
|
38
|
-
v-model="model.f_apply_type" :value.sync="model.f_apply_type" close-on-select>
|
|
39
|
-
</v-select>
|
|
40
|
-
</div>
|
|
41
|
-
<div class="col-sm-11" v-else>
|
|
42
|
-
<v-select :options="$parent.$parent.usertype" placeholder='用户类型' condition="f_user_type like '{}%'"
|
|
43
|
-
v-model="model.f_user_type" :value.sync="model.f_user_type" close-on-select>
|
|
44
|
-
</v-select>
|
|
45
|
-
</div>
|
|
46
|
-
</div>
|
|
47
|
-
<!--<div class="col-sm-2">-->
|
|
48
|
-
<!--<!–<label for="f_user_type" class="col-sm-6"><nobr> 流程状态:</nobr></label>–>-->
|
|
49
|
-
<!--<div class="col-sm-12">-->
|
|
50
|
-
<!--<v-select :options="$parent.$parent.defnameType" placeholder='流程状态'-->
|
|
51
|
-
<!--condition="act.defname like '%{}%'"-->
|
|
52
|
-
<!--v-model="model.defname" :value.sync="model.defname" close-on-select>-->
|
|
53
|
-
<!--</v-select>-->
|
|
54
|
-
<!--</div>-->
|
|
55
|
-
<!--</div>-->
|
|
56
|
-
<div class="col-sm-2">
|
|
57
|
-
<!--<label for="f_apply_type" class="col-sm-6"><nobr> 报装类型:</nobr></label>-->
|
|
58
|
-
<div class="col-sm-6">
|
|
59
|
-
<v-select :options="$parent.$parent.applytype" placeholder='报装类型' condition="f_apply_type like '{}%'"
|
|
60
|
-
v-model="model.f_apply_type" :value.sync="model.f_apply_type" close-on-select>
|
|
61
|
-
</v-select>
|
|
62
|
-
</div>
|
|
63
|
-
</div>
|
|
64
|
-
</div>
|
|
65
|
-
|
|
66
|
-
<div class="col-sm-2">
|
|
67
|
-
<center>
|
|
68
|
-
<div class="col-sm-10 pull-right">
|
|
69
|
-
<button class="btn btn-primary btn-sm" type="button" @click="search(),$parent.$parent.showpager()">
|
|
70
|
-
<span class="glyphicon glyphicon-search"></span>查询</button>
|
|
71
|
-
</div>
|
|
72
|
-
</center>
|
|
73
|
-
</div>
|
|
74
|
-
</form>
|
|
75
|
-
</criteria>
|
|
76
|
-
<data-grid :model="model" partial='list' v-ref:grid class="data-grid" is-fixed='false' style="overflow-x:auto">
|
|
77
|
-
<template partial='head'>
|
|
78
|
-
<tr class="title">
|
|
79
|
-
<th>
|
|
80
|
-
<nobr>序号</nobr>
|
|
81
|
-
</th>
|
|
82
|
-
<th>
|
|
83
|
-
<nobr>当前状态</nobr>
|
|
84
|
-
</th>
|
|
85
|
-
<th>
|
|
86
|
-
<nobr>用户姓名</nobr>
|
|
87
|
-
</th>
|
|
88
|
-
<th>
|
|
89
|
-
<nobr>小区</nobr>
|
|
90
|
-
</th>
|
|
91
|
-
<th v-if="!this.$login.f.f_fengongsi.includes('西昌')">
|
|
92
|
-
<nobr>用户类型</nobr>
|
|
93
|
-
</th>
|
|
94
|
-
<th>
|
|
95
|
-
<nobr>流程状态</nobr>
|
|
96
|
-
</th>
|
|
97
|
-
<th>
|
|
98
|
-
<nobr>报建日期</nobr>
|
|
99
|
-
</th>
|
|
100
|
-
<th>
|
|
101
|
-
<nobr>申请户数</nobr>
|
|
102
|
-
</th>
|
|
103
|
-
<th>
|
|
104
|
-
<nobr>操作</nobr>
|
|
105
|
-
</th>
|
|
106
|
-
</tr>
|
|
107
|
-
</template>
|
|
108
|
-
<template partial='body'>
|
|
109
|
-
<tr>
|
|
110
|
-
<td style="text-align: center;">
|
|
111
|
-
<nobr>{{$index+1}}</nobr>
|
|
112
|
-
</td>
|
|
113
|
-
<td style="text-align: center;">
|
|
114
|
-
<nobr>{{row.defname}}</nobr>
|
|
115
|
-
</td>
|
|
116
|
-
<td style="text-align: center;">
|
|
117
|
-
<nobr>{{row.f_user_name}}</nobr>
|
|
118
|
-
</td>
|
|
119
|
-
<td style="text-align: center;">
|
|
120
|
-
<nobr>{{row.f_residential_area}}</nobr>
|
|
121
|
-
</td>
|
|
122
|
-
<td style="text-align: center;" v-if="!this.$login.f.f_fengongsi.includes('西昌')">
|
|
123
|
-
<nobr>{{row.f_user_type}}</nobr>
|
|
124
|
-
</td>
|
|
125
|
-
<td style="text-align: center;">
|
|
126
|
-
<nobr>{{row.defname}}</nobr>
|
|
127
|
-
</td>
|
|
128
|
-
<td style="text-align: center;">
|
|
129
|
-
<nobr>{{row.f_apply_date}}</nobr>
|
|
130
|
-
</td>
|
|
131
|
-
<td style="text-align: center;">
|
|
132
|
-
<nobr>{{row.f_apply_count}}</nobr>
|
|
133
|
-
</td>
|
|
134
|
-
<td style="text-align: center;">
|
|
135
|
-
<dropdown v-if="row.defname != '完工'">
|
|
136
|
-
<button type="button" data-toggle="dropdown" style="border: 0px;background: none;">
|
|
137
|
-
<span class="glyphicon glyphicon-th-list" style="position: inherit;"></span>
|
|
138
|
-
</button>
|
|
139
|
-
<ul slot="dropdown-menu" class="dropdown-menu dropdown-menu-right">
|
|
140
|
-
<!--<li v-if="$parent.$parent.$parent.judge(row)">-->
|
|
141
|
-
<!--<a href="#" @click="$parent.$parent.$parent.$parent.reducefee(row)">费用减免</a>-->
|
|
142
|
-
<!--</li>-->
|
|
143
|
-
<li v-if="$parent.$parent.$parent.judge(row)" v-show="!this.$login.f.f_fengongsi.includes('西昌')">
|
|
144
|
-
<a href="#" @click="$parent.$parent.$parent.$parent.updatefee(row)">费用变更</a>
|
|
145
|
-
</li>
|
|
146
|
-
<li v-if="$parent.$parent.$parent.judge(row)&&$parent.$parent.$parent.$login.f.f_fengongsi.includes('彩虹')&&!row.f_apply_type.includes('个')">
|
|
147
|
-
<a href="#" @click="$parent.$parent.$parent.$parent.instalfee(row,'预付扣款')">预付扣款</a>
|
|
148
|
-
</li>
|
|
149
|
-
<li v-if="$parent.$parent.$parent.judge(row)&&row.defname.includes('合同签订')||row.defname.includes('材料计划')
|
|
150
|
-
||row.defname.includes('材料审核')||row.defname.includes('施工报建')||row.defname.includes('竣工验收') ||row.defname.includes('工程施工任务书')||row.defname.includes('资料移交')||row.defname.includes('通气点火')
|
|
151
|
-
" >
|
|
152
|
-
<a v-else href="#" @click="$parent.$parent.$parent.$parent.instalfee(row,'报建收费')">报建收费</a>
|
|
153
|
-
</li>
|
|
154
|
-
<li v-if="$parent.$parent.$parent.judge(row)" v-show="!this.$login.f.f_fengongsi.includes('西昌')">
|
|
155
|
-
<a href="#" @click="$parent.$parent.$parent.$parent.bill(row)">打印票据</a>
|
|
156
|
-
</li>
|
|
157
|
-
<li v-if="$parent.$parent.$parent.judge(row)" v-show="!this.$login.f.f_fengongsi.includes('西昌')">
|
|
158
|
-
<a href="#" @click="$parent.$parent.$parent.$parent.contract(row)">补充协议</a>
|
|
159
|
-
</li>
|
|
160
|
-
<li v-if="$parent.$parent.$parent.judge(row) && $parent.$parent.$parent.$login.f.f_fengongsi.includes('彩虹')">
|
|
161
|
-
<a href="#" @click="$parent.$parent.$parent.$parent.preparation(row)">预付款</a>
|
|
162
|
-
</li>
|
|
163
|
-
<li>
|
|
164
|
-
<a href="#" @click="$parent.$parent.$parent.$parent.stopInstall(row)">终止报建</a>
|
|
165
|
-
</li>
|
|
166
|
-
</ul>
|
|
167
|
-
</dropdown>
|
|
168
|
-
</td>
|
|
169
|
-
</tr>
|
|
170
|
-
</template>
|
|
171
|
-
</data-grid>
|
|
172
|
-
</criteria-paged>
|
|
173
|
-
</div>
|
|
174
|
-
</div>
|
|
175
|
-
</template>
|
|
176
|
-
<script>
|
|
177
|
-
import {
|
|
178
|
-
PagedList
|
|
179
|
-
} from 'vue-client'
|
|
180
|
-
|
|
181
|
-
export default {
|
|
182
|
-
title: '报建业务信息',
|
|
183
|
-
data() {
|
|
184
|
-
return {
|
|
185
|
-
usertype: this.$appdata.getParam('用户类型'),
|
|
186
|
-
defnameType: this.$appdata.getParam('流程状态'),
|
|
187
|
-
applytype: this.$appdata.getParam('报装类型'),
|
|
188
|
-
//西昌 专用
|
|
189
|
-
fapplytype: this.$appdata.getParam('用户类型'),
|
|
190
|
-
arr: ['报建登记', '现场勘探', '设计出图'],
|
|
191
|
-
showbtn: false,
|
|
192
|
-
model: new PagedList('rs/sql/checkuserfunction', 20, {
|
|
193
|
-
data: {
|
|
194
|
-
id: this.$login.f.id,
|
|
195
|
-
fengongsi: this.$login.f.f_fengongsi
|
|
196
|
-
}
|
|
197
|
-
}),
|
|
198
|
-
condition: ''
|
|
199
|
-
}
|
|
200
|
-
},
|
|
201
|
-
ready() {
|
|
202
|
-
this.$refs.cp.$refs.cri.search()
|
|
203
|
-
},
|
|
204
|
-
methods: {
|
|
205
|
-
judge(row) {
|
|
206
|
-
// let flag = false
|
|
207
|
-
// if (!this.arr.includes(row.defname)) {
|
|
208
|
-
// if ((!row.f_actualfee) || (!row.f_total_fee)) { //至少一个不存在
|
|
209
|
-
// flag = true
|
|
210
|
-
// } else { // 两个都存在
|
|
211
|
-
// if (row.f_actualfee < row.f_total_fee) {
|
|
212
|
-
// flag = true
|
|
213
|
-
// } else {
|
|
214
|
-
// flag = false
|
|
215
|
-
// }
|
|
216
|
-
// }
|
|
217
|
-
// }
|
|
218
|
-
let flag = true
|
|
219
|
-
return flag
|
|
220
|
-
},
|
|
221
|
-
clifun(row) {
|
|
222
|
-
this.$refs.cp.$refs.grid.model.rows = [row]
|
|
223
|
-
this.$refs.cp.pager = false
|
|
224
|
-
this.$dispatch('showbtn', row)
|
|
225
|
-
},
|
|
226
|
-
showpager() {
|
|
227
|
-
this.$refs.cp.pager = true
|
|
228
|
-
this.$dispatch('hiddenbtn')
|
|
229
|
-
}
|
|
230
|
-
}
|
|
231
|
-
}
|
|
232
|
-
</script>
|
|
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="col-sm-10">
|
|
8
|
+
<div class="col-sm-2">
|
|
9
|
+
<div class="col-sm-11">
|
|
10
|
+
<input type="text" class="form-control" v-model="model.f_user_name" v-on:keyup.enter="search"
|
|
11
|
+
condition="f_user_name like '{}%'" placeholder="用户姓名">
|
|
12
|
+
</div>
|
|
13
|
+
</div>
|
|
14
|
+
<div class="col-sm-2">
|
|
15
|
+
<div class="col-sm-11">
|
|
16
|
+
<input type="text" class="form-control" v-model="model.f_apply_num" v-on:keyup.enter="search"
|
|
17
|
+
condition="f_apply_num like '{}%'" placeholder="报建编号">
|
|
18
|
+
</div>
|
|
19
|
+
</div>
|
|
20
|
+
<!-- <div class="col-sm-2">
|
|
21
|
+
<label for="f_user_name" class="col-sm-6"><nobr> 地址:</nobr></label>
|
|
22
|
+
<div class="col-sm-6">
|
|
23
|
+
<input type="text" class="form-control" v-model="model.f_address" v-on:keyup.enter="search"
|
|
24
|
+
condition="f_address like '{}%'" >
|
|
25
|
+
</div>
|
|
26
|
+
</div> -->
|
|
27
|
+
<div class="col-sm-2">
|
|
28
|
+
<!--<label for="f_user_name" class="col-sm-6"><nobr> 小区:</nobr></label>-->
|
|
29
|
+
<div class="col-sm-11">
|
|
30
|
+
<input type="text" class="form-control" v-model="model.f_residential_area" v-on:keyup.enter="search"
|
|
31
|
+
condition="f_residential_area like '{}%'" placeholder="小区">
|
|
32
|
+
</div>
|
|
33
|
+
</div>
|
|
34
|
+
<div class="col-sm-2">
|
|
35
|
+
<!--<label for="f_user_name" class="col-sm-6"><nobr> 用户类型:</nobr></label>-->
|
|
36
|
+
<div class="col-sm-11" v-if="this.$login.f.f_fengongsi.includes('西昌')">
|
|
37
|
+
<v-select :options="$parent.$parent.fapplytype" placeholder='用户类型' condition="f_user_type like '{}%'"
|
|
38
|
+
v-model="model.f_apply_type" :value.sync="model.f_apply_type" close-on-select>
|
|
39
|
+
</v-select>
|
|
40
|
+
</div>
|
|
41
|
+
<div class="col-sm-11" v-else>
|
|
42
|
+
<v-select :options="$parent.$parent.usertype" placeholder='用户类型' condition="f_user_type like '{}%'"
|
|
43
|
+
v-model="model.f_user_type" :value.sync="model.f_user_type" close-on-select>
|
|
44
|
+
</v-select>
|
|
45
|
+
</div>
|
|
46
|
+
</div>
|
|
47
|
+
<!--<div class="col-sm-2">-->
|
|
48
|
+
<!--<!–<label for="f_user_type" class="col-sm-6"><nobr> 流程状态:</nobr></label>–>-->
|
|
49
|
+
<!--<div class="col-sm-12">-->
|
|
50
|
+
<!--<v-select :options="$parent.$parent.defnameType" placeholder='流程状态'-->
|
|
51
|
+
<!--condition="act.defname like '%{}%'"-->
|
|
52
|
+
<!--v-model="model.defname" :value.sync="model.defname" close-on-select>-->
|
|
53
|
+
<!--</v-select>-->
|
|
54
|
+
<!--</div>-->
|
|
55
|
+
<!--</div>-->
|
|
56
|
+
<div class="col-sm-2">
|
|
57
|
+
<!--<label for="f_apply_type" class="col-sm-6"><nobr> 报装类型:</nobr></label>-->
|
|
58
|
+
<div class="col-sm-6">
|
|
59
|
+
<v-select :options="$parent.$parent.applytype" placeholder='报装类型' condition="f_apply_type like '{}%'"
|
|
60
|
+
v-model="model.f_apply_type" :value.sync="model.f_apply_type" close-on-select>
|
|
61
|
+
</v-select>
|
|
62
|
+
</div>
|
|
63
|
+
</div>
|
|
64
|
+
</div>
|
|
65
|
+
|
|
66
|
+
<div class="col-sm-2">
|
|
67
|
+
<center>
|
|
68
|
+
<div class="col-sm-10 pull-right">
|
|
69
|
+
<button class="btn btn-primary btn-sm" type="button" @click="search(),$parent.$parent.showpager()">
|
|
70
|
+
<span class="glyphicon glyphicon-search"></span>查询</button>
|
|
71
|
+
</div>
|
|
72
|
+
</center>
|
|
73
|
+
</div>
|
|
74
|
+
</form>
|
|
75
|
+
</criteria>
|
|
76
|
+
<data-grid :model="model" partial='list' v-ref:grid class="data-grid" is-fixed='false' style="overflow-x:auto">
|
|
77
|
+
<template partial='head'>
|
|
78
|
+
<tr class="title">
|
|
79
|
+
<th>
|
|
80
|
+
<nobr>序号</nobr>
|
|
81
|
+
</th>
|
|
82
|
+
<th>
|
|
83
|
+
<nobr>当前状态</nobr>
|
|
84
|
+
</th>
|
|
85
|
+
<th>
|
|
86
|
+
<nobr>用户姓名</nobr>
|
|
87
|
+
</th>
|
|
88
|
+
<th>
|
|
89
|
+
<nobr>小区</nobr>
|
|
90
|
+
</th>
|
|
91
|
+
<th v-if="!this.$login.f.f_fengongsi.includes('西昌')">
|
|
92
|
+
<nobr>用户类型</nobr>
|
|
93
|
+
</th>
|
|
94
|
+
<th>
|
|
95
|
+
<nobr>流程状态</nobr>
|
|
96
|
+
</th>
|
|
97
|
+
<th>
|
|
98
|
+
<nobr>报建日期</nobr>
|
|
99
|
+
</th>
|
|
100
|
+
<th>
|
|
101
|
+
<nobr>申请户数</nobr>
|
|
102
|
+
</th>
|
|
103
|
+
<th>
|
|
104
|
+
<nobr>操作</nobr>
|
|
105
|
+
</th>
|
|
106
|
+
</tr>
|
|
107
|
+
</template>
|
|
108
|
+
<template partial='body'>
|
|
109
|
+
<tr>
|
|
110
|
+
<td style="text-align: center;">
|
|
111
|
+
<nobr>{{$index+1}}</nobr>
|
|
112
|
+
</td>
|
|
113
|
+
<td style="text-align: center;">
|
|
114
|
+
<nobr>{{row.defname}}</nobr>
|
|
115
|
+
</td>
|
|
116
|
+
<td style="text-align: center;">
|
|
117
|
+
<nobr>{{row.f_user_name}}</nobr>
|
|
118
|
+
</td>
|
|
119
|
+
<td style="text-align: center;">
|
|
120
|
+
<nobr>{{row.f_residential_area}}</nobr>
|
|
121
|
+
</td>
|
|
122
|
+
<td style="text-align: center;" v-if="!this.$login.f.f_fengongsi.includes('西昌')">
|
|
123
|
+
<nobr>{{row.f_user_type}}</nobr>
|
|
124
|
+
</td>
|
|
125
|
+
<td style="text-align: center;">
|
|
126
|
+
<nobr>{{row.defname}}</nobr>
|
|
127
|
+
</td>
|
|
128
|
+
<td style="text-align: center;">
|
|
129
|
+
<nobr>{{row.f_apply_date}}</nobr>
|
|
130
|
+
</td>
|
|
131
|
+
<td style="text-align: center;">
|
|
132
|
+
<nobr>{{row.f_apply_count}}</nobr>
|
|
133
|
+
</td>
|
|
134
|
+
<td style="text-align: center;">
|
|
135
|
+
<dropdown v-if="row.defname != '完工'">
|
|
136
|
+
<button type="button" data-toggle="dropdown" style="border: 0px;background: none;">
|
|
137
|
+
<span class="glyphicon glyphicon-th-list" style="position: inherit;"></span>
|
|
138
|
+
</button>
|
|
139
|
+
<ul slot="dropdown-menu" class="dropdown-menu dropdown-menu-right">
|
|
140
|
+
<!--<li v-if="$parent.$parent.$parent.judge(row)">-->
|
|
141
|
+
<!--<a href="#" @click="$parent.$parent.$parent.$parent.reducefee(row)">费用减免</a>-->
|
|
142
|
+
<!--</li>-->
|
|
143
|
+
<li v-if="$parent.$parent.$parent.judge(row)" v-show="!this.$login.f.f_fengongsi.includes('西昌')">
|
|
144
|
+
<a href="#" @click="$parent.$parent.$parent.$parent.updatefee(row)">费用变更</a>
|
|
145
|
+
</li>
|
|
146
|
+
<li v-if="$parent.$parent.$parent.judge(row)&&$parent.$parent.$parent.$login.f.f_fengongsi.includes('彩虹')&&!row.f_apply_type.includes('个')">
|
|
147
|
+
<a href="#" @click="$parent.$parent.$parent.$parent.instalfee(row,'预付扣款')">预付扣款</a>
|
|
148
|
+
</li>
|
|
149
|
+
<li v-if="$parent.$parent.$parent.judge(row)&&row.defname.includes('合同签订')||row.defname.includes('材料计划')
|
|
150
|
+
||row.defname.includes('材料审核')||row.defname.includes('施工报建')||row.defname.includes('竣工验收') ||row.defname.includes('工程施工任务书')||row.defname.includes('资料移交')||row.defname.includes('通气点火')
|
|
151
|
+
" >
|
|
152
|
+
<a v-else href="#" @click="$parent.$parent.$parent.$parent.instalfee(row,'报建收费')">报建收费</a>
|
|
153
|
+
</li>
|
|
154
|
+
<li v-if="$parent.$parent.$parent.judge(row)" v-show="!this.$login.f.f_fengongsi.includes('西昌')">
|
|
155
|
+
<a href="#" @click="$parent.$parent.$parent.$parent.bill(row)">打印票据</a>
|
|
156
|
+
</li>
|
|
157
|
+
<li v-if="$parent.$parent.$parent.judge(row)" v-show="!this.$login.f.f_fengongsi.includes('西昌')">
|
|
158
|
+
<a href="#" @click="$parent.$parent.$parent.$parent.contract(row)">补充协议</a>
|
|
159
|
+
</li>
|
|
160
|
+
<li v-if="$parent.$parent.$parent.judge(row) && $parent.$parent.$parent.$login.f.f_fengongsi.includes('彩虹')">
|
|
161
|
+
<a href="#" @click="$parent.$parent.$parent.$parent.preparation(row)">预付款</a>
|
|
162
|
+
</li>
|
|
163
|
+
<li>
|
|
164
|
+
<a href="#" @click="$parent.$parent.$parent.$parent.stopInstall(row)">终止报建</a>
|
|
165
|
+
</li>
|
|
166
|
+
</ul>
|
|
167
|
+
</dropdown>
|
|
168
|
+
</td>
|
|
169
|
+
</tr>
|
|
170
|
+
</template>
|
|
171
|
+
</data-grid>
|
|
172
|
+
</criteria-paged>
|
|
173
|
+
</div>
|
|
174
|
+
</div>
|
|
175
|
+
</template>
|
|
176
|
+
<script>
|
|
177
|
+
import {
|
|
178
|
+
PagedList
|
|
179
|
+
} from 'vue-client'
|
|
180
|
+
|
|
181
|
+
export default {
|
|
182
|
+
title: '报建业务信息',
|
|
183
|
+
data() {
|
|
184
|
+
return {
|
|
185
|
+
usertype: this.$appdata.getParam('用户类型'),
|
|
186
|
+
defnameType: this.$appdata.getParam('流程状态'),
|
|
187
|
+
applytype: this.$appdata.getParam('报装类型'),
|
|
188
|
+
//西昌 专用
|
|
189
|
+
fapplytype: this.$appdata.getParam('用户类型'),
|
|
190
|
+
arr: ['报建登记', '现场勘探', '设计出图'],
|
|
191
|
+
showbtn: false,
|
|
192
|
+
model: new PagedList('rs/sql/checkuserfunction', 20, {
|
|
193
|
+
data: {
|
|
194
|
+
id: this.$login.f.id,
|
|
195
|
+
fengongsi: this.$login.f.f_fengongsi
|
|
196
|
+
}
|
|
197
|
+
}),
|
|
198
|
+
condition: ''
|
|
199
|
+
}
|
|
200
|
+
},
|
|
201
|
+
ready() {
|
|
202
|
+
this.$refs.cp.$refs.cri.search()
|
|
203
|
+
},
|
|
204
|
+
methods: {
|
|
205
|
+
judge(row) {
|
|
206
|
+
// let flag = false
|
|
207
|
+
// if (!this.arr.includes(row.defname)) {
|
|
208
|
+
// if ((!row.f_actualfee) || (!row.f_total_fee)) { //至少一个不存在
|
|
209
|
+
// flag = true
|
|
210
|
+
// } else { // 两个都存在
|
|
211
|
+
// if (row.f_actualfee < row.f_total_fee) {
|
|
212
|
+
// flag = true
|
|
213
|
+
// } else {
|
|
214
|
+
// flag = false
|
|
215
|
+
// }
|
|
216
|
+
// }
|
|
217
|
+
// }
|
|
218
|
+
let flag = true
|
|
219
|
+
return flag
|
|
220
|
+
},
|
|
221
|
+
clifun(row) {
|
|
222
|
+
this.$refs.cp.$refs.grid.model.rows = [row]
|
|
223
|
+
this.$refs.cp.pager = false
|
|
224
|
+
this.$dispatch('showbtn', row)
|
|
225
|
+
},
|
|
226
|
+
showpager() {
|
|
227
|
+
this.$refs.cp.pager = true
|
|
228
|
+
this.$dispatch('hiddenbtn')
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
</script>
|