apply-clients 4.1.5 → 4.1.7-weinan
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/index.html +30 -30
- package/package.json +7 -5
- package/src/apply.js +15 -1
- package/src/applyAndroid.js +41 -39
- package/src/components/app_apply/AppChargeManagement.vue +584 -0
- package/src/components/app_apply/ApplyInfo.vue +56 -56
- package/src/components/app_apply/ApplyToDoList.vue +148 -165
- package/src/components/app_apply/PlaceControler.vue +258 -258
- package/src/components/app_apply/ServiceControl.vue +292 -267
- package/src/components/app_apply/ServiceView.vue +361 -355
- package/src/components/product/ApplyCharge/ApplyChargeList.vue +4 -4
- package/src/components/product/Function/InstallInfoSelect.vue +40 -27
- package/src/components/product/Function/StopApplyCrrdList.vue +1 -1
- package/src/components/product/Function/functions/StopInstall.vue +7 -1
- package/src/components/product/Process/ExplorationSelect.vue +56 -38
- package/src/components/product/Process/Processes/InstallationDetails.vue +276 -246
- package/src/components/product/Process/Processes/UserFireInfo.vue +409 -0
- package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +1555 -222
- package/src/components/product/Process/Processes/addressAndUserinfoManagementPro.vue +1221 -0
- package/src/components/product/Process/Processes/chargeManagement.vue +47 -53
- package/src/components/product/Process/Processes/devicesDetails.vue +834 -0
- package/src/components/product/Process/Processes/materialshoufei.vue +182 -0
- package/src/components/product/Process/Processes/printCharge.vue +4 -4
- package/src/components/product/Process/Processes/recordcancel.vue +50 -50
- package/src/components/product/Process/Processes/selectUserinfo.vue +199 -0
- package/src/components/product/Process/Processes/splitMaterial.vue +358 -0
- package/src/components/product/Process/Service/ServiceControl.vue +978 -587
- package/src/components/product/Process/ShowBackReason.vue +1 -0
- package/src/components/product/ServiceView.vue +802 -779
- package/src/components/product/Stop/StopApply.vue +101 -0
- package/src/components/product/Stop/StopApplyList.vue +257 -0
- package/src/components/product/Supervisory/SupervisoryControl.vue +7 -4
- package/src/components/product/Supervisory/SupervisoryList.vue +40 -27
- package/src/components/product/Supervisory/SupervisoryhCart.vue +0 -7
- package/src/components/product/Test.vue +8 -4
- package/src/components/product/VueUtils/ApplyUpload.vue +4 -4
- package/src/main.js +25 -23
- package/static/images/lefticon//347/237/251/345/275/2421183.png +0 -0
- package/dist.rar +0 -0
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="flex-row">
|
|
3
|
+
<div class="basic-main">
|
|
4
|
+
<stop-apply-list v-ref:query></stop-apply-list>
|
|
5
|
+
</div>
|
|
6
|
+
|
|
7
|
+
<modal v-if="showModal" :show.sync="showModal" backdrop="false" large>
|
|
8
|
+
<header slot="modal-header" class="modal-header">
|
|
9
|
+
<button type="button" class="close" @click="closeModal()"><span>×</span></button>
|
|
10
|
+
<span class="modal-title"><font size="3">撤销</font></span>
|
|
11
|
+
</header>
|
|
12
|
+
<article slot="modal-body" class="modal-body clearfix">
|
|
13
|
+
<div :class="data.f_cancel_reason ? '' : 'has-error'" class="form-group">
|
|
14
|
+
<label class="control-label-justify control-label col-sm-1">撤销原因</label>
|
|
15
|
+
<div class="col-sm-9">
|
|
16
|
+
<textarea
|
|
17
|
+
class="form-control input_view" style="width: 100%" rows="5"
|
|
18
|
+
v-model="data.f_cancel_reason" :value="data.f_cancel_reason"
|
|
19
|
+
></textarea>
|
|
20
|
+
</div>
|
|
21
|
+
</div>
|
|
22
|
+
</article>
|
|
23
|
+
<footer slot="modal-footer" class="modal-footer">
|
|
24
|
+
<button :class="!data.f_cancel_reason ? 'btn btn-default':'btn btn-primary'"
|
|
25
|
+
:disabled="!data.f_cancel_reason" type="button" @click="confirmModal()">
|
|
26
|
+
确认
|
|
27
|
+
</button>
|
|
28
|
+
</footer>
|
|
29
|
+
</modal>
|
|
30
|
+
</div>
|
|
31
|
+
</template>
|
|
32
|
+
|
|
33
|
+
<script>
|
|
34
|
+
export default {
|
|
35
|
+
title: '终止报建',
|
|
36
|
+
data () {
|
|
37
|
+
return {
|
|
38
|
+
showModal: false,
|
|
39
|
+
data: null
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
ready () {
|
|
43
|
+
},
|
|
44
|
+
methods: {
|
|
45
|
+
closeModal () {
|
|
46
|
+
this.showModal = false
|
|
47
|
+
this.data = null
|
|
48
|
+
|
|
49
|
+
this.$refs.query.$refs.cp.$refs.cri.search()
|
|
50
|
+
},
|
|
51
|
+
async confirmModal () {
|
|
52
|
+
let data = {
|
|
53
|
+
data: this.data,
|
|
54
|
+
user: this.$login.f
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
let res = await this.$resetpost(
|
|
58
|
+
`rs/logic/cancelStopApply`,
|
|
59
|
+
{data: data},
|
|
60
|
+
{resolveMsg: null, rejectMsg: '撤销失败!!!'}
|
|
61
|
+
)
|
|
62
|
+
|
|
63
|
+
this.closeModal()
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
events: {
|
|
67
|
+
'search' () {
|
|
68
|
+
this.$refs.query.$refs.cp.$refs.cri.search()
|
|
69
|
+
},
|
|
70
|
+
'cancelStopApply' (row) {
|
|
71
|
+
this.data = row
|
|
72
|
+
|
|
73
|
+
this.showModal = true
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
</script>
|
|
78
|
+
|
|
79
|
+
<style scoped>
|
|
80
|
+
.control-label-justify {
|
|
81
|
+
display: inline-block;
|
|
82
|
+
vertical-align: top;
|
|
83
|
+
width: 110px;
|
|
84
|
+
text-align: justify;
|
|
85
|
+
font-family: PingFang-SC-Bold;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.control-label-justify::after {
|
|
89
|
+
content: "";
|
|
90
|
+
display: inline-block;
|
|
91
|
+
width: 100%;
|
|
92
|
+
overflow: hidden;
|
|
93
|
+
height: 0;
|
|
94
|
+
}
|
|
95
|
+
.clearfix:after,.clearfix:before{
|
|
96
|
+
display: table;
|
|
97
|
+
}
|
|
98
|
+
.clearfix:after{
|
|
99
|
+
clear: both;
|
|
100
|
+
}
|
|
101
|
+
</style>
|
|
@@ -0,0 +1,257 @@
|
|
|
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
|
+
<input type="text" style="width:60%" class="input_search" placeholder='项目名称' v-model="model.f_entry_name"
|
|
19
|
+
v-on:keyup.enter="search"
|
|
20
|
+
condition="u.f_entry_name = '{}'">
|
|
21
|
+
</div>
|
|
22
|
+
<div class="form-group col-sm-3">
|
|
23
|
+
<label class="font_normal_body">报建编号:</label>
|
|
24
|
+
<input type="text" style="width:60%" class="input_search" placeholder='报建编号' v-model="model.f_apply_num"
|
|
25
|
+
v-on:keyup.enter="search"
|
|
26
|
+
condition="u.f_apply_num = '{}'">
|
|
27
|
+
</div>
|
|
28
|
+
<div class="form-group col-sm-3">
|
|
29
|
+
<label class="font_normal_body">客户名称:</label>
|
|
30
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
|
|
31
|
+
v-on:keyup.enter="$parent.$parent.search()" condition="u.f_user_name like '%{}%'" placeholder='客户名称'>
|
|
32
|
+
</div>
|
|
33
|
+
<div class="form-group col-sm-2 button-range">
|
|
34
|
+
<button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
|
|
35
|
+
<button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
|
|
36
|
+
<div
|
|
37
|
+
:class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
|
|
38
|
+
@click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"
|
|
39
|
+
class="button_spacing"
|
|
40
|
+
style="float: right">
|
|
41
|
+
</div>
|
|
42
|
+
</div>
|
|
43
|
+
</div>
|
|
44
|
+
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
45
|
+
<div class="form-group col-sm-3">
|
|
46
|
+
<label class="font_normal_body">联系电话:</label>
|
|
47
|
+
<input type="text" style="width:60%" class="input_search" placeholder='联系电话' v-model="model.f_phone"
|
|
48
|
+
v-on:keyup.enter="search"
|
|
49
|
+
condition="u.f_phone like '%{}%'">
|
|
50
|
+
</div>
|
|
51
|
+
<div class="form-group col-sm-3">
|
|
52
|
+
<label class="font_normal_body">合同编号:</label>
|
|
53
|
+
<input type="text" style="width:60%" class="input_search" placeholder='合同编号' v-model="model.f_contract_number"
|
|
54
|
+
v-on:keyup.enter="search"
|
|
55
|
+
condition="u.f_contract_number = '{}'">
|
|
56
|
+
</div>
|
|
57
|
+
<div class="form-group col-sm-3">
|
|
58
|
+
<label class="font_normal_body">报建类型:</label>
|
|
59
|
+
<v-select
|
|
60
|
+
v-model="model.f_apply_type"
|
|
61
|
+
placeholder='报建类型'
|
|
62
|
+
condition="u.f_apply_type = '{}'"
|
|
63
|
+
:value.sync="model.f_apply_type"
|
|
64
|
+
:options='$parent.$parent.applytype'
|
|
65
|
+
class="select select_list"
|
|
66
|
+
:value-single="true"
|
|
67
|
+
@change="$parent.$parent.applyTypeChange()"
|
|
68
|
+
close-on-select ></v-select>
|
|
69
|
+
</div>
|
|
70
|
+
<div class="form-group col-sm-3">
|
|
71
|
+
<label class="font_normal_body">办理环节:</label>
|
|
72
|
+
<v-select
|
|
73
|
+
v-model="model.defname"
|
|
74
|
+
placeholder='办理环节'
|
|
75
|
+
condition="defname = '{}'"
|
|
76
|
+
:value.sync="model.defname"
|
|
77
|
+
:options='$parent.$parent.defnames'
|
|
78
|
+
class="select select_list"
|
|
79
|
+
:value-single="true"
|
|
80
|
+
close-on-select ></v-select>
|
|
81
|
+
</div>
|
|
82
|
+
<div class="form-group col-sm-3">
|
|
83
|
+
<label class="font_normal_body">用户地址:</label>
|
|
84
|
+
<input type="text" style="width:60%" class="input_search" placeholder='用户地址' v-model="model.f_address"
|
|
85
|
+
v-on:keyup.enter="search"
|
|
86
|
+
condition="u.f_address like '%{}%'">
|
|
87
|
+
</div>
|
|
88
|
+
<div class="form-group col-sm-3">
|
|
89
|
+
<label for="startDate" class="font_normal_body">开始时间:</label>
|
|
90
|
+
<datepicker id="startDate" placeholder="开始日期"
|
|
91
|
+
style="width: 60%!important;"
|
|
92
|
+
v-model="model.startDate"
|
|
93
|
+
:value.sync="model.startDate"
|
|
94
|
+
:format="'yyyy-MM-dd 00:00:00'"
|
|
95
|
+
:show-reset-button="true"
|
|
96
|
+
condition="u.f_apply_date >= '{}'">
|
|
97
|
+
</datepicker>
|
|
98
|
+
</div>
|
|
99
|
+
<div class="form-group col-sm-3">
|
|
100
|
+
<label for="endDate" class="font_normal_body">结束时间:</label>
|
|
101
|
+
<datepicker id="endDate" placeholder="结束日期"
|
|
102
|
+
style="width: 60%!important;"
|
|
103
|
+
v-model="model.endDate"
|
|
104
|
+
:value.sync="model.endDate"
|
|
105
|
+
:format="'yyyy-MM-dd 23:59:59'"
|
|
106
|
+
:show-reset-button="true"
|
|
107
|
+
condition="u.f_apply_date <= '{}'">
|
|
108
|
+
</datepicker>
|
|
109
|
+
</div>
|
|
110
|
+
</div>
|
|
111
|
+
</div>
|
|
112
|
+
</criteria>
|
|
113
|
+
<data-grid :model="model" partial='list' v-ref:grid class="list_area table_sy">
|
|
114
|
+
<template partial='head'>
|
|
115
|
+
<tr>
|
|
116
|
+
<th style="white-space: nowrap;">序号</th>
|
|
117
|
+
<th style="white-space: nowrap;">报建编号</th>
|
|
118
|
+
<th style="white-space: nowrap;">客户名称</th>
|
|
119
|
+
<th style="white-space: nowrap;">电话</th>
|
|
120
|
+
<th style="white-space: nowrap;">报建类型</th>
|
|
121
|
+
<th style="white-space: nowrap;">办理环节</th>
|
|
122
|
+
<th style="white-space: nowrap;">状态</th>
|
|
123
|
+
<th style="white-space: nowrap;">终止原因</th>
|
|
124
|
+
<th style="white-space: nowrap;">终止时间</th>
|
|
125
|
+
<th style="white-space: nowrap;">终止人</th>
|
|
126
|
+
<!-- <th style="white-space: nowrap;">撤销原因</th>-->
|
|
127
|
+
<!-- <th style="white-space: nowrap;">撤销时间</th>-->
|
|
128
|
+
<!-- <th style="white-space: nowrap;">撤销人</th>-->
|
|
129
|
+
<!-- <th style="white-space: nowrap;">操作</th>-->
|
|
130
|
+
</tr>
|
|
131
|
+
</template>
|
|
132
|
+
<template partial='body'>
|
|
133
|
+
<tr>
|
|
134
|
+
<td style="text-align: center;">
|
|
135
|
+
<nobr>{{$index+1}}</nobr>
|
|
136
|
+
</td>
|
|
137
|
+
<td style="text-align: center;">
|
|
138
|
+
<nobr>{{row.f_apply_num}}</nobr>
|
|
139
|
+
</td>
|
|
140
|
+
<td style="text-align: center;">
|
|
141
|
+
<nobr>{{row.f_user_name}}</nobr>
|
|
142
|
+
</td>
|
|
143
|
+
<td style="text-align: center;">
|
|
144
|
+
<nobr>{{row.f_phone}}</nobr>
|
|
145
|
+
</td>
|
|
146
|
+
<td style="text-align: center;">
|
|
147
|
+
<nobr>{{row.f_apply_type}}</nobr>
|
|
148
|
+
</td>
|
|
149
|
+
<td style="text-align: center;">
|
|
150
|
+
<nobr>{{row.defname}}</nobr>
|
|
151
|
+
</td>
|
|
152
|
+
<td style="text-align: center;">
|
|
153
|
+
<nobr>{{row.f_state}}</nobr>
|
|
154
|
+
</td>
|
|
155
|
+
<td style="text-align: center;">
|
|
156
|
+
<nobr>{{row.f_stop_remarks}}</nobr>
|
|
157
|
+
</td>
|
|
158
|
+
<td style="text-align: center;">
|
|
159
|
+
<nobr>{{row.f_date}}</nobr>
|
|
160
|
+
</td>
|
|
161
|
+
<td style="text-align: center;">
|
|
162
|
+
<nobr>{{row.f_operator}}</nobr>
|
|
163
|
+
</td>
|
|
164
|
+
<!-- <td style="text-align: center;">-->
|
|
165
|
+
<!-- <nobr>{{row.f_cancel_reason}}</nobr>-->
|
|
166
|
+
<!-- </td>-->
|
|
167
|
+
<!-- <td style="text-align: center;">-->
|
|
168
|
+
<!-- <nobr>{{row.f_cancel_date}}</nobr>-->
|
|
169
|
+
<!-- </td>-->
|
|
170
|
+
<!-- <td style="text-align: center;">-->
|
|
171
|
+
<!-- <nobr>{{row.f_cancel_name}}</nobr>-->
|
|
172
|
+
<!-- </td>-->
|
|
173
|
+
<!-- <td style="text-align: center;">-->
|
|
174
|
+
<!-- <dropdown v-if="row.f_type === '暂停报建' && row.f_state === '有效'">-->
|
|
175
|
+
<!-- <button type="button" data-toggle="dropdown" style="border: 0px;background: none;">-->
|
|
176
|
+
<!-- <span class="glyphicon glyphicon-th-list" style="position: inherit;"></span>-->
|
|
177
|
+
<!-- </button>-->
|
|
178
|
+
<!-- <ul slot="dropdown-menu" class="dropdown-menu dropdown-menu-right">-->
|
|
179
|
+
<!-- <li>-->
|
|
180
|
+
<!-- <a href="#" @click="$parent.$parent.$parent.click(row)">撤销</a>-->
|
|
181
|
+
<!-- </li>-->
|
|
182
|
+
<!-- </ul>-->
|
|
183
|
+
<!-- </dropdown>-->
|
|
184
|
+
<!-- </td>-->
|
|
185
|
+
</tr>
|
|
186
|
+
</template>
|
|
187
|
+
</data-grid>
|
|
188
|
+
</criteria-paged>
|
|
189
|
+
</div>
|
|
190
|
+
</template>
|
|
191
|
+
<script>
|
|
192
|
+
import {PagedList} from 'vue-client'
|
|
193
|
+
import {isEmpty} from '../../Util'
|
|
194
|
+
export default {
|
|
195
|
+
title: '终止报建',
|
|
196
|
+
data () {
|
|
197
|
+
return {
|
|
198
|
+
model: new PagedList('rs/sql/getStopApply', 20, {
|
|
199
|
+
data: {
|
|
200
|
+
orgid: this.$login.f.orgid
|
|
201
|
+
}
|
|
202
|
+
}),
|
|
203
|
+
curorgid: [this.$login.f.orgid],
|
|
204
|
+
applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')],
|
|
205
|
+
defnames: [{label: '全部', value: ''}, ...this.$appdata.getParam('办理环节')], // 流程节点
|
|
206
|
+
applyNatures: [{label: '全部', value: ''}], // 报建性质
|
|
207
|
+
criteriaShow: false
|
|
208
|
+
}
|
|
209
|
+
},
|
|
210
|
+
ready () {
|
|
211
|
+
// 调用查询
|
|
212
|
+
this.search()
|
|
213
|
+
},
|
|
214
|
+
events: {
|
|
215
|
+
},
|
|
216
|
+
methods: {
|
|
217
|
+
// 查询
|
|
218
|
+
search () {
|
|
219
|
+
this.$dispatch('search')
|
|
220
|
+
},
|
|
221
|
+
click (row) {
|
|
222
|
+
this.$dispatch('cancelStopApply', row)
|
|
223
|
+
},
|
|
224
|
+
async applyTypeChange () {
|
|
225
|
+
if (!isEmpty(this.$refs.cp.$refs.cri.model.f_apply_type)) {
|
|
226
|
+
let res = await this.$resetpost('rs/logic/getDefnameByType',
|
|
227
|
+
{ f_apply_type: this.$refs.cp.$refs.cri.model.f_apply_type },
|
|
228
|
+
{resolveMsg: null, rejectMsg: '节点信息获取失败!!!'}
|
|
229
|
+
)
|
|
230
|
+
|
|
231
|
+
this.defnames = [{label: '全部', value: ''}, ...res.data]
|
|
232
|
+
|
|
233
|
+
this.applyNatures = isEmpty(this.$appdata.getParam(`${this.$refs.cp.$refs.cri.model.f_apply_type}性质`)) ? [{label: '全部', value: ''}] : [{label: '全部', value: ''}, ...this.$appdata.getParam(`${this.$refs.cp.$refs.cri.model.f_apply_type}性质`)]
|
|
234
|
+
} else {
|
|
235
|
+
this.defnames = [{label: '全部', value: ''}, ...this.$appdata.getParam('办理环节')]
|
|
236
|
+
|
|
237
|
+
this.applyNatures = [{label: '全部', value: ''}]
|
|
238
|
+
}
|
|
239
|
+
},
|
|
240
|
+
clear () {
|
|
241
|
+
Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
|
|
242
|
+
this.$refs.cp.$refs.cri.model[key] = null
|
|
243
|
+
})
|
|
244
|
+
},
|
|
245
|
+
getorg (val) {
|
|
246
|
+
if (val.length <= 0) {
|
|
247
|
+
return
|
|
248
|
+
}
|
|
249
|
+
this.model.params.data.orgid = val[0]
|
|
250
|
+
}
|
|
251
|
+
},
|
|
252
|
+
computed: {
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
</script>
|
|
256
|
+
<style scoped>
|
|
257
|
+
</style>
|
|
@@ -80,17 +80,20 @@
|
|
|
80
80
|
this.xmlname = '开发商集体报建流程'
|
|
81
81
|
} else if (this.selectdata.f_apply_type === '散户报建') {
|
|
82
82
|
this.xmlname = '散户报建流程'
|
|
83
|
-
}
|
|
84
|
-
this.xmlname = '工商户报建流程'
|
|
85
|
-
} else if (this.selectdata.f_apply_type === '商业户报建') {
|
|
83
|
+
} else if (this.selectdata.f_apply_type === '工商户报建') {
|
|
86
84
|
this.xmlname = '工商户报建流程'
|
|
87
85
|
} else if (this.selectdata.f_apply_type === '散户集体报建') {
|
|
88
86
|
this.xmlname = '散户集体报建流程'
|
|
89
87
|
} else if (this.selectdata.f_apply_type === '煤改气报建') {
|
|
90
88
|
this.xmlname = '散户集体报建流程'
|
|
89
|
+
} else if (this.selectdata.f_apply_type === '拆改装报建') {
|
|
90
|
+
this.xmlname = '拆改装流程'
|
|
91
91
|
} else if (this.selectdata.f_apply_type === '综合报建') {
|
|
92
92
|
this.xmlname = '报建流程'
|
|
93
|
-
}
|
|
93
|
+
} else if (this.selectdata.f_apply_type === '居民报建') {
|
|
94
|
+
this.xmlname = '居民报建流程'
|
|
95
|
+
}
|
|
96
|
+
else {
|
|
94
97
|
this.$showMessage('暂无此类报装')
|
|
95
98
|
return
|
|
96
99
|
}
|
|
@@ -5,21 +5,21 @@
|
|
|
5
5
|
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
|
|
6
6
|
<div class="row">
|
|
7
7
|
<div class="form-group col-sm-4">
|
|
8
|
-
<label class="font_normal_body"
|
|
9
|
-
<input type="text" class="input_search" v-model="model.
|
|
10
|
-
v-on:keyup.enter="search" condition="
|
|
8
|
+
<label class="font_normal_body">项目名称:</label>
|
|
9
|
+
<input type="text" class="input_search" v-model="model.f_entry_name"
|
|
10
|
+
v-on:keyup.enter="search" condition=" f_entry_name like '%{}%' " placeholder='请输入'>
|
|
11
11
|
</div>
|
|
12
12
|
<div class="form-group col-sm-3">
|
|
13
13
|
<label class="font_normal_body">报建编号:</label>
|
|
14
14
|
<input type="text" class="input_search" placeholder='报建编号' v-model="model.f_apply_num"
|
|
15
15
|
v-on:keyup.enter="search"
|
|
16
|
-
condition="f_apply_num
|
|
16
|
+
condition="f_apply_num like '%{}%'">
|
|
17
17
|
</div>
|
|
18
18
|
<div class="form-group col-sm-3">
|
|
19
19
|
<label class="font_normal_body">合同编号:</label>
|
|
20
20
|
<input type="text" class="input_search" placeholder='合同编号' v-model="model.f_contract_number"
|
|
21
21
|
v-on:keyup.enter="search"
|
|
22
|
-
condition="f_contract_number
|
|
22
|
+
condition="f_contract_number like '%{}%'">
|
|
23
23
|
</div>
|
|
24
24
|
<div class="form-group col-sm-2 button-range">
|
|
25
25
|
<button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
|
|
@@ -59,17 +59,29 @@
|
|
|
59
59
|
close-on-select ></v-select>
|
|
60
60
|
</div>
|
|
61
61
|
<div class="form-group col-sm-3">
|
|
62
|
-
<label class="font_normal_body"
|
|
63
|
-
<
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
62
|
+
<label class="font_normal_body">流程状态:</label>
|
|
63
|
+
<v-select
|
|
64
|
+
v-model="model.f_sub_state"
|
|
65
|
+
placeholder='流程状态'
|
|
66
|
+
condition="f_sub_state = '{}'"
|
|
67
|
+
:value.sync="model.f_sub_state"
|
|
68
|
+
:options='$parent.$parent.f_sub_state'
|
|
69
|
+
class="select select_list"
|
|
70
|
+
:value-single="true"
|
|
71
|
+
close-on-select ></v-select>
|
|
72
72
|
</div>
|
|
73
|
+
<!-- <div class="form-group col-sm-3">-->
|
|
74
|
+
<!-- <label class="font_normal_body">联系电话:</label>-->
|
|
75
|
+
<!-- <input type="text" class="input_search" placeholder='联系电话' v-model="model.f_phone"-->
|
|
76
|
+
<!-- v-on:keyup.enter="search"-->
|
|
77
|
+
<!-- condition="f_phone like '%{}%'">-->
|
|
78
|
+
<!-- </div>-->
|
|
79
|
+
<!-- <div class="form-group col-sm-3">-->
|
|
80
|
+
<!-- <label class="font_normal_body">用户地址:</label>-->
|
|
81
|
+
<!-- <input type="text" class="input_search" placeholder='用户地址' v-model="model.f_address"-->
|
|
82
|
+
<!-- v-on:keyup.enter="search"-->
|
|
83
|
+
<!-- condition="f_address like '%{}%'">-->
|
|
84
|
+
<!-- </div>-->
|
|
73
85
|
<div class="form-group col-sm-3">
|
|
74
86
|
<label for="startDate" class="font_normal_body">开始时间:</label>
|
|
75
87
|
<datepicker id="startDate" placeholder="开始日期"
|
|
@@ -100,10 +112,10 @@
|
|
|
100
112
|
<tr>
|
|
101
113
|
<th style="white-space: nowrap;">序号</th>
|
|
102
114
|
<th style="white-space: nowrap;">报建编号</th>
|
|
103
|
-
<th style="white-space: nowrap;"
|
|
115
|
+
<th style="white-space: nowrap;">项目名称</th>
|
|
104
116
|
<th style="white-space: nowrap;">合同编号</th>
|
|
105
|
-
<th style="white-space: nowrap;">电话</th
|
|
106
|
-
<th style="white-space: nowrap;">地址</th
|
|
117
|
+
<!-- <th style="white-space: nowrap;">电话</th>-->
|
|
118
|
+
<!-- <th style="white-space: nowrap;">地址</th>-->
|
|
107
119
|
<th style="white-space: nowrap;">报建类型</th>
|
|
108
120
|
<th style="white-space: nowrap;">办理环节</th>
|
|
109
121
|
<th style="white-space: nowrap;">流程状态</th>
|
|
@@ -119,17 +131,17 @@
|
|
|
119
131
|
<nobr>{{row.f_apply_num}}</nobr>
|
|
120
132
|
</td>
|
|
121
133
|
<td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
|
|
122
|
-
<nobr>{{row.f_entry_name}}
|
|
134
|
+
<nobr>{{row.f_entry_name}}</nobr>
|
|
123
135
|
</td>
|
|
124
136
|
<td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
|
|
125
137
|
<nobr>{{row.f_contract_number}}</nobr>
|
|
126
138
|
</td>
|
|
127
|
-
<td @click="$parent.$parent.$parent.check(row)" style="text-align: center;"
|
|
128
|
-
<nobr>{{row.f_phone}}</nobr
|
|
129
|
-
</td
|
|
130
|
-
<td @click="$parent.$parent.$parent.check(row)" style="text-align: center;"
|
|
131
|
-
<nobr>{{row.f_address}}</nobr
|
|
132
|
-
</td
|
|
139
|
+
<!-- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">-->
|
|
140
|
+
<!-- <nobr>{{row.f_phone}}</nobr>-->
|
|
141
|
+
<!-- </td>-->
|
|
142
|
+
<!-- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">-->
|
|
143
|
+
<!-- <nobr>{{row.f_address}}</nobr>-->
|
|
144
|
+
<!-- </td>-->
|
|
133
145
|
<td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
|
|
134
146
|
<nobr>{{row.f_apply_type}}</nobr>
|
|
135
147
|
</td>
|
|
@@ -164,7 +176,8 @@
|
|
|
164
176
|
orgid: this.$login.f.orgid
|
|
165
177
|
}
|
|
166
178
|
}),
|
|
167
|
-
|
|
179
|
+
f_sub_state: [{label: '全部', value: ''}, {label: '完工', value: '完工'}, {label: '正在进行', value: '正在进行'}],
|
|
180
|
+
defnames: [{label: '全部', value: ''}, ...this.$appdata.getParam('办理环节')], // 流程节点
|
|
168
181
|
criteriaShow: false
|
|
169
182
|
}
|
|
170
183
|
},
|
|
@@ -193,7 +206,7 @@
|
|
|
193
206
|
this.defnames = [{label: '全部', value: ''}, ...res.data]
|
|
194
207
|
})
|
|
195
208
|
} else {
|
|
196
|
-
this.defnames = [{label: '全部', value: ''}]
|
|
209
|
+
this.defnames = [{label: '全部', value: ''}, ...this.$appdata.getParam('办理环节')]
|
|
197
210
|
}
|
|
198
211
|
},
|
|
199
212
|
check (val) {
|
|
@@ -48,15 +48,8 @@
|
|
|
48
48
|
},
|
|
49
49
|
//点击获取节点名
|
|
50
50
|
getdefname(row){
|
|
51
|
-
if(row.defname === this.$workflow_vue.start_activity){
|
|
52
51
|
row = Object.assign({},this.selectdata,row)
|
|
53
52
|
this.$dispatch('apply', row)
|
|
54
|
-
}else if(this.check(row.actorexpression)){
|
|
55
|
-
row = Object.assign({},this.selectdata,row)
|
|
56
|
-
this.$dispatch('apply', row)
|
|
57
|
-
}else{
|
|
58
|
-
this.$showMessage("对不起,您没有查看此节点的权限!")
|
|
59
|
-
}
|
|
60
53
|
},
|
|
61
54
|
// 检测是否有权限
|
|
62
55
|
check(actorexpression){
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
|
|
3
|
-
{{{ model }}}
|
|
4
|
-
</div>
|
|
2
|
+
|
|
5
3
|
</template>
|
|
6
4
|
|
|
7
5
|
<script>
|
|
@@ -32,5 +30,11 @@
|
|
|
32
30
|
</script>
|
|
33
31
|
|
|
34
32
|
<style scoped>
|
|
35
|
-
|
|
33
|
+
.my-swipe .van-swipe-item {
|
|
34
|
+
color: #fff;
|
|
35
|
+
font-size: 20px;
|
|
36
|
+
line-height: 150px;
|
|
37
|
+
text-align: center;
|
|
38
|
+
background-color: #39a9ed;
|
|
39
|
+
}
|
|
36
40
|
</style>
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
<div class="right col-sm-7">
|
|
36
36
|
<p :title="row.f_filename" class="clears"><strong>文件名:</strong>{{row.f_filename}}</p>
|
|
37
37
|
<p :title="row.f_username" class="clears"><strong>操作员:</strong><span>{{row.f_username}}</span></p>
|
|
38
|
-
<p :title="row.fusetype" class="clears"><strong
|
|
38
|
+
<p :title="row.fusetype" class="clears"><strong>文件类型:</strong><span>{{row.fusetype}}</span></p>
|
|
39
39
|
<p :title="row.f_uploaddate" class="clears"><strong>上传时间:</strong><span>{{row.f_uploaddate}}</span></p>
|
|
40
40
|
<p :title="row.fremarks" class="clears"><strong>文件说明:</strong>{{row.fremarks}}</p>
|
|
41
41
|
<p class="clears">
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
class="select select_list"
|
|
67
67
|
:value.sync="headers.fusetype"
|
|
68
68
|
v-model="headers.fusetype"
|
|
69
|
-
:options="$appdata.getParam('
|
|
69
|
+
:options="$appdata.getParam('文件类型')"
|
|
70
70
|
:valueSingle="true"></input-select>
|
|
71
71
|
</div>
|
|
72
72
|
</div>
|
|
@@ -151,7 +151,7 @@ export default {
|
|
|
151
151
|
})
|
|
152
152
|
|
|
153
153
|
for (var i = 0; i < getFile.data.length; i++) {
|
|
154
|
-
//
|
|
154
|
+
// 如果文件类型包含导入字样,则是execl文件导入的,不做显示
|
|
155
155
|
if(getFile.data[i].fusetype&&(getFile.data[i].fusetype.includes('execl导入'))){
|
|
156
156
|
getFile.data.splice(i,1)
|
|
157
157
|
i--
|
|
@@ -208,7 +208,7 @@ export default {
|
|
|
208
208
|
},
|
|
209
209
|
computed: {
|
|
210
210
|
typeOfUse () {
|
|
211
|
-
return [{label: '全部', value: ''}, ...this.$appdata.getParam('
|
|
211
|
+
return [{label: '全部', value: ''}, ...this.$appdata.getParam('文件类型')]
|
|
212
212
|
}
|
|
213
213
|
},
|
|
214
214
|
events: {
|
package/src/main.js
CHANGED
|
@@ -1,23 +1,25 @@
|
|
|
1
|
-
import Vue from 'vue'
|
|
2
|
-
import App from './App'
|
|
3
|
-
import { all } from 'vue-client'
|
|
4
|
-
import {ldap} from 'ldap-clients'
|
|
5
|
-
import {system} from 'system-clients'
|
|
6
|
-
import {sale} from 'sale-client'
|
|
7
|
-
import {material} from 'material-client'
|
|
8
|
-
|
|
9
|
-
import apply from './apply'
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
1
|
+
import Vue from 'vue'
|
|
2
|
+
import App from './App'
|
|
3
|
+
import { all } from 'vue-client'
|
|
4
|
+
import {ldap} from 'ldap-clients'
|
|
5
|
+
import {system} from 'system-clients'
|
|
6
|
+
import {sale} from 'sale-client'
|
|
7
|
+
import {material} from 'material-client'
|
|
8
|
+
|
|
9
|
+
import apply from './apply'
|
|
10
|
+
import applyAndroid from './applyAndroid'
|
|
11
|
+
|
|
12
|
+
applyAndroid()
|
|
13
|
+
all()
|
|
14
|
+
apply()
|
|
15
|
+
ldap()
|
|
16
|
+
sale()
|
|
17
|
+
material()
|
|
18
|
+
system(false)
|
|
19
|
+
|
|
20
|
+
require('system-clients/src/styles/less/bootstrap.less')
|
|
21
|
+
require('./expandcss.less')
|
|
22
|
+
new Vue({
|
|
23
|
+
el: 'body',
|
|
24
|
+
components: { App }
|
|
25
|
+
})
|
|
Binary file
|
package/dist.rar
DELETED
|
Binary file
|