apply-clients 5.0.35-6 → 5.0.35-62
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/.eslintrc.js +16 -16
- package/package.json +3 -3
- package/src/AndroidApp.vue +28 -28
- package/src/android.js +1 -1
- package/src/apply.js +14 -1
- package/src/components/app_apply/ApplyDownList.vue +168 -164
- package/src/components/app_apply/ApplyInfo.vue +56 -56
- package/src/components/app_apply/ApplyListUpload.vue +268 -268
- package/src/components/app_apply/ApplyToDoList.vue +2588 -10
- package/src/components/app_apply/Gongcheng.vue +3614 -0
- package/src/components/app_apply/OneToMany.vue +194 -0
- package/src/components/app_apply/PlaceControler.vue +299 -256
- package/src/components/app_apply/ServiceControl.vue +537 -335
- package/src/components/app_apply/ServiceView.vue +383 -383
- package/src/components/app_apply/ezhou/FeiMinYongV.vue +109 -109
- package/src/components/app_apply/ezhou/FeiMinYongVV.vue +100 -100
- package/src/components/app_apply/ezhou/MinYong.vue +92 -92
- package/src/components/app_apply/ezhou/ServiceView.vue +790 -620
- package/src/components/image/doc.jpg +0 -0
- package/src/components/image/dwg.png +0 -0
- package/src/components/image/dxf.png +0 -0
- package/src/components/image/excel.jpg +0 -0
- package/src/components/image/pdf.jpg +0 -0
- package/src/components/product/Common/ApplyValidateBill.vue +13 -6
- package/src/components/product/Common/PrintBill.vue +3 -2
- package/src/components/product/EngineeringManagement/EngineerUpload.vue +304 -0
- package/src/components/product/EngineeringManagement/EngineeringManagement.vue +137 -0
- package/src/components/product/EngineeringManagement/EngineeringSelect.vue +588 -0
- package/src/components/product/EngineeringSupervisory/EngineeringApplyStopInfo.vue +281 -0
- package/src/components/product/EngineeringSupervisory/EngineeringSupervisoryControl.vue +130 -0
- package/src/components/product/EngineeringSupervisory/EngineeringSupervisoryList.vue +350 -0
- package/src/components/product/Function/InstallInfoSelect.vue +255 -254
- package/src/components/product/Function/Service/FunctionServiceControl.vue +37 -1
- package/src/components/product/Function/functions/ApplyUpload.vue +556 -0
- package/src/components/product/Function/functions/BuyerMessage.vue +512 -512
- package/src/components/product/Function/functions/InstallFee.vue +569 -344
- package/src/components/product/Process/ExplorationSelect.vue +640 -636
- package/src/components/product/Process/Processes/CustomerRecordMessage.vue +2 -5
- package/src/components/product/Process/Processes/Service/ApplyChargeSearch.vue +123 -37
- package/src/components/product/Process/Processes/Service/PaperTicketBill.vue +85 -0
- package/src/components/product/Process/Processes/Service/ServiceControl.vue +304 -21
- package/src/components/product/ServiceView.vue +16 -6
- package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +53 -6
- package/src/components/product/Supervisory/SupervisoryList.vue +350 -349
- package/src/components/product/applyReport/ApplyReport.vue +205 -0
- package/src/components/product/applyReport/PrintApplyReport.vue +116 -0
- package/src/components/product/stopInfo/ApplyStopInfo.vue +281 -280
- package/src/ezhouAndroid.js +13 -10
- package/src/index.js +8 -8
- package/src/main.js +32 -32
- package/src/plugins/commonService.js +11 -7
package/.eslintrc.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
//
|
|
4
|
-
|
|
5
|
-
//
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
//
|
|
10
|
-
|
|
11
|
-
//
|
|
12
|
-
|
|
13
|
-
//
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
1
|
+
module.exports = {
|
|
2
|
+
root: true,
|
|
3
|
+
// https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
|
|
4
|
+
extends: 'standard',
|
|
5
|
+
// required to lint *.vue files
|
|
6
|
+
plugins: [
|
|
7
|
+
'eslint-plugin-html'
|
|
8
|
+
],
|
|
9
|
+
// add your custom rules here
|
|
10
|
+
'rules': {
|
|
11
|
+
// allow paren-less arrow functions
|
|
12
|
+
'arrow-parens': 0,
|
|
13
|
+
// allow debugger during development
|
|
14
|
+
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0
|
|
15
|
+
}
|
|
16
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apply-clients",
|
|
3
|
-
"version": "5.0.35-
|
|
3
|
+
"version": "5.0.35-62",
|
|
4
4
|
"description": "报建前端模块",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"directories": {
|
|
@@ -83,14 +83,14 @@
|
|
|
83
83
|
"ncp": "^2.0.0",
|
|
84
84
|
"nightwatch": "^0.8.18",
|
|
85
85
|
"rimraf": "^2.5.0",
|
|
86
|
-
"sale-client": "
|
|
86
|
+
"sale-client": "1.7.70-ezhou-38",
|
|
87
87
|
"selenium-server": "2.52.0",
|
|
88
88
|
"sinon": "^2.1.0",
|
|
89
89
|
"sinon-chai": "^2.8.0",
|
|
90
90
|
"style": "0.0.3",
|
|
91
91
|
"style-loader": "^0.20.3",
|
|
92
92
|
"system-clients": "1.6.38",
|
|
93
|
-
"system-phone": "1.
|
|
93
|
+
"system-phone": "1.2.76-14-ezhou",
|
|
94
94
|
"url-loader": "^0.5.7",
|
|
95
95
|
"vue-client": "1.23.10",
|
|
96
96
|
"vue-hot-reload-api": "^1.2.0",
|
package/src/AndroidApp.vue
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<!-- <app-base> -->
|
|
3
|
-
<div id="android-app">
|
|
4
|
-
<article>
|
|
5
|
-
<route :comp="{name: 'login-app'}" name="root"></route>
|
|
6
|
-
<!--<route :comp="{name: 'apply_app'}" name="root"></route>-->
|
|
7
|
-
<!--<route :comp="{name: 'applytodolist'}" name="root"></route>-->
|
|
8
|
-
<!--<route :comp="{name: 'paper-state-noncivil'}" name="root"></route>-->
|
|
9
|
-
</article>
|
|
10
|
-
<time-out></time-out>
|
|
11
|
-
<message-box>
|
|
12
|
-
</message-box>
|
|
13
|
-
</div>
|
|
14
|
-
</template>
|
|
15
|
-
|
|
16
|
-
<script>
|
|
17
|
-
|
|
18
|
-
export default {
|
|
19
|
-
ready () {
|
|
20
|
-
if(!window.onerror) {
|
|
21
|
-
window.onerror = function (message, file, line, col, error) {
|
|
22
|
-
// HostApp.alert("Error occured: " + error.message)
|
|
23
|
-
return false
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
</script>
|
|
1
|
+
<template>
|
|
2
|
+
<!-- <app-base> -->
|
|
3
|
+
<div id="android-app">
|
|
4
|
+
<article>
|
|
5
|
+
<route :comp="{name: 'login-app'}" name="root"></route>
|
|
6
|
+
<!--<route :comp="{name: 'apply_app'}" name="root"></route>-->
|
|
7
|
+
<!--<route :comp="{name: 'applytodolist'}" name="root"></route>-->
|
|
8
|
+
<!--<route :comp="{name: 'paper-state-noncivil'}" name="root"></route>-->
|
|
9
|
+
</article>
|
|
10
|
+
<time-out></time-out>
|
|
11
|
+
<message-box>
|
|
12
|
+
</message-box>
|
|
13
|
+
</div>
|
|
14
|
+
</template>
|
|
15
|
+
|
|
16
|
+
<script>
|
|
17
|
+
|
|
18
|
+
export default {
|
|
19
|
+
ready () {
|
|
20
|
+
if(!window.onerror) {
|
|
21
|
+
window.onerror = function (message, file, line, col, error) {
|
|
22
|
+
// HostApp.alert("Error occured: " + error.message)
|
|
23
|
+
return false
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
</script>
|
package/src/android.js
CHANGED
package/src/apply.js
CHANGED
|
@@ -143,9 +143,22 @@ export default function () {
|
|
|
143
143
|
// 售气发票打印
|
|
144
144
|
Vue.component('printbill', (resolve) => { require(['./components/product/Common/PrintBill'], resolve) })
|
|
145
145
|
Vue.component('apply-accept-bill', (resolve) => { require(['./components/product/Process/Processes/Service/ApplyAcceptBill'], resolve) })
|
|
146
|
-
|
|
146
|
+
// 售气发票打印
|
|
147
|
+
Vue.component('bjpaper-ticket-bill', (resolve) => { require(['./components/product/Process/Processes/Service/PaperTicketBill'], resolve) })
|
|
148
|
+
// APP图片显示
|
|
149
|
+
Vue.component('apply-upload', (resolve) => { require(['./components/product/Function/functions/ApplyUpload'], resolve) })
|
|
147
150
|
|
|
148
151
|
Vue.component('apply-stop', (resolve) => { require(['./components/product/stopInfo/ApplyStopInfo'], resolve) })
|
|
149
152
|
|
|
153
|
+
Vue.component('apply-report', (resolve) => { require(['./components/product/applyReport/ApplyReport'], resolve) })
|
|
150
154
|
|
|
155
|
+
Vue.component('print-report-order', (resolve) => { require(['./components/product/applyReport/PrintApplyReport'], resolve) })
|
|
156
|
+
/** 工程管理 **/
|
|
157
|
+
Vue.component('engineer-manage', (resolve) => { require(['./components/product/EngineeringManagement/EngineeringManagement'], resolve) })
|
|
158
|
+
Vue.component('engineer-select', (resolve) => { require(['./components/product/EngineeringManagement/EngineeringSelect'], resolve) })
|
|
159
|
+
Vue.component('engineer-upload', (resolve) => { require(['./components/product/EngineeringManagement/EngineerUpload'], resolve) })
|
|
160
|
+
/** 工程管理流程监控 **/
|
|
161
|
+
Vue.component('engineer-control', (resolve) => { require(['./components/product/EngineeringSupervisory/EngineeringSupervisoryControl'], resolve) })
|
|
162
|
+
Vue.component('engineer-stop', (resolve) => { require(['./components/product/EngineeringSupervisory/EngineeringApplyStopInfo'], resolve) })
|
|
163
|
+
Vue.component('engineer-list', (resolve) => { require(['./components/product/EngineeringSupervisory/EngineeringSupervisoryList'], resolve) })
|
|
151
164
|
}
|
|
@@ -1,164 +1,168 @@
|
|
|
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_user_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.
|
|
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
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
</div>
|
|
55
|
-
</div>
|
|
56
|
-
</div>
|
|
57
|
-
</div>
|
|
58
|
-
</div>
|
|
59
|
-
</div>
|
|
60
|
-
</template>
|
|
61
|
-
<script>
|
|
62
|
-
import Vue from 'vue'
|
|
63
|
-
export default{
|
|
64
|
-
title: '已办报建列表',
|
|
65
|
-
data () {
|
|
66
|
-
return {
|
|
67
|
-
// rows: Object
|
|
68
|
-
rows: [],
|
|
69
|
-
editshow:false,
|
|
70
|
-
row:{
|
|
71
|
-
type:Object,
|
|
72
|
-
default:{
|
|
73
|
-
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
},
|
|
78
|
-
props: {
|
|
79
|
-
sourcet:{
|
|
80
|
-
type:String,
|
|
81
|
-
default:'横屏'
|
|
82
|
-
}
|
|
83
|
-
},
|
|
84
|
-
methods: {
|
|
85
|
-
selected (row) {
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
},
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
console.log(
|
|
107
|
-
|
|
108
|
-
console.log(
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
this
|
|
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
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
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_user_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_defname_type}}
|
|
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
|
+
export default{
|
|
64
|
+
title: '已办报建列表',
|
|
65
|
+
data () {
|
|
66
|
+
return {
|
|
67
|
+
// rows: Object
|
|
68
|
+
rows: [],
|
|
69
|
+
editshow:false,
|
|
70
|
+
row:{
|
|
71
|
+
type:Object,
|
|
72
|
+
default:{
|
|
73
|
+
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
props: {
|
|
79
|
+
sourcet:{
|
|
80
|
+
type:String,
|
|
81
|
+
default:'横屏'
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
methods: {
|
|
85
|
+
selected (row) {
|
|
86
|
+
console.log("999999999999")
|
|
87
|
+
row.canedit = false
|
|
88
|
+
row.defname=row.f_defname_type
|
|
89
|
+
console.log(row.f_defname_type)
|
|
90
|
+
console.log(row.defname)
|
|
91
|
+
if(this.sourcet == '横屏'){
|
|
92
|
+
this.$goto('placecontrolerapp', {row: row},'self',this.search)
|
|
93
|
+
}else{
|
|
94
|
+
this.$goto('placecontrolerapp', {row: row},'self',this.search)
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
back () {
|
|
98
|
+
let _this = this
|
|
99
|
+
_this.$back()
|
|
100
|
+
},
|
|
101
|
+
search () {
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
// app正式运行程序
|
|
106
|
+
console.log('------app开始查询本地已办工单------')
|
|
107
|
+
var condition = ' u.f_app_upload = \'已上传\' '
|
|
108
|
+
console.log(`login_user_id=>>>${Vue.user.id}`)
|
|
109
|
+
var param = {"condition": condition,"id": Vue.user.id}
|
|
110
|
+
console.log(`param=>>>${JSON.stringify(param)}`)
|
|
111
|
+
let res = this.$androidUtil.bzLogic('getapplymobile',param)
|
|
112
|
+
console.log(`前台本地报建已办工单查询结果data=>>>${res.data}`)
|
|
113
|
+
if(res.data){
|
|
114
|
+
this.rows = res.data
|
|
115
|
+
}else{
|
|
116
|
+
this.rows = []
|
|
117
|
+
}
|
|
118
|
+
console.log(`this.rows=>>>${this.rows}`)
|
|
119
|
+
|
|
120
|
+
},
|
|
121
|
+
makeAPhoneCall(phoneNumber) {
|
|
122
|
+
this.$androidUtil.makeAPhoneCall(phoneNumber)
|
|
123
|
+
},
|
|
124
|
+
upload () {
|
|
125
|
+
this.$goto('up-load')
|
|
126
|
+
}
|
|
127
|
+
},
|
|
128
|
+
ready () {
|
|
129
|
+
this.search()
|
|
130
|
+
var _this = this;
|
|
131
|
+
this.timeoutHandle = window.setInterval(function() {
|
|
132
|
+
_this.search()
|
|
133
|
+
}, 6000000)//60000
|
|
134
|
+
},
|
|
135
|
+
created(){
|
|
136
|
+
var result = HostApp.readLocalFile('workflow_apply.json')
|
|
137
|
+
if(result.code == 500){
|
|
138
|
+
this.$showMessage('获取流程配置文件失败,请联系系统管理员')
|
|
139
|
+
return
|
|
140
|
+
}
|
|
141
|
+
var data = JSON.parse(result.data)
|
|
142
|
+
console.log('前台存入缓存中的data=>' + JSON.stringify(data))
|
|
143
|
+
Vue.workflow_vue = Vue.prototype.$workflow_vue = data
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
</script>
|
|
147
|
+
|
|
148
|
+
<style>
|
|
149
|
+
.app-botton {
|
|
150
|
+
position:fixed;
|
|
151
|
+
background: #87b2dd;
|
|
152
|
+
color: #FFF;
|
|
153
|
+
padding: 8px;
|
|
154
|
+
text-align: center;
|
|
155
|
+
font-size: 1.2em;
|
|
156
|
+
z-index: 10;
|
|
157
|
+
opacity:0.5;
|
|
158
|
+
bottom: 50px;
|
|
159
|
+
margin-top: -10px;
|
|
160
|
+
height: 40px;
|
|
161
|
+
}
|
|
162
|
+
.class-a{
|
|
163
|
+
border:1px solid red;
|
|
164
|
+
}
|
|
165
|
+
.padd-div-shu{
|
|
166
|
+
padding-bottom: 5px;
|
|
167
|
+
}
|
|
168
|
+
</style>
|
|
@@ -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.defname}}</p>
|
|
14
|
-
<p>报建日期: {{service.f_apply_date}}</p>
|
|
15
|
-
<p>报建备注: {{service.
|
|
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.defname}}</p>
|
|
14
|
+
<p>报建日期: {{service.f_apply_date}}</p>
|
|
15
|
+
<p>报建备注: {{service.t_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>
|