apply-clients 7.1.36-yuchuan-7 → 7.1.36-yuchuan-8
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/package.json +1 -1
- package/src/components/android/Ignition/VentilationIgnition.vue +408 -408
- package/src/components/android/Ignition/VentilationIgnitionHandle.vue +1 -1
- package/src/components/android/Process/AppExplorationUser.vue +454 -454
- package/src/components/android/Process/AppServiceControl.vue +4 -4
- package/src/components/android/Process/Processes/AppInstallationDetails.vue +980 -980
- package/src/components/android/Sign/AppSignTask.vue +183 -183
- package/src/components/android/Supervisory/AppProcessSupervisory.vue +1 -1
- package/src/components/android/Task/GuanXianJianShe/AppExplorationGuanXian.vue +317 -317
- package/src/components/android/Task/ShiGongXinXi/AppShowBuildUser.vue +2 -2
- package/src/components/android/Task/yiban/AppShowDone.vue +442 -442
- package/src/components/android/newPackage/customerServiceManager.vue +218 -218
- package/src/components/android/newPackage/projectPrice.vue +218 -218
- package/src/components/product/Process/Processes/InstallationDetails.vue +1159 -1159
- package/src/components/product/Process/Processes/selectChaiChuUserinfo.vue +230 -230
- package/src/components/product/Process/Processes/selectOldUserinfo.vue +241 -241
- package/src/components/product/Process/Processes/selectUserinfo.vue +234 -234
- package/src/components/product/Process/Service/ServiceControl.vue +2205 -2205
- package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +1 -1
|
@@ -1,183 +1,183 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="p-10">
|
|
3
|
-
<criteria-paged :model="model" v-ref:cp>
|
|
4
|
-
<criteria partial='criteria' @condition-changed='$parent.searchCondition' v-ref:cri>
|
|
5
|
-
<div partial class="auto">
|
|
6
|
-
<div class="row form-group app-input">
|
|
7
|
-
<label class="">客户名称:</label>
|
|
8
|
-
<div class="col-xs-8" >
|
|
9
|
-
<input class="" v-model=model.f_user_name condition="u.f_user_name like '%{}%'" />
|
|
10
|
-
</div>
|
|
11
|
-
</div>
|
|
12
|
-
<div class="row form-group app-input" v-if="$parent.$parent.criteriaShow">
|
|
13
|
-
<label class="">联系电话:</label>
|
|
14
|
-
<div class="col-xs-8" >
|
|
15
|
-
<input class="" v-model=model.f_phone condition="u.f_phone like '%{}%'" />
|
|
16
|
-
</div>
|
|
17
|
-
</div>
|
|
18
|
-
<div class="row form-group app-input" v-if="$parent.$parent.criteriaShow">
|
|
19
|
-
<label class="">工程编号:</label>
|
|
20
|
-
<div class="col-xs-8" >
|
|
21
|
-
<input class="" v-model=model.f_apply_num condition="u.f_apply_num like '%{}%'" />
|
|
22
|
-
</div>
|
|
23
|
-
</div>
|
|
24
|
-
<div class="row form-group app-input" v-if="$parent.$parent.criteriaShow">
|
|
25
|
-
<label class="">报建类型:</label>
|
|
26
|
-
<div class="col-xs-8" >
|
|
27
|
-
<v-select
|
|
28
|
-
width="100%"
|
|
29
|
-
v-model="model.f_apply_type"
|
|
30
|
-
placeholder='报建类型'
|
|
31
|
-
condition="u.f_apply_type like '%{}%'"
|
|
32
|
-
:value.sync="model.f_apply_type"
|
|
33
|
-
:options='$parent.$parent.applytype'
|
|
34
|
-
class="select select_list"
|
|
35
|
-
:value-single="true"
|
|
36
|
-
close-on-select ></v-select>
|
|
37
|
-
</div>
|
|
38
|
-
</div>
|
|
39
|
-
<div class="row form-group text-right" style="">
|
|
40
|
-
<button class="btn btn-primary" @click="$parent.$parent.search()">查询</button>
|
|
41
|
-
<button class="btn btn-info" @click="$parent.$parent.clear()">清空</button>
|
|
42
|
-
<button class="btn" :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}" @click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"></button>
|
|
43
|
-
</div>
|
|
44
|
-
</div>
|
|
45
|
-
</criteria>
|
|
46
|
-
|
|
47
|
-
<list :model="model" partial='list'>
|
|
48
|
-
<div partial class="auto app-text panel">
|
|
49
|
-
<div class="panel-body panel-self">
|
|
50
|
-
<div class="col-xs-12">
|
|
51
|
-
<p class="col-xs-3 text-left font"><b>工程编号:</b></p>
|
|
52
|
-
<p class="col-xs-9 text-left input-font">{{ row.f_apply_num }}</p>
|
|
53
|
-
</div>
|
|
54
|
-
<div class="col-xs-12">
|
|
55
|
-
<p class="col-xs-3 text-left font"><b>客户名称:</b></p>
|
|
56
|
-
<p class="col-xs-9 text-left input-font">{{ row.f_user_name }}</p>
|
|
57
|
-
</div>
|
|
58
|
-
<div class="col-xs-12">
|
|
59
|
-
<p class="col-xs-3 text-left font"><b>电  话:</b></p>
|
|
60
|
-
<p class="col-xs-9 text-left input-font">
|
|
61
|
-
{{ row.f_phone }} 
|
|
62
|
-
</p>
|
|
63
|
-
</div>
|
|
64
|
-
<div class="col-xs-12">
|
|
65
|
-
<p class="col-xs-3 text-left font"><b>报建类型:</b></p>
|
|
66
|
-
<p class="col-xs-9 text-left input-font">{{ row.f_apply_type }}</p>
|
|
67
|
-
</div>
|
|
68
|
-
<div class="col-xs-12">
|
|
69
|
-
<p class="col-xs-3 text-left font"><b>办理环节:</b></p>
|
|
70
|
-
<p class="col-xs-9 text-left input-font">{{ row.defname }}</p>
|
|
71
|
-
</div>
|
|
72
|
-
<div class="col-xs-12 text-right">
|
|
73
|
-
<button class="btn btn-info" @click="$parent.$parent.$parent.click(row)">处理</button>
|
|
74
|
-
</div>
|
|
75
|
-
</div>
|
|
76
|
-
</div>
|
|
77
|
-
</list>
|
|
78
|
-
</criteria-paged>
|
|
79
|
-
</div>
|
|
80
|
-
</template>
|
|
81
|
-
<script>
|
|
82
|
-
import Vue from 'vue'
|
|
83
|
-
import { PagedList, HttpResetClass } from 'vue-client'
|
|
84
|
-
export default {
|
|
85
|
-
title: '签字待办',
|
|
86
|
-
data () {
|
|
87
|
-
return {
|
|
88
|
-
model: new PagedList(`${this.$androidUtil.getProxyUrl()}/rs/sql/signcheckuser`, 20, {
|
|
89
|
-
data: {
|
|
90
|
-
userid: Vue.user.id,
|
|
91
|
-
f_filiale:
|
|
92
|
-
}
|
|
93
|
-
}),
|
|
94
|
-
criteriaShow: false,
|
|
95
|
-
applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')]
|
|
96
|
-
}
|
|
97
|
-
},
|
|
98
|
-
ready () {
|
|
99
|
-
this.search()
|
|
100
|
-
},
|
|
101
|
-
methods: {
|
|
102
|
-
clear () {
|
|
103
|
-
Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
|
|
104
|
-
this.$refs.cp.$refs.cri.model[key] = null
|
|
105
|
-
})
|
|
106
|
-
},
|
|
107
|
-
// 查询
|
|
108
|
-
search () {
|
|
109
|
-
this.$refs.cp.$refs.cri.search()
|
|
110
|
-
},
|
|
111
|
-
searchCondition (args) {
|
|
112
|
-
this.model.search(args.condition, args.model)
|
|
113
|
-
},
|
|
114
|
-
click (row) {
|
|
115
|
-
let _this = this
|
|
116
|
-
this.$dispatch('gotoson', {
|
|
117
|
-
_this: _this,
|
|
118
|
-
title: row.defname,
|
|
119
|
-
safe: true
|
|
120
|
-
})
|
|
121
|
-
this.$goto('app-service-control', {selectdata: row}, 'self', _this.search)
|
|
122
|
-
}
|
|
123
|
-
},
|
|
124
|
-
events: {
|
|
125
|
-
},
|
|
126
|
-
watch: {
|
|
127
|
-
},
|
|
128
|
-
computed: {
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
</script>
|
|
132
|
-
<style scoped>
|
|
133
|
-
.panel-self{
|
|
134
|
-
border-radius: 10px;
|
|
135
|
-
border:1px solid #499EDF;
|
|
136
|
-
background-color: #F8F8F8;
|
|
137
|
-
}
|
|
138
|
-
.font{
|
|
139
|
-
font: 15px PingFang-SC-Medium;
|
|
140
|
-
color: #666666;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
.button_shrink_top {
|
|
144
|
-
width: 34px;
|
|
145
|
-
height: 34px;
|
|
146
|
-
border: solid 1px #6aa6e2;
|
|
147
|
-
background-size: 100%;
|
|
148
|
-
background-image: url("../../../../static/newStyle/stretch_top.png")
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
.button_shrink_bottom {
|
|
152
|
-
width: 34px;
|
|
153
|
-
height: 34px;
|
|
154
|
-
border: solid 1px #6aa6e2;
|
|
155
|
-
background-size: 100%;
|
|
156
|
-
background-image: url("../../../../static/newStyle/stretch_bottom.png")
|
|
157
|
-
}
|
|
158
|
-
</style>
|
|
159
|
-
<style lang="less">
|
|
160
|
-
.app-input {
|
|
161
|
-
label {
|
|
162
|
-
float: left;
|
|
163
|
-
}
|
|
164
|
-
.select {
|
|
165
|
-
button {
|
|
166
|
-
border: none;
|
|
167
|
-
outline: none;
|
|
168
|
-
text-align: left;
|
|
169
|
-
.btn-placeholder {
|
|
170
|
-
color: #ACA899
|
|
171
|
-
}
|
|
172
|
-
}
|
|
173
|
-
}
|
|
174
|
-
.datepicker {
|
|
175
|
-
.form-control:focus {
|
|
176
|
-
border: none!important;
|
|
177
|
-
outline: none!important;
|
|
178
|
-
-webkit-box-shadow: none;
|
|
179
|
-
box-shadow: none;
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
}
|
|
183
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="p-10">
|
|
3
|
+
<criteria-paged :model="model" v-ref:cp>
|
|
4
|
+
<criteria partial='criteria' @condition-changed='$parent.searchCondition' v-ref:cri>
|
|
5
|
+
<div partial class="auto">
|
|
6
|
+
<div class="row form-group app-input">
|
|
7
|
+
<label class="">客户名称:</label>
|
|
8
|
+
<div class="col-xs-8" >
|
|
9
|
+
<input class="" v-model=model.f_user_name condition="u.f_user_name like '%{}%'" />
|
|
10
|
+
</div>
|
|
11
|
+
</div>
|
|
12
|
+
<div class="row form-group app-input" v-if="$parent.$parent.criteriaShow">
|
|
13
|
+
<label class="">联系电话:</label>
|
|
14
|
+
<div class="col-xs-8" >
|
|
15
|
+
<input class="" v-model=model.f_phone condition="u.f_phone like '%{}%'" />
|
|
16
|
+
</div>
|
|
17
|
+
</div>
|
|
18
|
+
<div class="row form-group app-input" v-if="$parent.$parent.criteriaShow">
|
|
19
|
+
<label class="">工程编号:</label>
|
|
20
|
+
<div class="col-xs-8" >
|
|
21
|
+
<input class="" v-model=model.f_apply_num condition="u.f_apply_num like '%{}%'" />
|
|
22
|
+
</div>
|
|
23
|
+
</div>
|
|
24
|
+
<div class="row form-group app-input" v-if="$parent.$parent.criteriaShow">
|
|
25
|
+
<label class="">报建类型:</label>
|
|
26
|
+
<div class="col-xs-8" >
|
|
27
|
+
<v-select
|
|
28
|
+
width="100%"
|
|
29
|
+
v-model="model.f_apply_type"
|
|
30
|
+
placeholder='报建类型'
|
|
31
|
+
condition="u.f_apply_type like '%{}%'"
|
|
32
|
+
:value.sync="model.f_apply_type"
|
|
33
|
+
:options='$parent.$parent.applytype'
|
|
34
|
+
class="select select_list"
|
|
35
|
+
:value-single="true"
|
|
36
|
+
close-on-select ></v-select>
|
|
37
|
+
</div>
|
|
38
|
+
</div>
|
|
39
|
+
<div class="row form-group text-right" style="">
|
|
40
|
+
<button class="btn btn-primary" @click="$parent.$parent.search()">查询</button>
|
|
41
|
+
<button class="btn btn-info" @click="$parent.$parent.clear()">清空</button>
|
|
42
|
+
<button class="btn" :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}" @click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"></button>
|
|
43
|
+
</div>
|
|
44
|
+
</div>
|
|
45
|
+
</criteria>
|
|
46
|
+
|
|
47
|
+
<list :model="model" partial='list'>
|
|
48
|
+
<div partial class="auto app-text panel">
|
|
49
|
+
<div class="panel-body panel-self">
|
|
50
|
+
<div class="col-xs-12">
|
|
51
|
+
<p class="col-xs-3 text-left font"><b>工程编号:</b></p>
|
|
52
|
+
<p class="col-xs-9 text-left input-font">{{ row.f_apply_num }}</p>
|
|
53
|
+
</div>
|
|
54
|
+
<div class="col-xs-12">
|
|
55
|
+
<p class="col-xs-3 text-left font"><b>客户名称:</b></p>
|
|
56
|
+
<p class="col-xs-9 text-left input-font">{{ row.f_user_name }}</p>
|
|
57
|
+
</div>
|
|
58
|
+
<div class="col-xs-12">
|
|
59
|
+
<p class="col-xs-3 text-left font"><b>电  话:</b></p>
|
|
60
|
+
<p class="col-xs-9 text-left input-font">
|
|
61
|
+
{{ row.f_phone }} 
|
|
62
|
+
</p>
|
|
63
|
+
</div>
|
|
64
|
+
<div class="col-xs-12">
|
|
65
|
+
<p class="col-xs-3 text-left font"><b>报建类型:</b></p>
|
|
66
|
+
<p class="col-xs-9 text-left input-font">{{ row.f_apply_type }}</p>
|
|
67
|
+
</div>
|
|
68
|
+
<div class="col-xs-12">
|
|
69
|
+
<p class="col-xs-3 text-left font"><b>办理环节:</b></p>
|
|
70
|
+
<p class="col-xs-9 text-left input-font">{{ row.defname }}</p>
|
|
71
|
+
</div>
|
|
72
|
+
<div class="col-xs-12 text-right">
|
|
73
|
+
<button class="btn btn-info" @click="$parent.$parent.$parent.click(row)">处理</button>
|
|
74
|
+
</div>
|
|
75
|
+
</div>
|
|
76
|
+
</div>
|
|
77
|
+
</list>
|
|
78
|
+
</criteria-paged>
|
|
79
|
+
</div>
|
|
80
|
+
</template>
|
|
81
|
+
<script>
|
|
82
|
+
import Vue from 'vue'
|
|
83
|
+
import { PagedList, HttpResetClass } from 'vue-client'
|
|
84
|
+
export default {
|
|
85
|
+
title: '签字待办',
|
|
86
|
+
data () {
|
|
87
|
+
return {
|
|
88
|
+
model: new PagedList(`${this.$androidUtil.getProxyUrl()}/rs/sql/signcheckuser`, 20, {
|
|
89
|
+
data: {
|
|
90
|
+
userid: Vue.user.id,
|
|
91
|
+
f_filiale:Vue.user.f_fengongsi?Vue.user.f_fengongsi:'榆林.榆川天然气'
|
|
92
|
+
}
|
|
93
|
+
}),
|
|
94
|
+
criteriaShow: false,
|
|
95
|
+
applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')]
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
ready () {
|
|
99
|
+
this.search()
|
|
100
|
+
},
|
|
101
|
+
methods: {
|
|
102
|
+
clear () {
|
|
103
|
+
Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
|
|
104
|
+
this.$refs.cp.$refs.cri.model[key] = null
|
|
105
|
+
})
|
|
106
|
+
},
|
|
107
|
+
// 查询
|
|
108
|
+
search () {
|
|
109
|
+
this.$refs.cp.$refs.cri.search()
|
|
110
|
+
},
|
|
111
|
+
searchCondition (args) {
|
|
112
|
+
this.model.search(args.condition, args.model)
|
|
113
|
+
},
|
|
114
|
+
click (row) {
|
|
115
|
+
let _this = this
|
|
116
|
+
this.$dispatch('gotoson', {
|
|
117
|
+
_this: _this,
|
|
118
|
+
title: row.defname,
|
|
119
|
+
safe: true
|
|
120
|
+
})
|
|
121
|
+
this.$goto('app-service-control', {selectdata: row}, 'self', _this.search)
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
events: {
|
|
125
|
+
},
|
|
126
|
+
watch: {
|
|
127
|
+
},
|
|
128
|
+
computed: {
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
</script>
|
|
132
|
+
<style scoped>
|
|
133
|
+
.panel-self{
|
|
134
|
+
border-radius: 10px;
|
|
135
|
+
border:1px solid #499EDF;
|
|
136
|
+
background-color: #F8F8F8;
|
|
137
|
+
}
|
|
138
|
+
.font{
|
|
139
|
+
font: 15px PingFang-SC-Medium;
|
|
140
|
+
color: #666666;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.button_shrink_top {
|
|
144
|
+
width: 34px;
|
|
145
|
+
height: 34px;
|
|
146
|
+
border: solid 1px #6aa6e2;
|
|
147
|
+
background-size: 100%;
|
|
148
|
+
background-image: url("../../../../static/newStyle/stretch_top.png")
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.button_shrink_bottom {
|
|
152
|
+
width: 34px;
|
|
153
|
+
height: 34px;
|
|
154
|
+
border: solid 1px #6aa6e2;
|
|
155
|
+
background-size: 100%;
|
|
156
|
+
background-image: url("../../../../static/newStyle/stretch_bottom.png")
|
|
157
|
+
}
|
|
158
|
+
</style>
|
|
159
|
+
<style lang="less">
|
|
160
|
+
.app-input {
|
|
161
|
+
label {
|
|
162
|
+
float: left;
|
|
163
|
+
}
|
|
164
|
+
.select {
|
|
165
|
+
button {
|
|
166
|
+
border: none;
|
|
167
|
+
outline: none;
|
|
168
|
+
text-align: left;
|
|
169
|
+
.btn-placeholder {
|
|
170
|
+
color: #ACA899
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
.datepicker {
|
|
175
|
+
.form-control:focus {
|
|
176
|
+
border: none!important;
|
|
177
|
+
outline: none!important;
|
|
178
|
+
-webkit-box-shadow: none;
|
|
179
|
+
box-shadow: none;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
</style>
|
|
@@ -213,7 +213,7 @@
|
|
|
213
213
|
model: new PagedList(`${this.$androidUtil.getProxyUrl()}/rs/sql/appSupervisory`, 20, {
|
|
214
214
|
data: {
|
|
215
215
|
id: Vue.user.id,
|
|
216
|
-
f_filiale: Vue.user.f_fengongsi
|
|
216
|
+
f_filiale: Vue.user.f_fengongsi?Vue.user.f_fengongsi:'榆林.榆川天然气'
|
|
217
217
|
}
|
|
218
218
|
}),
|
|
219
219
|
criteriaShow: false,
|