apply-clients 4.1.83 → 4.1.84
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 +78 -78
- package/src/components/product/ApplyCharge/ApplyChargeList.vue +251 -251
- package/src/components/product/Function/InstallInfoSelect.vue +294 -294
- package/src/components/product/Function/functions/StopInstall.vue +112 -112
- package/src/components/product/Process/ExplorationSelect.vue +373 -373
- package/src/components/product/Process/Processes/InstallationDetails.vue +513 -513
- package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +1 -1
- package/src/components/product/Process/Processes/chargeManagement.vue +540 -540
- package/src/components/product/Process/Processes/selectUserinfo.vue +205 -205
- package/src/components/product/Process/Processes/splitMaterial.vue +358 -358
- package/src/components/product/Process/Service/ServiceControl.vue +1222 -1222
- package/src/components/product/Process/ShowBackReason.vue +33 -33
- package/src/components/product/ServiceView.vue +802 -802
- package/src/components/product/Stop/StopApplyList.vue +257 -257
- package/src/components/product/Supervisory/SupervisoryControl.vue +121 -121
- package/src/components/product/Supervisory/SupervisoryList.vue +221 -221
|
@@ -1,112 +1,112 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="col-sm-12 auto">
|
|
3
|
-
<validator name="v">
|
|
4
|
-
<form class="form-horizontal">
|
|
5
|
-
<div class="form-group col-sm-12" style="margin: 100px 0px">
|
|
6
|
-
<div class="col-sm-2">
|
|
7
|
-
<label class="control-label col-sm-12">终止原因:</label>
|
|
8
|
-
</div>
|
|
9
|
-
<div class="col-sm-8" :class="model.f_stop_remarks ? '':'has-error'">
|
|
10
|
-
<textarea class="form-control" rows="3" v-model="model.f_stop_remarks"></textarea>
|
|
11
|
-
</div>
|
|
12
|
-
</div>
|
|
13
|
-
<div class="col-sm-12 form-group text-center">
|
|
14
|
-
<div class="col-sm-12 form-group text-center">
|
|
15
|
-
<div class="form-group col-sm-6 center-block">
|
|
16
|
-
<label class="col-sm-4">分公司:</label>
|
|
17
|
-
<div class="col-sm-8" style="text-align: left">
|
|
18
|
-
{{model.f_filiale}}
|
|
19
|
-
</div>
|
|
20
|
-
</div>
|
|
21
|
-
<div class="form-group col-sm-6 center-block">
|
|
22
|
-
<label class="col-sm-4">操作日期:</label>
|
|
23
|
-
<div class="col-sm-8" style="text-align: left">
|
|
24
|
-
{{model.f_date}}
|
|
25
|
-
</div>
|
|
26
|
-
</div>
|
|
27
|
-
</div>
|
|
28
|
-
<div class="col-sm-12 form-group text-center">
|
|
29
|
-
<div class="form-group col-sm-6 center-block">
|
|
30
|
-
<label class="col-sm-4">部门:</label>
|
|
31
|
-
<div class="col-sm-8" style="text-align: left">
|
|
32
|
-
{{model.f_department}}
|
|
33
|
-
</div>
|
|
34
|
-
</div>
|
|
35
|
-
<div class="form-group col-sm-6 center-block">
|
|
36
|
-
<label class="col-sm-4">操作人:</label>
|
|
37
|
-
<div class="col-sm-8" style="text-align: left">
|
|
38
|
-
{{model.f_operator}}
|
|
39
|
-
</div>
|
|
40
|
-
</div>
|
|
41
|
-
</div>
|
|
42
|
-
</div>
|
|
43
|
-
</form>
|
|
44
|
-
</validator>
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
<div class="from-group col-sm-12">
|
|
49
|
-
<center>
|
|
50
|
-
<button type="button" @click="confirm()" :disabled="disabled" class="btn btn-primary" style="width: 100px">
|
|
51
|
-
保存
|
|
52
|
-
</button>
|
|
53
|
-
<button type="button" @click="search()" class="btn btn-primary" style="width: 100px">
|
|
54
|
-
取消
|
|
55
|
-
</button>
|
|
56
|
-
</center>
|
|
57
|
-
</div>
|
|
58
|
-
</div>
|
|
59
|
-
</template>
|
|
60
|
-
<script>
|
|
61
|
-
import * as Util from '../../../Util'
|
|
62
|
-
import {HttpResetClass} from 'vue-client'
|
|
63
|
-
export default {
|
|
64
|
-
title: '终止报建',
|
|
65
|
-
props: ['data'],
|
|
66
|
-
data () {
|
|
67
|
-
return {
|
|
68
|
-
model: {
|
|
69
|
-
f_date: Util.toStandardTimeString(),
|
|
70
|
-
f_department: this.$login.f.f_department_name,
|
|
71
|
-
f_operator: this.$login.f.name,
|
|
72
|
-
f_filiale: this.$login.f.orgs,
|
|
73
|
-
f_stop_remarks: null
|
|
74
|
-
},
|
|
75
|
-
disabled: true // 是否禁用确认按钮
|
|
76
|
-
}
|
|
77
|
-
},
|
|
78
|
-
methods: {
|
|
79
|
-
// 点击确认提交
|
|
80
|
-
confirm () {
|
|
81
|
-
this.disabled = true
|
|
82
|
-
let http = new HttpResetClass()
|
|
83
|
-
let data = {
|
|
84
|
-
loginUser: this.$login.f,
|
|
85
|
-
selectdata: this.data,
|
|
86
|
-
model: this.model
|
|
87
|
-
}
|
|
88
|
-
http.load('POST', 'rs/logic/stopApply', {data: data}, {resolveMsg: null,rejectMsg: '删除失败'})
|
|
89
|
-
.then(res => {
|
|
90
|
-
if (res.data === 200) {
|
|
91
|
-
this.$dispatch('search')
|
|
92
|
-
} else {
|
|
93
|
-
this.$showMessage('终止报建失败')
|
|
94
|
-
}
|
|
95
|
-
})
|
|
96
|
-
},
|
|
97
|
-
search () {
|
|
98
|
-
this.$dispatch('search')
|
|
99
|
-
}
|
|
100
|
-
},
|
|
101
|
-
watch: {
|
|
102
|
-
// 监控确认按钮
|
|
103
|
-
'model.f_stop_remarks' (val) {
|
|
104
|
-
if (val != null || val !== '') {
|
|
105
|
-
this.disabled = false
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
</script>
|
|
111
|
-
<style scoped>
|
|
112
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="col-sm-12 auto">
|
|
3
|
+
<validator name="v">
|
|
4
|
+
<form class="form-horizontal">
|
|
5
|
+
<div class="form-group col-sm-12" style="margin: 100px 0px">
|
|
6
|
+
<div class="col-sm-2">
|
|
7
|
+
<label class="control-label col-sm-12">终止原因:</label>
|
|
8
|
+
</div>
|
|
9
|
+
<div class="col-sm-8" :class="model.f_stop_remarks ? '':'has-error'">
|
|
10
|
+
<textarea class="form-control" rows="3" v-model="model.f_stop_remarks"></textarea>
|
|
11
|
+
</div>
|
|
12
|
+
</div>
|
|
13
|
+
<div class="col-sm-12 form-group text-center">
|
|
14
|
+
<div class="col-sm-12 form-group text-center">
|
|
15
|
+
<div class="form-group col-sm-6 center-block">
|
|
16
|
+
<label class="col-sm-4">分公司:</label>
|
|
17
|
+
<div class="col-sm-8" style="text-align: left">
|
|
18
|
+
{{model.f_filiale}}
|
|
19
|
+
</div>
|
|
20
|
+
</div>
|
|
21
|
+
<div class="form-group col-sm-6 center-block">
|
|
22
|
+
<label class="col-sm-4">操作日期:</label>
|
|
23
|
+
<div class="col-sm-8" style="text-align: left">
|
|
24
|
+
{{model.f_date}}
|
|
25
|
+
</div>
|
|
26
|
+
</div>
|
|
27
|
+
</div>
|
|
28
|
+
<div class="col-sm-12 form-group text-center">
|
|
29
|
+
<div class="form-group col-sm-6 center-block">
|
|
30
|
+
<label class="col-sm-4">部门:</label>
|
|
31
|
+
<div class="col-sm-8" style="text-align: left">
|
|
32
|
+
{{model.f_department}}
|
|
33
|
+
</div>
|
|
34
|
+
</div>
|
|
35
|
+
<div class="form-group col-sm-6 center-block">
|
|
36
|
+
<label class="col-sm-4">操作人:</label>
|
|
37
|
+
<div class="col-sm-8" style="text-align: left">
|
|
38
|
+
{{model.f_operator}}
|
|
39
|
+
</div>
|
|
40
|
+
</div>
|
|
41
|
+
</div>
|
|
42
|
+
</div>
|
|
43
|
+
</form>
|
|
44
|
+
</validator>
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
<div class="from-group col-sm-12">
|
|
49
|
+
<center>
|
|
50
|
+
<button type="button" @click="confirm()" :disabled="disabled" class="btn btn-primary" style="width: 100px">
|
|
51
|
+
保存
|
|
52
|
+
</button>
|
|
53
|
+
<button type="button" @click="search()" class="btn btn-primary" style="width: 100px">
|
|
54
|
+
取消
|
|
55
|
+
</button>
|
|
56
|
+
</center>
|
|
57
|
+
</div>
|
|
58
|
+
</div>
|
|
59
|
+
</template>
|
|
60
|
+
<script>
|
|
61
|
+
import * as Util from '../../../Util'
|
|
62
|
+
import {HttpResetClass} from 'vue-client'
|
|
63
|
+
export default {
|
|
64
|
+
title: '终止报建',
|
|
65
|
+
props: ['data'],
|
|
66
|
+
data () {
|
|
67
|
+
return {
|
|
68
|
+
model: {
|
|
69
|
+
f_date: Util.toStandardTimeString(),
|
|
70
|
+
f_department: this.$login.f.f_department_name,
|
|
71
|
+
f_operator: this.$login.f.name,
|
|
72
|
+
f_filiale: this.$login.f.orgs,
|
|
73
|
+
f_stop_remarks: null
|
|
74
|
+
},
|
|
75
|
+
disabled: true // 是否禁用确认按钮
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
methods: {
|
|
79
|
+
// 点击确认提交
|
|
80
|
+
confirm () {
|
|
81
|
+
this.disabled = true
|
|
82
|
+
let http = new HttpResetClass()
|
|
83
|
+
let data = {
|
|
84
|
+
loginUser: this.$login.f,
|
|
85
|
+
selectdata: this.data,
|
|
86
|
+
model: this.model
|
|
87
|
+
}
|
|
88
|
+
http.load('POST', 'rs/logic/stopApply', {data: data}, {resolveMsg: null,rejectMsg: '删除失败'})
|
|
89
|
+
.then(res => {
|
|
90
|
+
if (res.data === 200) {
|
|
91
|
+
this.$dispatch('search')
|
|
92
|
+
} else {
|
|
93
|
+
this.$showMessage('终止报建失败')
|
|
94
|
+
}
|
|
95
|
+
})
|
|
96
|
+
},
|
|
97
|
+
search () {
|
|
98
|
+
this.$dispatch('search')
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
watch: {
|
|
102
|
+
// 监控确认按钮
|
|
103
|
+
'model.f_stop_remarks' (val) {
|
|
104
|
+
if (val != null || val !== '') {
|
|
105
|
+
this.disabled = false
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
</script>
|
|
111
|
+
<style scoped>
|
|
112
|
+
</style>
|