apply-clients 3.5.4-93 → 3.5.4-95
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.
- package/build/dev-server.js +6 -11
- package/package.json +1 -1
- package/src/apply.js +139 -139
- package/src/components/android/AppCheckTakePic.vue +168 -168
- package/src/components/android/AppTakePic.vue +182 -182
- package/src/components/android/Process/AppServiceControl.vue +1755 -1755
- package/src/components/product/Material/MaterialDetailed.vue +268 -268
- package/src/components/product/PcZhihuanManagement.vue +160 -160
- package/src/components/product/Print/BuildOrder/buildOrderList.vue +339 -339
- package/src/components/product/Process/Processes/selectApply.vue +251 -251
- package/src/components/product/Process/Processes/selectBcakApply.vue +250 -250
- package/src/filiale/fugou/android/AppAddMaterialScience.vue +440 -440
- package/src/filiale/fugou/android/AppAddReplacement.vue +341 -341
- package/src/filiale/fugou/android/AppChargeManagement.vue +739 -739
- package/src/filiale/fugou/android/AppDevicesManagement.vue +519 -519
- package/src/filiale/fugou/android/AppInstallationDetails.vue +541 -541
- package/src/filiale/fugou/android/AppServiceControl.vue +1845 -1845
- package/src/filiale/fugou/android/AppZhihuanManagement.vue +33 -0
- package/src/filiale/fugou/android/printCharge.vue +162 -162
- package/src/filiale/fugou/android.js +16 -16
- package/src/filiale/fugou/pc/AddReplacement.vue +340 -340
- package/src/filiale/fugou/pc/ApplyChargeList.vue +480 -480
- package/src/filiale/fugou/pc/ExplorationSelect.vue +525 -525
- package/src/filiale/fugou/pc/ServiceControl.vue +1705 -1705
- package/src/filiale/fugou/pc/ServiceView.vue +941 -941
- package/src/filiale/fugou/pc/addMaterialScience.vue +481 -481
- package/src/filiale/fugou/pc/addressAndUserinfoManagement.vue +216 -216
- package/src/filiale/fugou/pc/chargeReport.vue +143 -143
- package/src/filiale/fugou/pc/devicesManagement.vue +483 -483
- package/src/filiale/fugou/pc/printChargepc.vue +148 -148
- package/src/filiale/fugou/pc.js +16 -16
- package/src/filiale/gongyi/android/AppAddMaterialScience.vue +493 -493
- package/src/filiale/qianneng/android/AppChargeManagement.vue +686 -686
- package/src/filiale/qianneng/android/AppServiceView.vue +1 -0
- package/src/filiale/qianneng/android.js +15 -15
- package/src/filiale/qianneng/pc/ApplyMaterialDetailed.vue +261 -261
- package/src/filiale/qianneng/pc/Applydetail.vue +378 -378
- package/src/filiale/qianneng/pc/InstallFunction.vue +188 -188
- package/src/filiale/qianneng/pc.js +29 -29
- package/src/filiale/yangchunboneng/android/AppChargeManagement.vue +520 -520
- package/src/filiale/yangchunboneng/android/AppDevicesManagement.vue +645 -645
- package/src/filiale/yangchunboneng/android/AppServiceControl.vue +1703 -1681
- package/src/filiale/yangchunboneng/pc/ExplorationSelect.vue +547 -547
- package/src/filiale/yangchunboneng/pc/ServiceControl.vue +2112 -2112
- package/src/filiale/yangchunboneng/pc/SupervisoryList.vue +605 -605
- package/src/filiale/yangchunboneng/pc/SupervisoryListNew.vue +683 -683
- package/src/filiale/yangchunboneng/pc/chargeManagement.vue +1052 -1052
- package/src/filiale/yangchunboneng/pc/devicesManagement.vue +574 -574
- package/src/main.js +3 -4
- package/src/test/SessionTestServlet.java +69 -0
- package/webapp/WEB-INF/web.xml +52 -0
- 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>×</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>×</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>
|