apply-clients 3.5.1 → 3.5.3

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 (45) hide show
  1. package/build/dev-server.js +142 -133
  2. package/package.json +118 -118
  3. package/src/App.vue +26 -21
  4. package/src/applyAndroid.js +58 -58
  5. package/src/components/android/AppSign.vue +152 -152
  6. package/src/components/android/AppTakePic.vue +181 -181
  7. package/src/components/android/Process/AppChargeList.vue +224 -224
  8. package/src/components/android/Process/AppExplorationUser.vue +508 -508
  9. package/src/components/android/Process/AppOtherChargeList.vue +255 -219
  10. package/src/components/product/Install/ContractCharge.vue +210 -210
  11. package/src/filiale/fugou/android/AppChargeManagement.vue +625 -625
  12. package/src/filiale/hongda/pc/FunctionServiceControl.vue +526 -525
  13. package/src/filiale/qianneng/android/AppExplorationUser.vue +441 -441
  14. package/src/filiale/qianneng/android/AppServiceControl.vue +1608 -1608
  15. package/src/filiale/qianneng/pc/Applybatchdispatch.vue +685 -685
  16. package/src/filiale/qianneng/pc/ExplorationSelect.vue +492 -492
  17. package/src/filiale/qianneng/pc/FunctionServiceControl.vue +521 -521
  18. package/src/filiale/qianneng/pc/InstallInfoSelect.vue +392 -392
  19. package/src/filiale/qianneng/pc/InstallationDetails.vue +561 -561
  20. package/src/filiale/qianneng/pc/ServiceControl.vue +1351 -1340
  21. package/src/filiale/qianneng/pc/SupervisoryList.vue +344 -344
  22. package/src/filiale/qianneng/pc/SupervisoryServiceControl.vue +871 -871
  23. package/src/filiale/qianneng/pc/chargeManagement.vue +656 -656
  24. package/src/filiale/qianneng/pc/printactivatecard.vue +295 -295
  25. package/src/filiale/qianneng/pc/supplementalAgreement.vue +344 -344
  26. package/src/filiale/yangchunboneng/android/AppAddMaterialScience.vue +390 -390
  27. package/src/filiale/yangchunboneng/android/AppChargeManagement.vue +120 -120
  28. package/src/filiale/yangchunboneng/android/AppDevicesManagement.vue +552 -552
  29. package/src/filiale/yangchunboneng/android/AppExplorationUser.vue +507 -507
  30. package/src/filiale/yangchunboneng/android/AppInstallationDetails.vue +492 -492
  31. package/src/filiale/yangchunboneng/android/AppOtherChargeManagement.vue +116 -116
  32. package/src/filiale/yangchunboneng/android/AppServiceControl.vue +1552 -1552
  33. package/src/filiale/yangchunboneng/android/AppTakePic.vue +181 -181
  34. package/src/filiale/yangchunboneng/android/chargesList.vue +170 -170
  35. package/src/filiale/yangchunboneng/android.js +16 -16
  36. package/src/filiale/yangchunboneng/pc/ExplorationSelect.vue +496 -496
  37. package/src/filiale/yangchunboneng/pc/InstallationDetails.vue +609 -609
  38. package/src/filiale/yangchunboneng/pc/ServiceControl.vue +1782 -1782
  39. package/src/filiale/yangchunboneng/pc/ServiceView.vue +1005 -1005
  40. package/src/filiale/yangchunboneng/pc/addMaterialScience.vue +374 -374
  41. package/src/filiale/yangchunboneng/pc/chargeManagement.vue +960 -960
  42. package/src/filiale/yangchunboneng/pc/devicesManagement.vue +511 -511
  43. package/src/filiale/yangchunboneng/pc/otherchargeManagement.vue +214 -214
  44. package/src/filiale/yangchunboneng/pc.js +17 -17
  45. package/src/main.js +23 -23
@@ -1,170 +1,170 @@
1
- <template>
2
- <div id="tel-charges-list">
3
-
4
- <div class="list">
5
- <div>
6
- <data-grid partial='list' v-ref:grid :model="model" class="list_area table_sy">
7
- <template partial='body'>
8
- <td style="text-align: center;">
9
- <nobr>{{ row.f_payment }}</nobr>
10
- </td>
11
- <td style="text-align: center;">
12
- <nobr>¥{{ row.f_collection }}</nobr>
13
- </td>
14
- <td style="text-align: center;">
15
- <nobr><button @click="$parent.$parent.getAllMaterial(row)">查看</button></nobr>
16
- </td>
17
- </template>
18
- </data-grid>
19
- </div>
20
- <div class="">
21
- <data-grid partial='list' v-ref:grid :model="material" class="list_area table_sy">
22
- <template partial='head'>
23
- <tr>
24
- <th>
25
- <nobr>品名规格</nobr>
26
- </th>
27
- <th>
28
- <nobr>型号</nobr>
29
- </th>
30
- <th>
31
- <nobr>单价</nobr>
32
- </th>
33
- <th>
34
- <nobr>数量</nobr>
35
- <button type="button" name="button" class="btn btn-primary btn-sm btn-img-cl" @click="$parent.$parent.open()" style="margin-left: 20px">
36
- 新增收费
37
- </button>
38
- </th>
39
- </tr>
40
- </template>
41
- <template partial='body'>
42
- <td style="text-align: center;">
43
- <nobr>{{row.f_material_name }}</nobr>
44
- </td>
45
- <td style="text-align: center;">
46
- <nobr>{{ row.f_typenumber }}</nobr>
47
- </td>
48
- <td style="text-align: center;">
49
- <nobr>{{ row.f_material_price }}</nobr>
50
- </td>
51
- <td style="text-align: center;">
52
- <nobr>{{ row.f_material_number }}</nobr>
53
- </td>
54
- </template>
55
- </data-grid>
56
- </div>
57
- </div>
58
- <modal v-if="changeModel" :show.sync="changeModel" :backdrop="false" >
59
- <header slot="modal-header" class="modal-header">
60
- <button type="button" class="close" @click="changeModel=false"><span>&times;</span></button>
61
- <h4 class="modal-title">添加材料</h4>
62
- </header>
63
- <article slot="modal-body" class="modal-body clearfix">
64
- <appinstallation-material v-if="changeModel" :selectdata = "selectdata" @valueChange="change" @aftersave="aftersave()"></appinstallation-material>
65
- </article>
66
- <footer slot="modal-footer" class="modal-footer">
67
-
68
- </footer>
69
- </modal>
70
- </div>
71
- </template>
72
-
73
- <script>
74
- import Vue from 'vue'
75
- import {HttpResetClass} from 'vue-client'
76
- import QRCode from 'qrcodejs2'
77
-
78
-
79
- export default {
80
- title: '材料添加',
81
- props: {
82
- selectdata: {
83
- type: Object
84
- }
85
- },
86
- data() {
87
- return {
88
- model:{rows:[]},
89
- material:{rows:[]},
90
- changeModel:false
91
- }
92
- },
93
- ready() {
94
- this.selectdata.model = {
95
- f_userinfo_id: this.selectdata.f_userinfo_id,
96
- f_user_name: this.selectdata.f_user_name,
97
- f_address: this.selectdata.f_address,
98
- f_user_type: this.selectdata.f_user_type
99
- }
100
- this.getAllOthercharge()
101
- // this.getmaterial()
102
- // this.getmaterialTYPE()
103
-
104
- },
105
- methods: {
106
- open(){
107
- this.changeModel = true
108
- },
109
- aftersave(){
110
- this.getAllOthercharge()
111
- this.changeModel=false
112
- },
113
- getAllOthercharge(){
114
- new HttpResetClass().load('POST',this.$androidUtil.getProxyUrl() +`/rs/sql/tel_singleTable_OrderBy?pageNo=1&pageSize=10`, {data: {
115
- items: '*',
116
- tablename: 't_othercharge',
117
- condition: ` f_voucher_number='${this.selectdata.f_process_id}' and f_state='有效'`,
118
- orderitem: 'id desc'
119
- }},{resolveMsg:null,rejectMsg:null}).then(res=>{
120
- console.log(res)
121
- this.model.rows=res.data
122
- }).catch((e)=>{
123
- console.log("933",e)
124
- })
125
- },
126
- getAllMaterial(row){
127
- new HttpResetClass().load('POST',this.$androidUtil.getProxyUrl() +`/rs/sql/tel_singleTable_OrderBy?pageNo=1&pageSize=100`, {data: {
128
- items: '*',
129
- tablename: 't_material_service',
130
- condition: ` f_othercharge_id='${row.id}'`,
131
- orderitem: 'id desc'
132
- }},{resolveMsg:null,rejectMsg:null}).then(res=>{
133
- console.log(res)
134
- this.material.rows=res.data
135
- }).catch((e)=>{
136
- console.log("933",e)
137
- })
138
- },
139
- },
140
- events: {},
141
- computed: {},
142
- watch: {
143
- }
144
- }
145
- </script>
146
- <style lang="less" scoped>
147
- .head-but {
148
- margin-left: 5px;
149
- height: 34px;
150
- /*background-color: #6aa6e2;*/
151
- border-radius: 4px;
152
- font-family: PingFang;
153
- color: #ffffff;
154
- }
155
-
156
- /*清除model中的浮动*/
157
- .clearfix:after, .clearfix:before {
158
- display: table;
159
- }
160
-
161
- .clearfix:after {
162
- clear: both;
163
- }
164
- #tel-charges-list{
165
- .list{
166
- display: flex;
167
- flex-direction: column;
168
- }
169
- }
170
- </style>
1
+ <template>
2
+ <div id="tel-charges-list">
3
+
4
+ <div class="list">
5
+ <div>
6
+ <data-grid partial='list' v-ref:grid :model="model" class="list_area table_sy">
7
+ <template partial='body'>
8
+ <td style="text-align: center;">
9
+ <nobr>{{ row.f_payment }}</nobr>
10
+ </td>
11
+ <td style="text-align: center;">
12
+ <nobr>¥{{ row.f_collection }}</nobr>
13
+ </td>
14
+ <td style="text-align: center;">
15
+ <nobr><button @click="$parent.$parent.getAllMaterial(row)">查看</button></nobr>
16
+ </td>
17
+ </template>
18
+ </data-grid>
19
+ </div>
20
+ <div class="">
21
+ <data-grid partial='list' v-ref:grid :model="material" class="list_area table_sy">
22
+ <template partial='head'>
23
+ <tr>
24
+ <th>
25
+ <nobr>品名规格</nobr>
26
+ </th>
27
+ <th>
28
+ <nobr>型号</nobr>
29
+ </th>
30
+ <th>
31
+ <nobr>单价</nobr>
32
+ </th>
33
+ <th>
34
+ <nobr>数量</nobr>
35
+ <button type="button" name="button" class="btn btn-primary btn-sm btn-img-cl" @click="$parent.$parent.open()" style="margin-left: 20px">
36
+ 新增收费
37
+ </button>
38
+ </th>
39
+ </tr>
40
+ </template>
41
+ <template partial='body'>
42
+ <td style="text-align: center;">
43
+ <nobr>{{row.f_material_name }}</nobr>
44
+ </td>
45
+ <td style="text-align: center;">
46
+ <nobr>{{ row.f_typenumber }}</nobr>
47
+ </td>
48
+ <td style="text-align: center;">
49
+ <nobr>{{ row.f_material_price }}</nobr>
50
+ </td>
51
+ <td style="text-align: center;">
52
+ <nobr>{{ row.f_material_number }}</nobr>
53
+ </td>
54
+ </template>
55
+ </data-grid>
56
+ </div>
57
+ </div>
58
+ <modal v-if="changeModel" :show.sync="changeModel" :backdrop="false" >
59
+ <header slot="modal-header" class="modal-header">
60
+ <button type="button" class="close" @click="changeModel=false"><span>&times;</span></button>
61
+ <h4 class="modal-title">添加材料</h4>
62
+ </header>
63
+ <article slot="modal-body" class="modal-body clearfix">
64
+ <appinstallation-material v-if="changeModel" :selectdata = "selectdata" @valueChange="change" @aftersave="aftersave()"></appinstallation-material>
65
+ </article>
66
+ <footer slot="modal-footer" class="modal-footer">
67
+
68
+ </footer>
69
+ </modal>
70
+ </div>
71
+ </template>
72
+
73
+ <script>
74
+ import Vue from 'vue'
75
+ import {HttpResetClass} from 'vue-client'
76
+ import QRCode from 'qrcodejs2'
77
+
78
+
79
+ export default {
80
+ title: '材料添加',
81
+ props: {
82
+ selectdata: {
83
+ type: Object
84
+ }
85
+ },
86
+ data() {
87
+ return {
88
+ model:{rows:[]},
89
+ material:{rows:[]},
90
+ changeModel:false
91
+ }
92
+ },
93
+ ready() {
94
+ this.selectdata.model = {
95
+ f_userinfo_id: this.selectdata.f_userinfo_id,
96
+ f_user_name: this.selectdata.f_user_name,
97
+ f_address: this.selectdata.f_address,
98
+ f_user_type: this.selectdata.f_user_type
99
+ }
100
+ this.getAllOthercharge()
101
+ // this.getmaterial()
102
+ // this.getmaterialTYPE()
103
+
104
+ },
105
+ methods: {
106
+ open(){
107
+ this.changeModel = true
108
+ },
109
+ aftersave(){
110
+ this.getAllOthercharge()
111
+ this.changeModel=false
112
+ },
113
+ getAllOthercharge(){
114
+ new HttpResetClass().load('POST',this.$androidUtil.getProxyUrl() +`/rs/sql/tel_singleTable_OrderBy?pageNo=1&pageSize=10`, {data: {
115
+ items: '*',
116
+ tablename: 't_othercharge',
117
+ condition: ` f_voucher_number='${this.selectdata.f_process_id}' and f_state='有效'`,
118
+ orderitem: 'id desc'
119
+ }},{resolveMsg:null,rejectMsg:null}).then(res=>{
120
+ console.log(res)
121
+ this.model.rows=res.data
122
+ }).catch((e)=>{
123
+ console.log("933",e)
124
+ })
125
+ },
126
+ getAllMaterial(row){
127
+ new HttpResetClass().load('POST',this.$androidUtil.getProxyUrl() +`/rs/sql/tel_singleTable_OrderBy?pageNo=1&pageSize=100`, {data: {
128
+ items: '*',
129
+ tablename: 't_material_service',
130
+ condition: ` f_othercharge_id='${row.id}'`,
131
+ orderitem: 'id desc'
132
+ }},{resolveMsg:null,rejectMsg:null}).then(res=>{
133
+ console.log(res)
134
+ this.material.rows=res.data
135
+ }).catch((e)=>{
136
+ console.log("933",e)
137
+ })
138
+ },
139
+ },
140
+ events: {},
141
+ computed: {},
142
+ watch: {
143
+ }
144
+ }
145
+ </script>
146
+ <style lang="less" scoped>
147
+ .head-but {
148
+ margin-left: 5px;
149
+ height: 34px;
150
+ /*background-color: #6aa6e2;*/
151
+ border-radius: 4px;
152
+ font-family: PingFang;
153
+ color: #ffffff;
154
+ }
155
+
156
+ /*清除model中的浮动*/
157
+ .clearfix:after, .clearfix:before {
158
+ display: table;
159
+ }
160
+
161
+ .clearfix:after {
162
+ clear: both;
163
+ }
164
+ #tel-charges-list{
165
+ .list{
166
+ display: flex;
167
+ flex-direction: column;
168
+ }
169
+ }
170
+ </style>
@@ -1,16 +1,16 @@
1
- const Vue = require('vue')
2
- let specialComp = {
3
- 'app-exploration-user': (resolve) => { require(['./android/AppExplorationUser'], resolve) },
4
- 'app-add-material-science': (resolve) => { require(['./android/AppAddMaterialScience'], resolve) },
5
- 'app-apply-devices-management': (resolve) => { require(['./android/AppDevicesManagement'], resolve) },
6
- 'app-charge-management': (resolve) => { require(['./android/AppChargeManagement'], resolve) },
7
- 'app-other-charge-management': (resolve) => { require(['./android/AppOtherChargeManagement'], resolve) },
8
- 'app-chargesList': (resolve) => { require(['./android/chargesList'], resolve) },
9
- 'app-installation-details': (resolve) => { require(['./android/AppInstallationDetails'], resolve) },
10
- 'app-service-control': (resolve) => { require(['./android/AppServiceControl'], resolve) },
11
- 'app-take-pic': (resolve) => { require(['./android/AppTakePic'], resolve) },
12
- 'appinstallation-material': (resolve) => { require(['./android/AppInstallationMaterial'], resolve) },
13
- 'material-one': (resolve) => { require(['./android/MaterIialOne'], resolve) }
14
-
15
- }
16
- exports.specialComp = specialComp
1
+ const Vue = require('vue')
2
+ let specialComp = {
3
+ 'app-exploration-user': (resolve) => { require(['./android/AppExplorationUser'], resolve) },
4
+ 'app-add-material-science': (resolve) => { require(['./android/AppAddMaterialScience'], resolve) },
5
+ 'app-apply-devices-management': (resolve) => { require(['./android/AppDevicesManagement'], resolve) },
6
+ 'app-charge-management': (resolve) => { require(['./android/AppChargeManagement'], resolve) },
7
+ 'app-other-charge-management': (resolve) => { require(['./android/AppOtherChargeManagement'], resolve) },
8
+ 'app-chargesList': (resolve) => { require(['./android/chargesList'], resolve) },
9
+ 'app-installation-details': (resolve) => { require(['./android/AppInstallationDetails'], resolve) },
10
+ 'app-service-control': (resolve) => { require(['./android/AppServiceControl'], resolve) },
11
+ 'app-take-pic': (resolve) => { require(['./android/AppTakePic'], resolve) },
12
+ 'appinstallation-material': (resolve) => { require(['./android/AppInstallationMaterial'], resolve) },
13
+ 'material-one': (resolve) => { require(['./android/MaterIialOne'], resolve) }
14
+
15
+ }
16
+ exports.specialComp = specialComp