apply-clients 4.1.80 → 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 -1218
- 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,33 +1,33 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div style="height: auto;text-align: center" class="col-sm-12" v-if="data != null">
|
|
3
|
-
<span style="color: red;font-family: 微软雅黑;font-weight: bold;font-size: 18px"> 请注意被退回原因为:{{data.f_back_reason}} 退回时间:{{data.f_date}}</span>
|
|
4
|
-
</div>
|
|
5
|
-
</template>
|
|
6
|
-
<script>
|
|
7
|
-
import {HttpResetClass} from 'vue-client'
|
|
8
|
-
|
|
9
|
-
export default {
|
|
10
|
-
title: '退回原因展示',
|
|
11
|
-
props: ['selectdata'],
|
|
12
|
-
data () {
|
|
13
|
-
return {
|
|
14
|
-
data: null
|
|
15
|
-
}
|
|
16
|
-
},
|
|
17
|
-
async created () {
|
|
18
|
-
if (this.selectdata) {
|
|
19
|
-
let http = new HttpResetClass()
|
|
20
|
-
let data = {
|
|
21
|
-
tablename: 't_backcause',
|
|
22
|
-
condition: `actid = '${this.selectdata.actid}' and f_process_id='${this.selectdata.f_process_id}'`
|
|
23
|
-
}
|
|
24
|
-
let res = await http.load('POST', 'rs/sql/singleTable', {data: data}, {
|
|
25
|
-
resolveMsg: null,
|
|
26
|
-
rejectMsg: null
|
|
27
|
-
})
|
|
28
|
-
this.data = res.data[0]
|
|
29
|
-
console.log("ce",this.data)
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
</script>
|
|
1
|
+
<template>
|
|
2
|
+
<div style="height: auto;text-align: center" class="col-sm-12" v-if="data != null">
|
|
3
|
+
<span style="color: red;font-family: 微软雅黑;font-weight: bold;font-size: 18px"> 请注意被退回原因为:{{data.f_back_reason}} 退回时间:{{data.f_date}}</span>
|
|
4
|
+
</div>
|
|
5
|
+
</template>
|
|
6
|
+
<script>
|
|
7
|
+
import {HttpResetClass} from 'vue-client'
|
|
8
|
+
|
|
9
|
+
export default {
|
|
10
|
+
title: '退回原因展示',
|
|
11
|
+
props: ['selectdata'],
|
|
12
|
+
data () {
|
|
13
|
+
return {
|
|
14
|
+
data: null
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
async created () {
|
|
18
|
+
if (this.selectdata) {
|
|
19
|
+
let http = new HttpResetClass()
|
|
20
|
+
let data = {
|
|
21
|
+
tablename: 't_backcause',
|
|
22
|
+
condition: `actid = '${this.selectdata.actid}' and f_process_id='${this.selectdata.f_process_id}'`
|
|
23
|
+
}
|
|
24
|
+
let res = await http.load('POST', 'rs/sql/singleTable', {data: data}, {
|
|
25
|
+
resolveMsg: null,
|
|
26
|
+
rejectMsg: null
|
|
27
|
+
})
|
|
28
|
+
this.data = res.data[0]
|
|
29
|
+
console.log("ce",this.data)
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
</script>
|