apply-clients 3.5.4-90 → 3.5.4-92

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 (50) hide show
  1. package/build/dev-server.js +6 -11
  2. package/package.json +1 -1
  3. package/src/apply.js +139 -137
  4. package/src/components/android/AppCheckTakePic.vue +168 -168
  5. package/src/components/android/AppTakePic.vue +182 -182
  6. package/src/components/android/Process/AppServiceControl.vue +1755 -1755
  7. package/src/components/product/Material/MaterialDetailed.vue +268 -268
  8. package/src/components/product/PcZhihuanManagement.vue +160 -160
  9. package/src/components/product/Process/Processes/selectApply.vue +251 -250
  10. package/src/components/product/Process/Processes/selectBcakApply.vue +250 -0
  11. package/src/filiale/fugou/android/AppAddMaterialScience.vue +440 -440
  12. package/src/filiale/fugou/android/AppAddReplacement.vue +341 -341
  13. package/src/filiale/fugou/android/AppChargeManagement.vue +739 -739
  14. package/src/filiale/fugou/android/AppDevicesManagement.vue +519 -519
  15. package/src/filiale/fugou/android/AppInstallationDetails.vue +541 -541
  16. package/src/filiale/fugou/android/AppServiceControl.vue +1845 -1845
  17. package/src/filiale/fugou/android/AppZhihuanManagement.vue +197 -197
  18. package/src/filiale/fugou/android/printCharge.vue +162 -162
  19. package/src/filiale/fugou/android.js +16 -16
  20. package/src/filiale/fugou/pc/AddReplacement.vue +340 -340
  21. package/src/filiale/fugou/pc/ApplyChargeList.vue +480 -0
  22. package/src/filiale/fugou/pc/ExplorationSelect.vue +525 -525
  23. package/src/filiale/fugou/pc/ServiceControl.vue +1705 -1705
  24. package/src/filiale/fugou/pc/ServiceView.vue +941 -941
  25. package/src/filiale/fugou/pc/addMaterialScience.vue +481 -481
  26. package/src/filiale/fugou/pc/addressAndUserinfoManagement.vue +216 -216
  27. package/src/filiale/fugou/pc/chargeReport.vue +143 -143
  28. package/src/filiale/fugou/pc/devicesManagement.vue +483 -483
  29. package/src/filiale/fugou/pc/printChargepc.vue +148 -148
  30. package/src/filiale/fugou/pc.js +16 -15
  31. package/src/filiale/gongyi/android/AppAddMaterialScience.vue +493 -493
  32. package/src/filiale/qianneng/android/AppChargeManagement.vue +686 -686
  33. package/src/filiale/qianneng/android.js +15 -15
  34. package/src/filiale/qianneng/pc/ApplyMaterialDetailed.vue +261 -261
  35. package/src/filiale/qianneng/pc/Applydetail.vue +378 -378
  36. package/src/filiale/qianneng/pc/InstallFunction.vue +188 -188
  37. package/src/filiale/qianneng/pc.js +29 -29
  38. package/src/filiale/yangchunboneng/android/AppChargeManagement.vue +516 -516
  39. package/src/filiale/yangchunboneng/android/AppDevicesManagement.vue +645 -645
  40. package/src/filiale/yangchunboneng/android/AppServiceControl.vue +1681 -1681
  41. package/src/filiale/yangchunboneng/pc/ExplorationSelect.vue +547 -547
  42. package/src/filiale/yangchunboneng/pc/ServiceControl.vue +2112 -2112
  43. package/src/filiale/yangchunboneng/pc/SupervisoryList.vue +605 -605
  44. package/src/filiale/yangchunboneng/pc/SupervisoryListNew.vue +683 -683
  45. package/src/filiale/yangchunboneng/pc/chargeManagement.vue +1052 -1052
  46. package/src/filiale/yangchunboneng/pc/devicesManagement.vue +574 -574
  47. package/src/main.js +3 -4
  48. package/src/test/SessionTestServlet.java +69 -0
  49. package/webapp/WEB-INF/web.xml +52 -0
  50. package/webapp/session-test.jsp +59 -0
@@ -1,143 +1,143 @@
1
- <template>
2
- <div class="basic-main" style="height: 100%">
3
- <criteria-paged :model="model" :pager='false' v-ref:paged>
4
- <criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:criteria>
5
- <div novalidate class="form-horizontal select-overspread container-fluid auto" partial >
6
- <div class="row">
7
- <div class="col-sm-2" >
8
- <label class="font_normal_body" for="startDate">开始日期:</label>
9
- <datepicker id="startDate" placeholder="开始日期" style="width: 60%"
10
- v-model="model.startDate"
11
- :value.sync="model.startDate"
12
- :disabled-days-of-Week="[]"
13
- :format="'yyyy-MM-dd HH:mm:ss'"
14
- condition="cr.f_charge_date > '{}'"
15
- :show-reset-button="reset">
16
- </datepicker>
17
- </div>
18
- <div class="col-sm-2" >
19
- <label class="font_normal_body" for="endDate">结束日期:</label>
20
- <datepicker id="endDate" placeholder="结束日期" style="width: 60%"
21
- v-model="model.endDate"
22
- :value.sync="model.endDate"
23
- :disabled-days-of-Week="[]"
24
- :format="'yyyy-MM-dd HH:mm:ss'"
25
- condition="cr.f_charge_date < '{}'"
26
- :show-reset-button="reset">
27
- </datepicker>
28
- </div><br>
29
- </div>
30
- <div class="span" style = "float:right;">
31
- <button class="button_search" @click="$parent.$parent.searchData()">查询</button>
32
- <report-print id='gasprice1' top='1cm' left='0' width='100%' height='100%' :preview="true"></report-print>
33
- <report-excel id='gasprice1'></report-excel>
34
- </div>
35
- </div>
36
- </criteria>
37
- <div partial='list' v-el:handcollect id='gasprice1' style="overflow-y: scroll">
38
- <table class='tableprint' style="margin: 0px auto">
39
- <thead>
40
- <tr>
41
- <th :colspan='$parent.spans' style="font-weight: normal; text-align: left;">
42
- <h3 style="text-align: center">报建收费报表</h3>
43
- </th>
44
- </tr>
45
- <tr>
46
- <th :colspan='$parent.spans' style="font-weight: normal; text-align: center;">
47
- 开始时间:{{ $refs.criteria.model.startDate }}&nbsp;&nbsp;&nbsp;
48
- 结束时间:{{ $refs.criteria.model.endDate }}
49
- </th>
50
- </tr>
51
- <tr>
52
- <th :colspan='$parent.spans' style="font-weight: normal; text-align: center;">
53
- 打印时间:{{{$parent.printTime}}}
54
- </th>
55
- </tr>
56
- <tr>
57
- <th :colspan='$parent.spans' style="font-weight: normal; text-align: center;">
58
- <div>
59
- <span v-show="$parent.orgname.trim()!=''">公司:{{$parent.orgname}}</span>
60
- <span v-show="$parent.depname.trim()!=''"> 部门:{{$parent.depname}}</span>
61
- <span v-show="$parent.operatorname.trim()!=''">人员:{{$parent.operatorname}}</span>
62
- </div>
63
- </th>
64
- </tr>
65
- </thead>
66
- <tr>
67
- <td :colspan='$parent.spans' class="norder">
68
- {{{ model.data.substring(26,model.data.length-8) }}}
69
- </td>
70
- </tr>
71
- <tfoot>
72
- </tfoot>
73
- </table>
74
- </div>
75
- </criteria-paged>
76
- </div>
77
- </template>
78
- <script>
79
- import { DataModel } from 'vue-client'
80
- export default {
81
- title: '报建收费报表',
82
- props: ['data'],
83
- data () {
84
- return {
85
- printTime: this.$login.toStandardTimeString(),
86
- depresid: [],
87
- userresid: [],
88
- f_orgid: this.$login.f.orgid,
89
- f_depid: this.$login.f.depids,
90
- f_operatorid: this.$login.f.id,
91
- operatorid: [],
92
- depid: [],
93
- orgname: '',
94
- depname: '',
95
- operatorname: '',
96
- f_inputtor: [],
97
- f_user_type: '',
98
- orgCondtionStr: '1=1',
99
- model: new DataModel('rs/report/fgChargeRecord', {
100
- startDate: 'this.model.startDate', endDate: 'this.model.endDate',
101
- f_orgid: 'this.model.f_orgid'
102
- }),
103
- reportStr: null,
104
- spans: 0,
105
- }
106
- },
107
- ready () {
108
- this.$refs.paged.$refs.criteria.model.startDate = this.$login.toStandardDateString() + ' 00:00:00'
109
- this.$refs.paged.$refs.criteria.model.endDate = this.$login.toStandardDateString() + ' 23:59:59'
110
- this.searchData()
111
- },
112
- created () {
113
- },
114
- methods: {
115
- searchData () {
116
- this.$refs.paged.$refs.criteria.search()
117
- },
118
- selfSearch(args) {
119
- console.log(args)
120
- let orgcondition = 'f_orgid in (' + this.f_orgid + ')'
121
- this.$refs.paged.$refs.criteria.model.f_orgid = orgcondition
122
- this.$refs.paged.search(args)
123
- },
124
- getRes (obj) {
125
- this.orgname = obj.res[0]
126
- this.f_orgid = obj.resids
127
- }
128
- },
129
- watch: {
130
- 'model.data' (val) {
131
- this.spans = val.split('</tr>').map(item => item.split('</td>').length - 1).reduce((x, y) => x > y ? x : y)
132
- },
133
- 'this.$refs.paged.$refs.criteria.model.f_insurance_company' (val) {
134
- console.log(val)
135
- }
136
- }
137
- }
138
- </script>
139
- <style scoped>
140
- .noborder {
141
- border: none;
142
- }
143
- </style>
1
+ <template>
2
+ <div class="basic-main" style="height: 100%">
3
+ <criteria-paged :model="model" :pager='false' v-ref:paged>
4
+ <criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:criteria>
5
+ <div novalidate class="form-horizontal select-overspread container-fluid auto" partial >
6
+ <div class="row">
7
+ <div class="col-sm-2" >
8
+ <label class="font_normal_body" for="startDate">开始日期:</label>
9
+ <datepicker id="startDate" placeholder="开始日期" style="width: 60%"
10
+ v-model="model.startDate"
11
+ :value.sync="model.startDate"
12
+ :disabled-days-of-Week="[]"
13
+ :format="'yyyy-MM-dd HH:mm:ss'"
14
+ condition="cr.f_charge_date > '{}'"
15
+ :show-reset-button="reset">
16
+ </datepicker>
17
+ </div>
18
+ <div class="col-sm-2" >
19
+ <label class="font_normal_body" for="endDate">结束日期:</label>
20
+ <datepicker id="endDate" placeholder="结束日期" style="width: 60%"
21
+ v-model="model.endDate"
22
+ :value.sync="model.endDate"
23
+ :disabled-days-of-Week="[]"
24
+ :format="'yyyy-MM-dd HH:mm:ss'"
25
+ condition="cr.f_charge_date < '{}'"
26
+ :show-reset-button="reset">
27
+ </datepicker>
28
+ </div><br>
29
+ </div>
30
+ <div class="span" style = "float:right;">
31
+ <button class="button_search" @click="$parent.$parent.searchData()">查询</button>
32
+ <report-print id='gasprice1' top='1cm' left='0' width='100%' height='100%' :preview="true"></report-print>
33
+ <report-excel id='gasprice1'></report-excel>
34
+ </div>
35
+ </div>
36
+ </criteria>
37
+ <div partial='list' v-el:handcollect id='gasprice1' style="overflow-y: scroll">
38
+ <table class='tableprint' style="margin: 0px auto">
39
+ <thead>
40
+ <tr>
41
+ <th :colspan='$parent.spans' style="font-weight: normal; text-align: left;">
42
+ <h3 style="text-align: center">报建收费报表</h3>
43
+ </th>
44
+ </tr>
45
+ <tr>
46
+ <th :colspan='$parent.spans' style="font-weight: normal; text-align: center;">
47
+ 开始时间:{{ $refs.criteria.model.startDate }}&nbsp;&nbsp;&nbsp;
48
+ 结束时间:{{ $refs.criteria.model.endDate }}
49
+ </th>
50
+ </tr>
51
+ <tr>
52
+ <th :colspan='$parent.spans' style="font-weight: normal; text-align: center;">
53
+ 打印时间:{{{$parent.printTime}}}
54
+ </th>
55
+ </tr>
56
+ <tr>
57
+ <th :colspan='$parent.spans' style="font-weight: normal; text-align: center;">
58
+ <div>
59
+ <span v-show="$parent.orgname.trim()!=''">公司:{{$parent.orgname}}</span>
60
+ <span v-show="$parent.depname.trim()!=''"> 部门:{{$parent.depname}}</span>
61
+ <span v-show="$parent.operatorname.trim()!=''">人员:{{$parent.operatorname}}</span>
62
+ </div>
63
+ </th>
64
+ </tr>
65
+ </thead>
66
+ <tr>
67
+ <td :colspan='$parent.spans' class="norder">
68
+ {{{ model.data.substring(26,model.data.length-8) }}}
69
+ </td>
70
+ </tr>
71
+ <tfoot>
72
+ </tfoot>
73
+ </table>
74
+ </div>
75
+ </criteria-paged>
76
+ </div>
77
+ </template>
78
+ <script>
79
+ import { DataModel } from 'vue-client'
80
+ export default {
81
+ title: '报建收费报表',
82
+ props: ['data'],
83
+ data () {
84
+ return {
85
+ printTime: this.$login.toStandardTimeString(),
86
+ depresid: [],
87
+ userresid: [],
88
+ f_orgid: this.$login.f.orgid,
89
+ f_depid: this.$login.f.depids,
90
+ f_operatorid: this.$login.f.id,
91
+ operatorid: [],
92
+ depid: [],
93
+ orgname: '',
94
+ depname: '',
95
+ operatorname: '',
96
+ f_inputtor: [],
97
+ f_user_type: '',
98
+ orgCondtionStr: '1=1',
99
+ model: new DataModel('rs/report/fgChargeRecord', {
100
+ startDate: 'this.model.startDate', endDate: 'this.model.endDate',
101
+ f_orgid: 'this.model.f_orgid'
102
+ }),
103
+ reportStr: null,
104
+ spans: 0,
105
+ }
106
+ },
107
+ ready () {
108
+ this.$refs.paged.$refs.criteria.model.startDate = this.$login.toStandardDateString() + ' 00:00:00'
109
+ this.$refs.paged.$refs.criteria.model.endDate = this.$login.toStandardDateString() + ' 23:59:59'
110
+ this.searchData()
111
+ },
112
+ created () {
113
+ },
114
+ methods: {
115
+ searchData () {
116
+ this.$refs.paged.$refs.criteria.search()
117
+ },
118
+ selfSearch(args) {
119
+ console.log(args)
120
+ let orgcondition = 'f_orgid in (' + this.f_orgid + ')'
121
+ this.$refs.paged.$refs.criteria.model.f_orgid = orgcondition
122
+ this.$refs.paged.search(args)
123
+ },
124
+ getRes (obj) {
125
+ this.orgname = obj.res[0]
126
+ this.f_orgid = obj.resids
127
+ }
128
+ },
129
+ watch: {
130
+ 'model.data' (val) {
131
+ this.spans = val.split('</tr>').map(item => item.split('</td>').length - 1).reduce((x, y) => x > y ? x : y)
132
+ },
133
+ 'this.$refs.paged.$refs.criteria.model.f_insurance_company' (val) {
134
+ console.log(val)
135
+ }
136
+ }
137
+ }
138
+ </script>
139
+ <style scoped>
140
+ .noborder {
141
+ border: none;
142
+ }
143
+ </style>