apply-clients 5.0.35-18 → 5.0.35-19
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 +1 -1
- package/src/AndroidApp.vue +28 -28
- package/src/android.js +18 -18
- package/src/components/app_apply/ApplyDownList.vue +168 -168
- 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 +2822 -2822
- package/src/components/app_apply/PlaceControler.vue +287 -287
- package/src/components/app_apply/ServiceControl.vue +348 -348
- 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 +686 -663
- package/src/components/product/Process/Processes/Service/ApplyChargeSearch.vue +303 -303
- package/src/index.js +8 -8
- package/src/main.js +32 -32
package/.eslintrc.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
module.exports = {
|
|
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
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
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import Vue from 'vue'
|
|
2
|
-
import AndroidApp from './AndroidApp'
|
|
3
|
-
import { all } from 'vue-client'
|
|
4
|
-
import apply from './apply'
|
|
5
|
-
import {systemphonegrid} from 'system-phone'
|
|
6
|
-
import applyAndroid from "./ezhouAndroid";
|
|
7
|
-
|
|
8
|
-
all()
|
|
9
|
-
apply()
|
|
10
|
-
applyAndroid()
|
|
11
|
-
systemphonegrid()
|
|
12
|
-
require('./bootstrap/less/bootstrap.less')
|
|
13
|
-
Vue.android = true
|
|
14
|
-
/* eslint-disable no-new */
|
|
15
|
-
new Vue({
|
|
16
|
-
el: 'body',
|
|
17
|
-
components: { AndroidApp }
|
|
18
|
-
})
|
|
1
|
+
import Vue from 'vue'
|
|
2
|
+
import AndroidApp from './AndroidApp'
|
|
3
|
+
import { all } from 'vue-client'
|
|
4
|
+
import apply from './apply'
|
|
5
|
+
import {systemphonegrid} from 'system-phone'
|
|
6
|
+
import applyAndroid from "./ezhouAndroid";
|
|
7
|
+
|
|
8
|
+
all()
|
|
9
|
+
apply()
|
|
10
|
+
applyAndroid()
|
|
11
|
+
systemphonegrid()
|
|
12
|
+
require('./bootstrap/less/bootstrap.less')
|
|
13
|
+
Vue.android = true
|
|
14
|
+
/* eslint-disable no-new */
|
|
15
|
+
new Vue({
|
|
16
|
+
el: 'body',
|
|
17
|
+
components: { AndroidApp }
|
|
18
|
+
})
|
|
@@ -1,168 +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.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
|
+
<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.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>
|
|
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>
|