apply-clients 3.3.51 → 3.3.55

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.
Files changed (36) hide show
  1. package/build/dev-server.js +4 -4
  2. package/package.json +1 -1
  3. package/src/AndroidApp.vue +35 -35
  4. package/src/apply.js +93 -93
  5. package/src/applyAndroid.js +31 -31
  6. package/src/components/android/AppOnetomany.vue +301 -301
  7. package/src/components/android/AppServiceView.vue +566 -566
  8. package/src/components/android/AppSign.vue +142 -142
  9. package/src/components/android/Function/AppInstallFunction.vue +366 -366
  10. package/src/components/android/Process/AppExplorationUser.vue +340 -340
  11. package/src/components/android/Process/AppServiceControl.vue +807 -761
  12. package/src/components/android/Process/Processes/AppBuildSign.vue +46 -46
  13. package/src/components/android/Supervisory/AppProcessSupervisory.vue +300 -300
  14. package/src/components/android/Supervisory/AppSupervisoryCart.vue +119 -119
  15. package/src/components/product/Function/InstallFunction.vue +132 -132
  16. package/src/components/product/Function/Service/FunctionServiceControl.vue +445 -445
  17. package/src/components/product/Material/MaterialDetailed.vue +235 -235
  18. package/src/components/product/OldApply/Monitor/MonitorApply.vue +329 -329
  19. package/src/components/product/OldApply/OldApply.vue +150 -150
  20. package/src/components/product/Onetomany.vue +377 -377
  21. package/src/components/product/Print/BuildOrder/buildOrderList.vue +264 -264
  22. package/src/components/product/Print/BuildOrder/printBuildOrder.vue +153 -153
  23. package/src/components/product/Process/ExplorationSelect.vue +457 -457
  24. package/src/components/product/Process/ExplorationUser.vue +147 -147
  25. package/src/components/product/Process/Processes/InstallationDetails.vue +596 -592
  26. package/src/components/product/Process/Processes/Print/printCharge.vue +142 -142
  27. package/src/components/product/Process/Processes/Print/printRefund.vue +196 -196
  28. package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +211 -207
  29. package/src/components/product/Process/Processes/chargeManagement.vue +656 -656
  30. package/src/components/product/Process/Service/ServiceControl.vue +1311 -1265
  31. package/src/components/product/ServiceView.vue +631 -631
  32. package/src/components/product/Supervisory/SupervisoryControl.vue +137 -137
  33. package/src/components/product/Supervisory/SupervisoryList.vue +296 -296
  34. package/src/components/product/Supervisory/SupervisoryhCart.vue +130 -130
  35. package/src/components/product/VueUtils/ApplyUpload.vue +273 -273
  36. package/src/components/product/VueUtils/HighMeter.vue +208 -208
@@ -1,150 +1,150 @@
1
- <template>
2
- <tab-button v-ref:list>
3
- <tabs header="数据处理" v-if="this.$login.f.rolesnames.indexOf('工程部派工') !== -1 || this.$login.f.rolesnames.indexOf('运营部派工') !== -1 || this.$login.f.rolesnames.indexOf('营业厅报装') !== -1">
4
- <handle-old-apply v-ref:handle></handle-old-apply>
5
- </tabs>
6
- <tabs header="数据查看">
7
- <monitor-old-apply v-ref:monitor></monitor-old-apply>
8
- </tabs>
9
- </tab-button>
10
-
11
- <modal v-if="showMessage" :show.sync="showMessage" backdrop="false" large width="80%">
12
- <header slot="modal-header" class="modal-header">
13
- <button type="button" class="close" @click="closeModal()"><span>&times;</span></button>
14
- <span class="modal-title"><font size="3">详细信息</font></span>
15
- </header>
16
- <article slot="modal-body" class="modal-body clearfix">
17
- <old-apply-message :selectdata="apply" :type="type"></old-apply-message>
18
- </article>
19
- <footer slot="modal-footer" class="modal-footer">
20
- <button v-if="type !== 'monitor'" class="btn btn-primary" type="button" @click="handleApply()">确认</button>
21
- </footer>
22
- </modal>
23
-
24
- <modal v-if="showStop" :show.sync="showStop" backdrop="false" large>
25
- <header slot="modal-header" class="modal-header">
26
- <button type="button" class="close" @click="closeModal()"><span>&times;</span></button>
27
- <span class="modal-title"><font size="3">异常终止</font></span>
28
- </header>
29
- <article slot="modal-body" class="modal-body clearfix">
30
- <div class="col-sm-12 form-group" :class="apply.f_stop_reason ? '':'has-error'">
31
- <label class="control-label-justify control-label col-sm-2" style="line-height: 35px">终止原因</label>
32
- <div class="col-sm-10">
33
- <v-select
34
- width="100%"
35
- v-model="apply.f_stop_reason"
36
- :value.sync="apply.f_stop_reason"
37
- :options='stopReasons'
38
- class="select select_list"
39
- :value-single="true"
40
- close-on-select ></v-select>
41
- </div>
42
- </div>
43
- <div class="col-sm-12 form-group">
44
- <label class="control-label-justify control-label col-sm-2" style="line-height: 55px">终止备注</label>
45
- <div class="col-sm-10">
46
- <textarea
47
- class="form-control input_view"
48
- style="width: 100%;height: 100%" rows="2"
49
- v-model="apply.f_stop_remarks"
50
- :value="apply.f_stop_remarks"
51
- ></textarea>
52
- </div>
53
- </div>
54
- </article>
55
- <footer slot="modal-footer" class="modal-footer">
56
- <button :class="apply.f_stop_reason ? 'btn btn-primary' : 'btn btn-default'"
57
- :disabled="!apply.f_stop_reason" type="button" @click="stopApply()">
58
- 确认
59
- </button>
60
- </footer>
61
- </modal>
62
-
63
- </template>
64
-
65
- <script>
66
- import TabButton from '../../common/TabButton'
67
- import Tabs from '../../common/Tabs'
68
- import {HttpResetClass} from "vue-client";
69
- export default {
70
- title: '旧报装',
71
- components: {Tabs, TabButton},
72
- data () {
73
- return {
74
- show: [true],
75
- showMessage: false,
76
- showStop: false,
77
- apply: null,
78
- type: null,
79
- stopReasons: this.$appdata.getParam('终止原因')
80
- }
81
- },
82
- methods: {
83
- async handleApply () {
84
- let data = {
85
- apply: this.apply,
86
- user: this.$login.f
87
- }
88
-
89
- let http = new HttpResetClass()
90
- let res = await http.load('POST', 'rs/logic/handleOldApply', {data:data}, {
91
- resolveMsg: null,
92
- rejectMsg: '处理失败!!!'
93
- })
94
-
95
- this.closeModal()
96
- },
97
- async stopApply () {
98
- let data = {
99
- apply: this.apply,
100
- user: this.$login.f
101
- }
102
-
103
- let http = new HttpResetClass()
104
- let res = await http.load('POST', 'rs/logic/stopOldApply', {data:data}, {
105
- resolveMsg: null,
106
- rejectMsg: '异常终止失败!!!'
107
- })
108
-
109
- this.closeModal()
110
-
111
- },
112
- closeModal () {
113
- this.showMessage = false
114
- this.showStop = false
115
-
116
- this.apply = null
117
-
118
- this.type = null
119
-
120
- if (this.$refs.handle) {
121
- this.$refs.handle.loadPage()
122
- }
123
- if (this.$refs.monitor) {
124
- this.$refs.monitor.loadPage()
125
- }
126
- console.log(this.$refs)
127
- }
128
- },
129
- events: {
130
- 'stopApply' (apply) {
131
- this.apply = apply
132
- this.showStop = true
133
- },
134
- 'openApply' (apply, type) {
135
- this.showMessage = false
136
-
137
- this.apply = apply
138
- this.type = type
139
-
140
- this.$nextTick(() => {
141
- this.showMessage = true
142
- })
143
- }
144
- }
145
- }
146
- </script>
147
-
148
- <style scoped>
149
-
150
- </style>
1
+ <template>
2
+ <tab-button v-ref:list>
3
+ <tabs header="数据处理" v-if="this.$login.f.rolesnames.indexOf('工程部派工') !== -1 || this.$login.f.rolesnames.indexOf('运营部派工') !== -1 || this.$login.f.rolesnames.indexOf('营业厅报装') !== -1">
4
+ <handle-old-apply v-ref:handle></handle-old-apply>
5
+ </tabs>
6
+ <tabs header="数据查看">
7
+ <monitor-old-apply v-ref:monitor></monitor-old-apply>
8
+ </tabs>
9
+ </tab-button>
10
+
11
+ <modal v-if="showMessage" :show.sync="showMessage" backdrop="false" large width="80%">
12
+ <header slot="modal-header" class="modal-header">
13
+ <button type="button" class="close" @click="closeModal()"><span>&times;</span></button>
14
+ <span class="modal-title"><font size="3">详细信息</font></span>
15
+ </header>
16
+ <article slot="modal-body" class="modal-body clearfix">
17
+ <old-apply-message :selectdata="apply" :type="type"></old-apply-message>
18
+ </article>
19
+ <footer slot="modal-footer" class="modal-footer">
20
+ <button v-if="type !== 'monitor'" class="btn btn-primary" type="button" @click="handleApply()">确认</button>
21
+ </footer>
22
+ </modal>
23
+
24
+ <modal v-if="showStop" :show.sync="showStop" backdrop="false" large>
25
+ <header slot="modal-header" class="modal-header">
26
+ <button type="button" class="close" @click="closeModal()"><span>&times;</span></button>
27
+ <span class="modal-title"><font size="3">异常终止</font></span>
28
+ </header>
29
+ <article slot="modal-body" class="modal-body clearfix">
30
+ <div class="col-sm-12 form-group" :class="apply.f_stop_reason ? '':'has-error'">
31
+ <label class="control-label-justify control-label col-sm-2" style="line-height: 35px">终止原因</label>
32
+ <div class="col-sm-10">
33
+ <v-select
34
+ width="100%"
35
+ v-model="apply.f_stop_reason"
36
+ :value.sync="apply.f_stop_reason"
37
+ :options='stopReasons'
38
+ class="select select_list"
39
+ :value-single="true"
40
+ close-on-select ></v-select>
41
+ </div>
42
+ </div>
43
+ <div class="col-sm-12 form-group">
44
+ <label class="control-label-justify control-label col-sm-2" style="line-height: 55px">终止备注</label>
45
+ <div class="col-sm-10">
46
+ <textarea
47
+ class="form-control input_view"
48
+ style="width: 100%;height: 100%" rows="2"
49
+ v-model="apply.f_stop_remarks"
50
+ :value="apply.f_stop_remarks"
51
+ ></textarea>
52
+ </div>
53
+ </div>
54
+ </article>
55
+ <footer slot="modal-footer" class="modal-footer">
56
+ <button :class="apply.f_stop_reason ? 'btn btn-primary' : 'btn btn-default'"
57
+ :disabled="!apply.f_stop_reason" type="button" @click="stopApply()">
58
+ 确认
59
+ </button>
60
+ </footer>
61
+ </modal>
62
+
63
+ </template>
64
+
65
+ <script>
66
+ import TabButton from '../../common/TabButton'
67
+ import Tabs from '../../common/Tabs'
68
+ import {HttpResetClass} from "vue-client";
69
+ export default {
70
+ title: '旧报装',
71
+ components: {Tabs, TabButton},
72
+ data () {
73
+ return {
74
+ show: [true],
75
+ showMessage: false,
76
+ showStop: false,
77
+ apply: null,
78
+ type: null,
79
+ stopReasons: this.$appdata.getParam('终止原因')
80
+ }
81
+ },
82
+ methods: {
83
+ async handleApply () {
84
+ let data = {
85
+ apply: this.apply,
86
+ user: this.$login.f
87
+ }
88
+
89
+ let http = new HttpResetClass()
90
+ let res = await http.load('POST', 'rs/logic/handleOldApply', {data:data}, {
91
+ resolveMsg: null,
92
+ rejectMsg: '处理失败!!!'
93
+ })
94
+
95
+ this.closeModal()
96
+ },
97
+ async stopApply () {
98
+ let data = {
99
+ apply: this.apply,
100
+ user: this.$login.f
101
+ }
102
+
103
+ let http = new HttpResetClass()
104
+ let res = await http.load('POST', 'rs/logic/stopOldApply', {data:data}, {
105
+ resolveMsg: null,
106
+ rejectMsg: '异常终止失败!!!'
107
+ })
108
+
109
+ this.closeModal()
110
+
111
+ },
112
+ closeModal () {
113
+ this.showMessage = false
114
+ this.showStop = false
115
+
116
+ this.apply = null
117
+
118
+ this.type = null
119
+
120
+ if (this.$refs.handle) {
121
+ this.$refs.handle.loadPage()
122
+ }
123
+ if (this.$refs.monitor) {
124
+ this.$refs.monitor.loadPage()
125
+ }
126
+ console.log(this.$refs)
127
+ }
128
+ },
129
+ events: {
130
+ 'stopApply' (apply) {
131
+ this.apply = apply
132
+ this.showStop = true
133
+ },
134
+ 'openApply' (apply, type) {
135
+ this.showMessage = false
136
+
137
+ this.apply = apply
138
+ this.type = type
139
+
140
+ this.$nextTick(() => {
141
+ this.showMessage = true
142
+ })
143
+ }
144
+ }
145
+ }
146
+ </script>
147
+
148
+ <style scoped>
149
+
150
+ </style>