apply-clients 3.5.4-82 → 3.5.4-83

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 (33) hide show
  1. package/build/dev-server.js +14 -5
  2. package/package.json +1 -1
  3. package/src/apply.js +137 -137
  4. package/src/applyAndroid.js +72 -72
  5. package/src/components/android/AppCheckTakePic.vue +168 -168
  6. package/src/components/android/Process/AppServiceControl.vue +1755 -1755
  7. package/src/components/android/Process/Processes/AppChargeManagement.vue +635 -637
  8. package/src/components/android/Process/Processes/AppChargeManagementNew.vue +635 -637
  9. package/src/components/product/PcZhihuanManagement.vue +160 -160
  10. package/src/components/product/Process/ExplorationSelect.vue +497 -497
  11. package/src/components/product/Process/Processes/chargeManagement.vue +656 -656
  12. package/src/filiale/baiyin/android/ByDeviceManagement.vue +916 -916
  13. package/src/filiale/fugou/android/AppAddMaterialScience.vue +448 -448
  14. package/src/filiale/fugou/android/AppAddReplacement.vue +341 -341
  15. package/src/filiale/fugou/android/AppChargeManagement.vue +739 -739
  16. package/src/filiale/fugou/android/AppServiceControl.vue +1843 -1843
  17. package/src/filiale/fugou/android/AppZhihuanManagement.vue +191 -191
  18. package/src/filiale/fugou/android.js +15 -15
  19. package/src/filiale/fugou/pc/AddReplacement.vue +340 -340
  20. package/src/filiale/fugou/pc/addMaterialScience.vue +481 -481
  21. package/src/filiale/fugou/pc/addressAndUserinfoManagement.vue +216 -216
  22. package/src/filiale/jinhuang/pc/ServiceControl.vue +1925 -1925
  23. package/src/filiale/jinhuang/pc/addressAndUserinfoManagement.vue +203 -0
  24. package/src/filiale/jinhuang/pc/chargeManagementNew.vue +589 -589
  25. package/src/filiale/jinhuang/pc.js +8 -7
  26. package/src/filiale/siyangRH/android/AppAddMaterialScience.vue +466 -466
  27. package/src/filiale/yongzhouch/pc/ApplyUpload.vue +327 -327
  28. package/src/filiale/yongzhouch/pc/ExplorationSelect.vue +490 -490
  29. package/src/filiale/yongzhouch/pc/InstallationDetails.vue +610 -610
  30. package/src/filiale/yongzhouch/pc/ServiceControl.vue +1943 -1943
  31. package/src/filiale/yongzhouch/pc/devicesManagement.vue +488 -488
  32. package/src/filiale/yongzhouch/pc.js +10 -10
  33. package/src/main.js +2 -1
@@ -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>