apply-clients 4.1.3 → 4.1.4-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 +1 -1
- package/package.json +7 -5
- package/src/apply.js +81 -66
- package/src/applyAndroid.js +41 -39
- package/src/components/app_apply/AppChargeManagement.vue +619 -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 +280 -267
- package/src/components/product/ApplyCharge/ApplyChargeList.vue +251 -251
- 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 +82 -59
- 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 +1458 -99
- 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 +130 -130
- package/src/components/product/Process/Processes/recordcancel.vue +50 -0
- 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 +1126 -703
- package/src/components/product/Process/ShowBackReason.vue +1 -0
- package/src/components/product/ServiceView.vue +82 -35
- 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 +261 -261
- package/src/main.js +25 -23
- package/static/images/lefticon//347/237/251/345/275/2421183.png +0 -0
|
@@ -1,56 +1,56 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="repair-bg" id="work-history">
|
|
3
|
-
<div class="bq-parent" v-if="shutype == 'heng'">
|
|
4
|
-
<blockquote class="blockquote">
|
|
5
|
-
<p>报建流程信息</p>
|
|
6
|
-
</blockquote>
|
|
7
|
-
</div>
|
|
8
|
-
<!-- 报建流程信息 -->
|
|
9
|
-
<div class="panel panel-default auto repair-info-content">
|
|
10
|
-
<div class="panel-body">
|
|
11
|
-
<p>报建编号: {{service.f_apply_num}}</p>
|
|
12
|
-
<p>报建类型: {{service.f_apply_type}}</p>
|
|
13
|
-
<p>流程状态: {{service.
|
|
14
|
-
<p>报建日期: {{service.f_apply_date}}</p>
|
|
15
|
-
<p>报建备注: {{service.f_apply_remarks}}</p>
|
|
16
|
-
<failure-show :value='service.failure'>
|
|
17
|
-
</failure-show>
|
|
18
|
-
</div>
|
|
19
|
-
</div>
|
|
20
|
-
</div>
|
|
21
|
-
</template>
|
|
22
|
-
<script>
|
|
23
|
-
export default {
|
|
24
|
-
title: '报建流程信息',
|
|
25
|
-
data () {
|
|
26
|
-
return {
|
|
27
|
-
// service: null
|
|
28
|
-
f_userinfo_code : ''
|
|
29
|
-
}
|
|
30
|
-
},
|
|
31
|
-
props: {
|
|
32
|
-
service: { // 传入一条报修单信息
|
|
33
|
-
//"f_apply_num":"123456",
|
|
34
|
-
type: Object
|
|
35
|
-
},
|
|
36
|
-
shutype:'heng'
|
|
37
|
-
},
|
|
38
|
-
ready () {
|
|
39
|
-
},
|
|
40
|
-
methods: {
|
|
41
|
-
selfSearch () {
|
|
42
|
-
if(!this.rowOne) {
|
|
43
|
-
return
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
},
|
|
47
|
-
watch: {
|
|
48
|
-
'rowOne' () {
|
|
49
|
-
this.selfSearch()
|
|
50
|
-
}
|
|
51
|
-
},
|
|
52
|
-
components: {
|
|
53
|
-
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
</script>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="repair-bg" id="work-history">
|
|
3
|
+
<div class="bq-parent" v-if="shutype == 'heng'">
|
|
4
|
+
<blockquote class="blockquote">
|
|
5
|
+
<p>报建流程信息</p>
|
|
6
|
+
</blockquote>
|
|
7
|
+
</div>
|
|
8
|
+
<!-- 报建流程信息 -->
|
|
9
|
+
<div class="panel panel-default auto repair-info-content">
|
|
10
|
+
<div class="panel-body">
|
|
11
|
+
<p>报建编号: {{service.f_apply_num}}</p>
|
|
12
|
+
<p>报建类型: {{service.f_apply_type}}</p>
|
|
13
|
+
<p>流程状态: {{service.f_sub_state}}</p>
|
|
14
|
+
<p>报建日期: {{service.f_apply_date}}</p>
|
|
15
|
+
<p>报建备注: {{service.f_apply_remarks}}</p>
|
|
16
|
+
<failure-show :value='service.failure'>
|
|
17
|
+
</failure-show>
|
|
18
|
+
</div>
|
|
19
|
+
</div>
|
|
20
|
+
</div>
|
|
21
|
+
</template>
|
|
22
|
+
<script>
|
|
23
|
+
export default {
|
|
24
|
+
title: '报建流程信息',
|
|
25
|
+
data () {
|
|
26
|
+
return {
|
|
27
|
+
// service: null
|
|
28
|
+
f_userinfo_code : ''
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
props: {
|
|
32
|
+
service: { // 传入一条报修单信息
|
|
33
|
+
//"f_apply_num":"123456",
|
|
34
|
+
type: Object
|
|
35
|
+
},
|
|
36
|
+
shutype:'heng'
|
|
37
|
+
},
|
|
38
|
+
ready () {
|
|
39
|
+
},
|
|
40
|
+
methods: {
|
|
41
|
+
selfSearch () {
|
|
42
|
+
if(!this.rowOne) {
|
|
43
|
+
return
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
watch: {
|
|
48
|
+
'rowOne' () {
|
|
49
|
+
this.selfSearch()
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
components: {
|
|
53
|
+
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
</script>
|
|
@@ -1,165 +1,148 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="repair-bg auto" id="repair-first" style="padding-bottom:5px;overflow:auto">
|
|
3
|
-
<!--<div class="app-botton" @click="back()">-->
|
|
4
|
-
<!--<span class="glyphicon glyphicon-menu-left">返回</span>-->
|
|
5
|
-
<!--</div>-->
|
|
6
|
-
<back-page :need-back='true' @flag="back()"></back-page>
|
|
7
|
-
<div class="bq-parent">
|
|
8
|
-
<blockquote style="color: #499edf;border-left-color: #499edf;font-size: 16px">
|
|
9
|
-
<p>
|
|
10
|
-
待办报建<span v-if="rows">({{rows.length}}单)</span>
|
|
11
|
-
<span v-if="!rows">(暂无待处理报建单)</span>
|
|
12
|
-
<img @click="search" src="../../assets/shuaxindaiban1.png" style="width: 40px;padding: 5px; float:right">
|
|
13
|
-
</p>
|
|
14
|
-
</blockquote>
|
|
15
|
-
</div>
|
|
16
|
-
<div class="panel panel-default repair-info-content auto">
|
|
17
|
-
<div class="panel-body">
|
|
18
|
-
<div class="panel panel-default well" v-for="row in rows" >
|
|
19
|
-
<div class="panel-body bg-info" style="padding: 10px">
|
|
20
|
-
<div class="row form-group">
|
|
21
|
-
<div class="col-sm-12 col-xs-12 col-md-12">
|
|
22
|
-
<div class="row" >
|
|
23
|
-
<div :class="{'text-danger': row.f_remindersign}" class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
|
|
24
|
-
报建编号: {{row.f_apply_num}}<!--<span v-if="row.f_remindersign">(催单)</span>-->
|
|
25
|
-
</div>
|
|
26
|
-
<div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
|
|
27
|
-
|
|
28
|
-
</div>
|
|
29
|
-
<div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
|
|
30
|
-
用户类型: {{row.f_user_type}}
|
|
31
|
-
</div>
|
|
32
|
-
<div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
|
|
33
|
-
用户地址: {{row.f_address}}
|
|
34
|
-
</div>
|
|
35
|
-
<div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
|
|
36
|
-
用户电话: {{row.f_phone}}
|
|
37
|
-
<img src="../../assets/telphonesend.png" style="width: 12px;" @click.stop.prevent='makeAPhoneCall(row.f_phone)'>
|
|
38
|
-
</div>
|
|
39
|
-
<div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
|
|
40
|
-
流程状态: {{row.
|
|
41
|
-
</div>
|
|
42
|
-
<div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
|
|
43
|
-
报建类型: {{row.f_apply_type}}
|
|
44
|
-
</div>
|
|
45
|
-
<div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
|
|
46
|
-
报建日期: {{row.f_apply_date}}
|
|
47
|
-
</div>
|
|
48
|
-
|
|
49
|
-
</div>
|
|
50
|
-
</div>
|
|
51
|
-
<div class="col-sm-12 col-xs-12 col-md-12">
|
|
52
|
-
<button type="button" name="button" class="btn btn-primary" style="background-color:#499edf;float: right" @click="selected(row)">立即处理</button>
|
|
53
|
-
</div>
|
|
54
|
-
</div>
|
|
55
|
-
</div>
|
|
56
|
-
</div>
|
|
57
|
-
</div>
|
|
58
|
-
</div>
|
|
59
|
-
</div>
|
|
60
|
-
</template>
|
|
61
|
-
<script>
|
|
62
|
-
import Vue from 'vue'
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
rows:
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
_this
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
color: #FFF;
|
|
150
|
-
padding: 8px;
|
|
151
|
-
text-align: center;
|
|
152
|
-
font-size: 1.2em;
|
|
153
|
-
z-index: 10;
|
|
154
|
-
opacity:0.5;
|
|
155
|
-
bottom: 50px;
|
|
156
|
-
margin-top: -10px;
|
|
157
|
-
height: 40px;
|
|
158
|
-
}
|
|
159
|
-
.class-a{
|
|
160
|
-
border:1px solid red;
|
|
161
|
-
}
|
|
162
|
-
.padd-div-shu{
|
|
163
|
-
padding-bottom: 5px;
|
|
164
|
-
}
|
|
165
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="repair-bg auto" id="repair-first" style="padding-bottom:5px;overflow:auto">
|
|
3
|
+
<!--<div class="app-botton" @click="back()">-->
|
|
4
|
+
<!--<span class="glyphicon glyphicon-menu-left">返回</span>-->
|
|
5
|
+
<!--</div>-->
|
|
6
|
+
<back-page :need-back='true' @flag="back()"></back-page>
|
|
7
|
+
<div class="bq-parent">
|
|
8
|
+
<blockquote style="color: #499edf;border-left-color: #499edf;font-size: 16px">
|
|
9
|
+
<p>
|
|
10
|
+
待办报建<span v-if="rows">({{rows.length}}单)</span>
|
|
11
|
+
<span v-if="!rows">(暂无待处理报建单)</span>
|
|
12
|
+
<img @click="search" src="../../assets/shuaxindaiban1.png" style="width: 40px;padding: 5px; float:right">
|
|
13
|
+
</p>
|
|
14
|
+
</blockquote>
|
|
15
|
+
</div>
|
|
16
|
+
<div class="panel panel-default repair-info-content auto">
|
|
17
|
+
<div class="panel-body">
|
|
18
|
+
<div class="panel panel-default well" v-for="row in rows" >
|
|
19
|
+
<div class="panel-body bg-info" style="padding: 10px">
|
|
20
|
+
<div class="row form-group">
|
|
21
|
+
<div class="col-sm-12 col-xs-12 col-md-12">
|
|
22
|
+
<div class="row" >
|
|
23
|
+
<div :class="{'text-danger': row.f_remindersign}" class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
|
|
24
|
+
报建编号: {{row.f_apply_num}}<!--<span v-if="row.f_remindersign">(催单)</span>-->
|
|
25
|
+
</div>
|
|
26
|
+
<div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
|
|
27
|
+
项目名称: {{row.f_entry_name}}
|
|
28
|
+
</div>
|
|
29
|
+
<div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
|
|
30
|
+
用户类型: {{row.f_user_type}}
|
|
31
|
+
</div>
|
|
32
|
+
<div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
|
|
33
|
+
用户地址: {{row.f_address}}
|
|
34
|
+
</div>
|
|
35
|
+
<div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
|
|
36
|
+
用户电话: {{row.f_phone}}
|
|
37
|
+
<img src="../../assets/telphonesend.png" style="width: 12px;" @click.stop.prevent='makeAPhoneCall(row.f_phone)'>
|
|
38
|
+
</div>
|
|
39
|
+
<div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
|
|
40
|
+
流程状态: {{row.f_sub_state}}
|
|
41
|
+
</div>
|
|
42
|
+
<div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
|
|
43
|
+
报建类型: {{row.f_apply_type}}
|
|
44
|
+
</div>
|
|
45
|
+
<div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
|
|
46
|
+
报建日期: {{row.f_apply_date}}
|
|
47
|
+
</div>
|
|
48
|
+
|
|
49
|
+
</div>
|
|
50
|
+
</div>
|
|
51
|
+
<div class="col-sm-12 col-xs-12 col-md-12">
|
|
52
|
+
<button type="button" name="button" class="btn btn-primary" style="background-color:#499edf;float: right" @click="selected(row)">立即处理</button>
|
|
53
|
+
</div>
|
|
54
|
+
</div>
|
|
55
|
+
</div>
|
|
56
|
+
</div>
|
|
57
|
+
</div>
|
|
58
|
+
</div>
|
|
59
|
+
</div>
|
|
60
|
+
</template>
|
|
61
|
+
<script>
|
|
62
|
+
import Vue from 'vue'
|
|
63
|
+
import {HttpResetClass} from 'vue-client'
|
|
64
|
+
export default{
|
|
65
|
+
title: '待办报建列表',
|
|
66
|
+
data () {
|
|
67
|
+
return {
|
|
68
|
+
// rows: Object
|
|
69
|
+
rows: [],
|
|
70
|
+
editshow:false,
|
|
71
|
+
row:{
|
|
72
|
+
type:Object,
|
|
73
|
+
default:{
|
|
74
|
+
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
props: {
|
|
80
|
+
sourcet:{
|
|
81
|
+
type:String,
|
|
82
|
+
default:'横屏'
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
methods: {
|
|
86
|
+
selected (row) {
|
|
87
|
+
row.canedit = true
|
|
88
|
+
if(this.sourcet == '横屏'){
|
|
89
|
+
this.$goto('placecontrolerapp', {row: row},'self',this.search)
|
|
90
|
+
}else{
|
|
91
|
+
this.$goto('placecontrolerapp', {row: row},'self',this.search)
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
back () {
|
|
95
|
+
let _this = this
|
|
96
|
+
_this.$back()
|
|
97
|
+
},
|
|
98
|
+
search () {
|
|
99
|
+
var condition = "1=1"
|
|
100
|
+
var param = {condition: condition,condValue:[],data:{"id": Vue.user.id,orgid: Vue.user.orgid}}
|
|
101
|
+
let http = new HttpResetClass()
|
|
102
|
+
http.load('POST',`${this.$androidUtil.getProxyUrl()}/rs/sql/checkuser`,{data:param}).then(res=>{
|
|
103
|
+
console.log(`前台本地报建代办工单查询结果data=>>>${JSON.stringify(res.data)}`)
|
|
104
|
+
if (res.data) {
|
|
105
|
+
this.rows = res.data
|
|
106
|
+
} else {
|
|
107
|
+
this.rows = []
|
|
108
|
+
}
|
|
109
|
+
})
|
|
110
|
+
},
|
|
111
|
+
makeAPhoneCall(phoneNumber) {
|
|
112
|
+
this.$androidUtil.makeAPhoneCall(phoneNumber)
|
|
113
|
+
},
|
|
114
|
+
upload () {
|
|
115
|
+
this.$goto('up-load')
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
ready () {
|
|
119
|
+
this.search()
|
|
120
|
+
var _this = this;
|
|
121
|
+
this.timeoutHandle = window.setInterval(function() {
|
|
122
|
+
_this.search()
|
|
123
|
+
}, 6000000)//60000
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
</script>
|
|
127
|
+
|
|
128
|
+
<style>
|
|
129
|
+
.app-botton {
|
|
130
|
+
position:fixed;
|
|
131
|
+
background: #87b2dd;
|
|
132
|
+
color: #FFF;
|
|
133
|
+
padding: 8px;
|
|
134
|
+
text-align: center;
|
|
135
|
+
font-size: 1.2em;
|
|
136
|
+
z-index: 10;
|
|
137
|
+
opacity:0.5;
|
|
138
|
+
bottom: 50px;
|
|
139
|
+
margin-top: -10px;
|
|
140
|
+
height: 40px;
|
|
141
|
+
}
|
|
142
|
+
.class-a{
|
|
143
|
+
border:1px solid red;
|
|
144
|
+
}
|
|
145
|
+
.padd-div-shu{
|
|
146
|
+
padding-bottom: 5px;
|
|
147
|
+
}
|
|
148
|
+
</style>
|