apply-clients 3.3.32 → 3.3.36
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/apply.js +3 -0
- package/src/components/android/Function/AppFunctionServiceControl.vue +18 -3
- package/src/components/android/Process/AppServiceControl.vue +756 -756
- package/src/components/product/ApplyCharge/ApplyChargeList.vue +33 -12
- package/src/components/product/Function/Service/FunctionServiceControl.vue +22 -1
- package/src/components/product/Install/InstallProject.vue +194 -0
- package/src/components/product/Material/MaterialDetailed.vue +224 -0
- package/src/components/product/OldApply/Handle/HandleApply.vue +10 -2
- package/src/components/product/OldApply/Monitor/MonitorApply.vue +59 -2
- package/src/components/product/Process/ExplorationSelect.vue +42 -6
- package/src/components/product/Process/Processes/Print/printBuildOrder.vue +105 -48
- package/src/components/product/Process/Processes/Print/printCharge.vue +14 -11
- package/src/components/product/Process/Processes/Print/printRefund.vue +15 -12
- package/src/components/product/Process/Service/ServiceControl.vue +2 -2
- package/src/components/product/Stop/StopApply.vue +101 -103
- package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +9 -3
|
@@ -1,103 +1,101 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="flex-row">
|
|
3
|
-
<div class="basic-main">
|
|
4
|
-
<
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
},
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
this.
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
)
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
this.
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
}
|
|
103
|
-
</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
|
+
export default {
|
|
35
|
+
title: '终止报建',
|
|
36
|
+
data () {
|
|
37
|
+
return {
|
|
38
|
+
showModal: false,
|
|
39
|
+
data: null
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
ready () {
|
|
43
|
+
},
|
|
44
|
+
methods: {
|
|
45
|
+
closeModal () {
|
|
46
|
+
this.showModal = false
|
|
47
|
+
this.data = null
|
|
48
|
+
|
|
49
|
+
this.$refs.query.$refs.cp.$refs.cri.search()
|
|
50
|
+
},
|
|
51
|
+
async confirmModal () {
|
|
52
|
+
let data = {
|
|
53
|
+
data: this.data,
|
|
54
|
+
user: this.$login.f
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
let res = await this.$resetpost(
|
|
58
|
+
`rs/logic/cancelStopApply`,
|
|
59
|
+
{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>
|
|
@@ -149,7 +149,7 @@
|
|
|
149
149
|
if (this.selectdata.components) {
|
|
150
150
|
this.selectdata.components.forEach(item => {
|
|
151
151
|
item.mark = 1
|
|
152
|
-
if (item.supervisory) {
|
|
152
|
+
if (item.supervisory && this[item.supervisory]()) {
|
|
153
153
|
item.mark = 0
|
|
154
154
|
}
|
|
155
155
|
})
|
|
@@ -212,7 +212,7 @@
|
|
|
212
212
|
|
|
213
213
|
// 隐藏所有操作
|
|
214
214
|
item.hiddenOperate = true
|
|
215
|
-
if (item.supervisory) {
|
|
215
|
+
if (item.supervisory && this[item.supervisory]()) {
|
|
216
216
|
item.hiddenOperate = false
|
|
217
217
|
}
|
|
218
218
|
}
|
|
@@ -490,6 +490,12 @@
|
|
|
490
490
|
value: item
|
|
491
491
|
}
|
|
492
492
|
})
|
|
493
|
+
},
|
|
494
|
+
materialSupervisory () {
|
|
495
|
+
if (this.selectdata.userid === this.$login.f.id) {
|
|
496
|
+
return true
|
|
497
|
+
}
|
|
498
|
+
return false
|
|
493
499
|
}
|
|
494
500
|
},
|
|
495
501
|
events:{
|
|
@@ -737,7 +743,7 @@
|
|
|
737
743
|
f_process_id : this.show_data.f_process_id,
|
|
738
744
|
f_operator_id: this.$login.f.id,
|
|
739
745
|
f_operator: this.$login.f.name,
|
|
740
|
-
f_operation_date: new Date(),
|
|
746
|
+
f_operation_date: new Date().Format('yyyy-MM-dd HH:mm:ss'),
|
|
741
747
|
f_orgid: this.$login.f.orgid,
|
|
742
748
|
f_orgname: this.$login.f.orgs
|
|
743
749
|
}
|