apply-clients 4.1.63-weinan → 4.1.64-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 +1 -1
- package/src/apply.js +81 -81
- package/src/applyAndroid.js +52 -52
- package/src/components/app_apply/AppChargeManagement.vue +753 -749
- package/src/components/app_apply/AppInstallationDetails.vue +529 -529
- package/src/components/app_apply/AppProcessSupervisory.vue +214 -214
- package/src/components/app_apply/AppSupervisoryCart.vue +68 -68
- package/src/components/app_apply/AppTakePic.vue +146 -146
- package/src/components/app_apply/AppdevicesDetails.vue +867 -867
- package/src/components/app_apply/ApplyInfo.vue +56 -56
- package/src/components/app_apply/ApplyToDoList.vue +292 -292
- package/src/components/app_apply/PlaceControler.vue +274 -274
- package/src/components/app_apply/ServiceControl.vue +440 -440
- package/src/components/app_apply/ServiceView.vue +394 -394
- package/src/components/app_apply/materialshoufei.vue +248 -248
- package/src/components/product/ApplyCharge/ApplyChargeList.vue +252 -252
- package/src/components/product/Process/ExplorationSelect.vue +377 -377
- package/src/components/product/Process/ExplorationUser.vue +134 -134
- package/src/components/product/Process/Processes/InstallationDetails.vue +515 -515
- package/src/components/product/Process/Processes/chargeManagement.vue +545 -545
- package/src/components/product/Process/Processes/devicesDetails.vue +843 -843
- package/src/components/product/Process/Processes/materialshoufei.vue +187 -187
- package/src/components/product/Process/Service/ServiceControl.vue +1490 -1490
- package/src/components/product/Stop/StopApply.vue +101 -101
- package/src/components/product/Stop/StopApplyList.vue +266 -266
- package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +200 -200
- package/src/components/product/Supervisory/SupervisoryControl.vue +124 -124
- package/src/components/product/Supervisory/SupervisoryList.vue +221 -221
- package/src/components/product/VueUtils/ApplyUpload.vue +276 -276
- package/src/main.js +25 -25
|
@@ -1,101 +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
|
-
import {HttpResetClass} from "vue-client";
|
|
35
|
-
|
|
36
|
-
export default {
|
|
37
|
-
title: '终止报建',
|
|
38
|
-
data () {
|
|
39
|
-
return {
|
|
40
|
-
showModal: false,
|
|
41
|
-
data: null
|
|
42
|
-
}
|
|
43
|
-
},
|
|
44
|
-
ready () {
|
|
45
|
-
},
|
|
46
|
-
methods: {
|
|
47
|
-
closeModal () {
|
|
48
|
-
this.showModal = false
|
|
49
|
-
this.data = null
|
|
50
|
-
|
|
51
|
-
this.$refs.query.$refs.cp.$refs.cri.search()
|
|
52
|
-
},
|
|
53
|
-
async confirmModal () {
|
|
54
|
-
let data = {
|
|
55
|
-
model: this.data,
|
|
56
|
-
loginUser: this.$login.f
|
|
57
|
-
}
|
|
58
|
-
let http = new HttpResetClass()
|
|
59
|
-
let res = await http.load('post', `rs/logic/cancelStopApply`, {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>
|
|
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
|
+
import {HttpResetClass} from "vue-client";
|
|
35
|
+
|
|
36
|
+
export default {
|
|
37
|
+
title: '终止报建',
|
|
38
|
+
data () {
|
|
39
|
+
return {
|
|
40
|
+
showModal: false,
|
|
41
|
+
data: null
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
ready () {
|
|
45
|
+
},
|
|
46
|
+
methods: {
|
|
47
|
+
closeModal () {
|
|
48
|
+
this.showModal = false
|
|
49
|
+
this.data = null
|
|
50
|
+
|
|
51
|
+
this.$refs.query.$refs.cp.$refs.cri.search()
|
|
52
|
+
},
|
|
53
|
+
async confirmModal () {
|
|
54
|
+
let data = {
|
|
55
|
+
model: this.data,
|
|
56
|
+
loginUser: this.$login.f
|
|
57
|
+
}
|
|
58
|
+
let http = new HttpResetClass()
|
|
59
|
+
let res = await http.load('post', `rs/logic/cancelStopApply`, {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>
|