apply-clients 3.5.5-73 → 3.5.5-74

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 (35) hide show
  1. package/build/dev-server.js +6 -7
  2. package/package.json +1 -1
  3. package/src/App.vue +2 -2
  4. package/src/components/android/AppCheckTakePic.vue +168 -168
  5. package/src/components/android/Process/AppServiceControl.vue +1755 -1755
  6. package/src/components/product/Install/ContractCharge.vue +210 -210
  7. package/src/components/product/PcZhihuanManagement.vue +160 -160
  8. package/src/components/product/Print/BuildOrder/buildOrderList.vue +339 -339
  9. package/src/components/product/Process/Processes/selectApply.vue +251 -251
  10. package/src/components/product/Process/Processes/selectBcakApply.vue +250 -250
  11. package/src/filiale/fugou/android/AppAddMaterialScience.vue +444 -444
  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/AppExplorationUser.vue +508 -508
  15. package/src/filiale/fugou/android/AppInstallationDetails.vue +542 -542
  16. package/src/filiale/fugou/android/AppServiceControl.vue +1840 -1840
  17. package/src/filiale/fugou/pc/AddReplacement.vue +340 -340
  18. package/src/filiale/fugou/pc/ExplorationSelect.vue +524 -524
  19. package/src/filiale/fugou/pc/ServiceControl.vue +1714 -1714
  20. package/src/filiale/fugou/pc/StopApplyList.vue +291 -291
  21. package/src/filiale/fugou/pc/addMaterialScience.vue +481 -481
  22. package/src/filiale/fugou/pc/addressAndUserinfoManagement.vue +216 -216
  23. package/src/filiale/fugou/pc/chargeReport.vue +215 -215
  24. package/src/filiale/fugou/pc.js +18 -18
  25. package/src/filiale/yangchunboneng/android/AppChargeManagement.vue +527 -527
  26. package/src/filiale/yangchunboneng/android/AppContractCharge.vue +210 -210
  27. package/src/filiale/yangchunboneng/android.js +21 -21
  28. package/src/filiale/yangchunboneng/pc/ApplyUpload.vue +392 -392
  29. package/src/filiale/yangchunboneng/pc/ExplorationSelect.vue +612 -612
  30. package/src/filiale/yangchunboneng/pc/SupervisoryControl.vue +141 -141
  31. package/src/filiale/yangchunboneng/pc.js +29 -29
  32. package/src/main.js +3 -4
  33. package/src/test/SessionTestServlet.java +69 -0
  34. package/webapp/WEB-INF/web.xml +52 -0
  35. package/webapp/session-test.jsp +59 -0
@@ -1,160 +1,160 @@
1
- <template>
2
- <div class="col-sm-12" style="margin: 20px 0px;">
3
- <data-grid :model="model" v-ref:grid class="list_area table_sy" style="padding: 0px">
4
- <template partial='head'>
5
- <tr>
6
- <th class="textNoLineBreak">序号</th>
7
- <th class="textNoLineBreak">检查项目</th>
8
- <th class="textNoLineBreak">检查结果</th>
9
- <th class="textNoLineBreak">操作</th>
10
- </tr>
11
- </template>
12
- <template partial='body'>
13
- <tr>
14
- <td style="text-align: center;">
15
- <nobr>{{$index+1}}</nobr>
16
- </td>
17
- <td style="text-align: center;" >
18
- <nobr>{{row.f_check_list}}</nobr>
19
- </td>
20
- <td style="text-align: center;">
21
- <nobr>{{row.f_check_value}}</nobr>
22
- </td>
23
- <td style="text-align: center;">
24
- <nobr>
25
- <button
26
- type="button"
27
- name="button"
28
- class="btn btn-link"
29
- @click="$parent.$parent.showModal(row)"
30
- >查看照片</button>
31
- </nobr>
32
- </td>
33
- </tr>
34
- </template>
35
- </data-grid>
36
- <validator name="v">
37
- <modal v-if="showCheckModel" :show.sync="showCheckModel" v-ref:modal :large="true" :backdrop="false" title="收费明细">
38
- <header slot="modal-header" class="modal-header">
39
- <button type="button" class="close" @click="closeModal"><span>&times;</span></button>
40
- <h4 class="modal-title">检查明细照片</h4>
41
- </header>
42
- <article slot="modal-body" class="modal-body clearfix">
43
- <div :class="bootstraped ? bootstraped + ' showData' : 'col-sm-6 showData'" v-for="row in fileInfoData">
44
- <div class="col-sm-12 item">
45
- <div class="left col-sm-5">
46
- <a href="#" class="thumbnail" style="width: 100%;height: 100%">
47
- <img :src="row" alt="..."/>
48
- </a>
49
- </div>
50
- </div>
51
- </div>
52
- </article>
53
- <footer slot="modal-footer" class="modal-footer">
54
- </footer>
55
- </modal>
56
- </validator>
57
- </div>
58
- </template>
59
- <script>
60
- import {HttpResetClass} from 'vue-client'
61
- import Vue from 'vue'
62
- import {isEmpty} from "../Util";
63
-
64
- export default {
65
- title: '检查项管理',
66
- props: {
67
- selectdata: {
68
- type: Object
69
- },
70
- },
71
- data () {
72
- return {
73
- model: {
74
- data: null
75
- },
76
- flag:0,
77
- showCheckModel: false,
78
- checkList:{},
79
- item: [{label: '是', value: '是'},{label: '否', value: '否'}],
80
- hasList:false,
81
- savelist:[],
82
- fileInfoData:[]
83
- }
84
- },
85
- ready () {
86
- this.search()
87
- },
88
- methods: {
89
- showModal(row){
90
- this.load(row)
91
- this.showCheckModel=true
92
- },
93
- closeModal() {
94
- this.showCheckModel=false
95
- },
96
- //查询
97
- async search() {
98
- let http = new HttpResetClass()
99
- let data = {
100
- tablename: 't_apply_check',
101
- condition: `f_process_id= '${this.selectdata.f_process_id}'`
102
- }
103
- let res = await http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/sql/apply_singleTable`, {data:data}, {
104
- resolveMsg: null,
105
- rejectMsg: '开发商档案查询失败!!!'
106
- })
107
- if(res.data.length>0){
108
- this.model.data=res.data
109
- }
110
- },
111
- async load(row) {
112
- this.fileInfoData=[]
113
- let condition = ''
114
- condition = `f_blobid= '${this.selectdata.f_process_id}' and fremarks='${this.selectdata.f_apply_num+row.id}' `
115
- let http = new HttpResetClass()
116
- let data = {
117
- tablename: 't_files',
118
- condition: condition + ` order by f_uploaddate desc `
119
- }
120
- let getFile = await http.load('POST', 'rs/sql/apply_singleTable', {data: data}, {
121
- warnMsg: null,
122
- resolveMsg: null
123
- })
124
- for (var i = 0; i < getFile.data.length; i++) {
125
- // 如果使用类型包含导入字样,则是execl文件导入的,不做显示
126
- if(getFile.data[i].fusetype&&(getFile.data[i].fusetype.includes('execl导入'))){
127
- getFile.data.splice(i,1)
128
- i--
129
- continue
130
- }
131
- let temp = getFile.data[i].f_filename
132
- let src = "http://" + location.host + "/rs/image/file/" + temp
133
- this.fileInfoData.push(src)
134
- }
135
- },
136
- },
137
- events: {
138
- },
139
- computed: {
140
- CheckItems() {
141
- return this.$appdata.getParam("报建检查项目")
142
- }
143
- },
144
- watch: {
145
- }
146
- }
147
- </script>
148
- <style scoped>
149
- .textNoLineBreak {
150
- white-space: nowrap;
151
- }
152
- .head-but{
153
- margin-left: 5px;
154
- height: 34px;
155
- /*background-color: #6aa6e2;*/
156
- border-radius: 4px;
157
- font-family: PingFang;
158
- color: #ffffff;
159
- }
160
- </style>
1
+ <template>
2
+ <div class="col-sm-12" style="margin: 20px 0px;">
3
+ <data-grid :model="model" v-ref:grid class="list_area table_sy" style="padding: 0px">
4
+ <template partial='head'>
5
+ <tr>
6
+ <th class="textNoLineBreak">序号</th>
7
+ <th class="textNoLineBreak">检查项目</th>
8
+ <th class="textNoLineBreak">检查结果</th>
9
+ <th class="textNoLineBreak">操作</th>
10
+ </tr>
11
+ </template>
12
+ <template partial='body'>
13
+ <tr>
14
+ <td style="text-align: center;">
15
+ <nobr>{{$index+1}}</nobr>
16
+ </td>
17
+ <td style="text-align: center;" >
18
+ <nobr>{{row.f_check_list}}</nobr>
19
+ </td>
20
+ <td style="text-align: center;">
21
+ <nobr>{{row.f_check_value}}</nobr>
22
+ </td>
23
+ <td style="text-align: center;">
24
+ <nobr>
25
+ <button
26
+ type="button"
27
+ name="button"
28
+ class="btn btn-link"
29
+ @click="$parent.$parent.showModal(row)"
30
+ >查看照片</button>
31
+ </nobr>
32
+ </td>
33
+ </tr>
34
+ </template>
35
+ </data-grid>
36
+ <validator name="v">
37
+ <modal v-if="showCheckModel" :show.sync="showCheckModel" v-ref:modal :large="true" :backdrop="false" title="收费明细">
38
+ <header slot="modal-header" class="modal-header">
39
+ <button type="button" class="close" @click="closeModal"><span>&times;</span></button>
40
+ <h4 class="modal-title">检查明细照片</h4>
41
+ </header>
42
+ <article slot="modal-body" class="modal-body clearfix">
43
+ <div :class="bootstraped ? bootstraped + ' showData' : 'col-sm-6 showData'" v-for="row in fileInfoData">
44
+ <div class="col-sm-12 item">
45
+ <div class="left col-sm-5">
46
+ <a href="#" class="thumbnail" style="width: 100%;height: 100%">
47
+ <img :src="row" alt="..."/>
48
+ </a>
49
+ </div>
50
+ </div>
51
+ </div>
52
+ </article>
53
+ <footer slot="modal-footer" class="modal-footer">
54
+ </footer>
55
+ </modal>
56
+ </validator>
57
+ </div>
58
+ </template>
59
+ <script>
60
+ import {HttpResetClass} from 'vue-client'
61
+ import Vue from 'vue'
62
+ import {isEmpty} from "../Util";
63
+
64
+ export default {
65
+ title: '检查项管理',
66
+ props: {
67
+ selectdata: {
68
+ type: Object
69
+ },
70
+ },
71
+ data () {
72
+ return {
73
+ model: {
74
+ data: null
75
+ },
76
+ flag:0,
77
+ showCheckModel: false,
78
+ checkList:{},
79
+ item: [{label: '是', value: '是'},{label: '否', value: '否'}],
80
+ hasList:false,
81
+ savelist:[],
82
+ fileInfoData:[]
83
+ }
84
+ },
85
+ ready () {
86
+ this.search()
87
+ },
88
+ methods: {
89
+ showModal(row){
90
+ this.load(row)
91
+ this.showCheckModel=true
92
+ },
93
+ closeModal() {
94
+ this.showCheckModel=false
95
+ },
96
+ //查询
97
+ async search() {
98
+ let http = new HttpResetClass()
99
+ let data = {
100
+ tablename: 't_apply_check',
101
+ condition: `f_process_id= '${this.selectdata.f_process_id}'`
102
+ }
103
+ let res = await http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/sql/apply_singleTable`, {data:data}, {
104
+ resolveMsg: null,
105
+ rejectMsg: '开发商档案查询失败!!!'
106
+ })
107
+ if(res.data.length>0){
108
+ this.model.data=res.data
109
+ }
110
+ },
111
+ async load(row) {
112
+ this.fileInfoData=[]
113
+ let condition = ''
114
+ condition = `f_blobid= '${this.selectdata.f_process_id}' and fremarks='${this.selectdata.f_apply_num+row.id}' `
115
+ let http = new HttpResetClass()
116
+ let data = {
117
+ tablename: 't_files',
118
+ condition: condition + ` order by f_uploaddate desc `
119
+ }
120
+ let getFile = await http.load('POST', 'rs/sql/apply_singleTable', {data: data}, {
121
+ warnMsg: null,
122
+ resolveMsg: null
123
+ })
124
+ for (var i = 0; i < getFile.data.length; i++) {
125
+ // 如果使用类型包含导入字样,则是execl文件导入的,不做显示
126
+ if(getFile.data[i].fusetype&&(getFile.data[i].fusetype.includes('execl导入'))){
127
+ getFile.data.splice(i,1)
128
+ i--
129
+ continue
130
+ }
131
+ let temp = getFile.data[i].f_filename
132
+ let src = "http://" + location.host + "/rs/image/file/" + temp
133
+ this.fileInfoData.push(src)
134
+ }
135
+ },
136
+ },
137
+ events: {
138
+ },
139
+ computed: {
140
+ CheckItems() {
141
+ return this.$appdata.getParam("报建检查项目")
142
+ }
143
+ },
144
+ watch: {
145
+ }
146
+ }
147
+ </script>
148
+ <style scoped>
149
+ .textNoLineBreak {
150
+ white-space: nowrap;
151
+ }
152
+ .head-but{
153
+ margin-left: 5px;
154
+ height: 34px;
155
+ /*background-color: #6aa6e2;*/
156
+ border-radius: 4px;
157
+ font-family: PingFang;
158
+ color: #ffffff;
159
+ }
160
+ </style>