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,120 +1,120 @@
1
- <template>
2
- <div>
3
- <div class="col-sm-12 col-xs-12">
4
- <list :model="model" partial='list'>
5
- <div partial class="auto app-text panel">
6
- <div class="panel-body panel-self">
7
- <div class="row">
8
- <p class="col-xs-4 text-left font"><b>收费金额</b></p>
9
- <p class="col-xs-8 text-left input-font">{{ row.f_charge_money }}</p>
10
- </div>
11
- <div class="row">
12
- <p class="col-xs-4 text-left font"><b>收费项目</b></p>
13
- <p class="col-xs-8 text-left input-font">{{ row.f_payment_term }}</p>
14
- </div>
15
- <div class="row">
16
- <p class="col-xs-4 text-left font"><b>付款方式</b></p>
17
- <p class="col-xs-8 text-left input-font">{{ row.f_payment_method }}</p>
18
- </div>
19
- <div class="row">
20
- <p class="col-xs-4 text-left font"><b>收费人员</b></p>
21
- <p class="col-xs-8 text-left input-font">{{ row.f_charge_collectors }}</p>
22
- </div>
23
- <div class="row">
24
- <p class="col-xs-4 text-left font"><b>收费日期</b></p>
25
- <p class="col-xs-8 text-left input-font">{{ row.f_charge_date }}</p>
26
- </div>
27
- <div class="row">
28
- <p class="col-xs-4 text-left font"><b>收费状态</b></p>
29
- <p class="col-xs-8 text-left input-font">{{ row.f_charge_status }}</p>
30
- </div>
31
- <div class="row">
32
- <p class="col-xs-4 text-left font"><b>确认人</b></p>
33
- <p class="col-xs-8 text-left input-font">{{ row.f_confirm_person }}</p>
34
- </div>
35
- <div class="row">
36
- <p class="col-xs-4 text-left font"><b>确认时间</b></p>
37
- <p class="col-xs-8 text-left input-font">{{ row.f_confirm_date }}</p>
38
- </div>
39
- </div>
40
- </div>
41
- </list>
42
- </div>
43
- </div>
44
- </template>
45
- <script>
46
- import {getNowDate,isEmpty} from '../../../components/Util'
47
- import {PagedList} from 'vue-client'
48
- import {HttpResetClass} from 'vue-client'
49
- import Vue from "vue";
50
-
51
- export default {
52
- title: '收费管理',
53
- props: {
54
- selectdata: {
55
- type: Object
56
- },
57
- mark: {
58
- type: Number,
59
- default: 0
60
- }
61
- },
62
- data () {
63
- return {
64
- model: {
65
- rows: null
66
- }
67
- }
68
- },
69
- ready () {
70
- this.search()
71
- },
72
- methods: {
73
- async search () {
74
- let http = new HttpResetClass()
75
- let data = {
76
- f_process_id: this.selectdata.f_process_id
77
- }
78
- if (this.selectdata.f_apply_type === '启封通气' && this.selectdata.f_apply_type !== '线下发起'){
79
- data = {
80
- f_process_id: this.selectdata.f_parent_process_id
81
- }
82
- }
83
- let res = await http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/sql/getApplyChargeRecord`, {data:data}, {
84
- resolveMsg: null,
85
- rejectMsg: '收费记录查询失败!!!'
86
- })
87
- this.model.rows = res.data
88
- },
89
- },
90
- events: {
91
- },
92
- computed: {
93
- },
94
- watch: {
95
- }
96
- }
97
- </script>
98
- <style scoped lang="less">
99
- .qrcode {
100
- display: inline-block !important;
101
- margin: 10px 0px;
102
- }
103
- .panel-self{
104
- border-radius: 10px;
105
- border:1px solid #499EDF;
106
- background-color: #F8F8F8;
107
- }
108
- .vertical-center {
109
- display: flex;
110
- align-items: center;
111
- text-align: center;
112
- }
113
- /*清除model中的浮动*/
114
- .clearfix:after,.clearfix:before{
115
- display: table;
116
- }
117
- .clearfix:after{
118
- clear: both;
119
- }
120
- </style>
1
+ <template>
2
+ <div>
3
+ <div class="col-sm-12 col-xs-12">
4
+ <list :model="model" partial='list'>
5
+ <div partial class="auto app-text panel">
6
+ <div class="panel-body panel-self">
7
+ <div class="row">
8
+ <p class="col-xs-4 text-left font"><b>收费金额</b></p>
9
+ <p class="col-xs-8 text-left input-font">{{ row.f_charge_money }}</p>
10
+ </div>
11
+ <div class="row">
12
+ <p class="col-xs-4 text-left font"><b>收费项目</b></p>
13
+ <p class="col-xs-8 text-left input-font">{{ row.f_payment_term }}</p>
14
+ </div>
15
+ <div class="row">
16
+ <p class="col-xs-4 text-left font"><b>付款方式</b></p>
17
+ <p class="col-xs-8 text-left input-font">{{ row.f_payment_method }}</p>
18
+ </div>
19
+ <div class="row">
20
+ <p class="col-xs-4 text-left font"><b>收费人员</b></p>
21
+ <p class="col-xs-8 text-left input-font">{{ row.f_charge_collectors }}</p>
22
+ </div>
23
+ <div class="row">
24
+ <p class="col-xs-4 text-left font"><b>收费日期</b></p>
25
+ <p class="col-xs-8 text-left input-font">{{ row.f_charge_date }}</p>
26
+ </div>
27
+ <div class="row">
28
+ <p class="col-xs-4 text-left font"><b>收费状态</b></p>
29
+ <p class="col-xs-8 text-left input-font">{{ row.f_charge_status }}</p>
30
+ </div>
31
+ <div class="row">
32
+ <p class="col-xs-4 text-left font"><b>确认人</b></p>
33
+ <p class="col-xs-8 text-left input-font">{{ row.f_confirm_person }}</p>
34
+ </div>
35
+ <div class="row">
36
+ <p class="col-xs-4 text-left font"><b>确认时间</b></p>
37
+ <p class="col-xs-8 text-left input-font">{{ row.f_confirm_date }}</p>
38
+ </div>
39
+ </div>
40
+ </div>
41
+ </list>
42
+ </div>
43
+ </div>
44
+ </template>
45
+ <script>
46
+ import {getNowDate,isEmpty} from '../../../components/Util'
47
+ import {PagedList} from 'vue-client'
48
+ import {HttpResetClass} from 'vue-client'
49
+ import Vue from "vue";
50
+
51
+ export default {
52
+ title: '收费管理',
53
+ props: {
54
+ selectdata: {
55
+ type: Object
56
+ },
57
+ mark: {
58
+ type: Number,
59
+ default: 0
60
+ }
61
+ },
62
+ data () {
63
+ return {
64
+ model: {
65
+ rows: null
66
+ }
67
+ }
68
+ },
69
+ ready () {
70
+ this.search()
71
+ },
72
+ methods: {
73
+ async search () {
74
+ let http = new HttpResetClass()
75
+ let data = {
76
+ f_process_id: this.selectdata.f_process_id
77
+ }
78
+ if (this.selectdata.f_apply_type === '启封通气' && this.selectdata.f_apply_type !== '线下发起'){
79
+ data = {
80
+ f_process_id: this.selectdata.f_parent_process_id
81
+ }
82
+ }
83
+ let res = await http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/sql/getApplyChargeRecord`, {data:data}, {
84
+ resolveMsg: null,
85
+ rejectMsg: '收费记录查询失败!!!'
86
+ })
87
+ this.model.rows = res.data
88
+ },
89
+ },
90
+ events: {
91
+ },
92
+ computed: {
93
+ },
94
+ watch: {
95
+ }
96
+ }
97
+ </script>
98
+ <style scoped lang="less">
99
+ .qrcode {
100
+ display: inline-block !important;
101
+ margin: 10px 0px;
102
+ }
103
+ .panel-self{
104
+ border-radius: 10px;
105
+ border:1px solid #499EDF;
106
+ background-color: #F8F8F8;
107
+ }
108
+ .vertical-center {
109
+ display: flex;
110
+ align-items: center;
111
+ text-align: center;
112
+ }
113
+ /*清除model中的浮动*/
114
+ .clearfix:after,.clearfix:before{
115
+ display: table;
116
+ }
117
+ .clearfix:after{
118
+ clear: both;
119
+ }
120
+ </style>