apply-clients 3.5.4-95 → 3.5.4-97

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 (39) hide show
  1. package/build/dev-server.js +9 -7
  2. package/package.json +1 -1
  3. package/src/App.vue +25 -25
  4. package/src/apply.js +139 -139
  5. package/src/components/android/AppCheckTakePic.vue +168 -168
  6. package/src/components/android/Process/AppExplorationUser.vue +508 -508
  7. package/src/components/android/Process/AppServiceControl.vue +1755 -1755
  8. package/src/components/product/PcZhihuanManagement.vue +160 -160
  9. package/src/components/product/Print/BuildOrder/buildOrderList.vue +339 -339
  10. package/src/components/product/Process/Processes/selectApply.vue +251 -251
  11. package/src/components/product/Process/Processes/selectBcakApply.vue +250 -250
  12. package/src/filiale/ancheng/android/AppSign.vue +149 -149
  13. package/src/filiale/ancheng/android/AppTakePic.vue +143 -143
  14. package/src/filiale/ancheng/android.js +7 -7
  15. package/src/filiale/fugou/android/AppAddReplacement.vue +341 -341
  16. package/src/filiale/fugou/android/AppChargeManagement.vue +739 -739
  17. package/src/filiale/fugou/android/AppZhihuanManagement.vue +230 -230
  18. package/src/filiale/fugou/pc/AddReplacement.vue +340 -340
  19. package/src/filiale/fugou/pc/ApplyChargeList.vue +480 -480
  20. package/src/filiale/fugou/pc/addMaterialScience.vue +481 -481
  21. package/src/filiale/fugou/pc/addressAndUserinfoManagement.vue +216 -216
  22. package/src/filiale/fugou/pc/chargeReport.vue +143 -143
  23. package/src/filiale/fugou/pc.js +16 -16
  24. package/src/filiale/hongda/pc/ApplyDetailsList.vue +329 -329
  25. package/src/filiale/qianneng/android/AppServiceView.vue +795 -795
  26. package/src/filiale/qianneng/pc/ApplyChargeList.vue +639 -625
  27. package/src/filiale/qianneng/pc/Applybatchdispatch.vue +769 -704
  28. package/src/filiale/qianneng/pc/Applydetail.vue +417 -378
  29. package/src/filiale/qianneng/pc/InstallInfoSelect.vue +434 -391
  30. package/src/filiale/qianneng/pc/ServiceControl.vue +1382 -1384
  31. package/src/filiale/qianneng/pc/StopApplyList.vue +334 -290
  32. package/src/filiale/qianneng/pc/SupervisoryList.vue +396 -382
  33. package/src/filiale/qianneng/pc/chargeManagement.vue +813 -810
  34. package/src/filiale/yangchunboneng/android/AppServiceControl.vue +2 -2
  35. package/src/filiale/yangchunboneng/pc/ServiceControl.vue +1 -1
  36. package/src/main.js +23 -22
  37. package/src/test/SessionTestServlet.java +0 -69
  38. package/webapp/WEB-INF/web.xml +0 -52
  39. package/webapp/session-test.jsp +0 -59
@@ -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>