apply-clients 3.3.207 → 3.3.212
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/package.json +1 -1
- package/src/components/android/AppTakePic.vue +2 -1
- package/src/components/image/dwg.jpg +0 -0
- package/src/components/image/yasuobao.jpg +0 -0
- package/src/components/product/Function/Inform.vue +73 -74
- package/src/components/product/Function/InstallInfoSelect.vue +318 -289
- package/src/components/product/Function/MarketSurvey.vue +81 -80
- package/src/components/product/VueUtils/ApplyUpload.vue +264 -262
|
@@ -1,80 +1,81 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
|
|
3
|
-
<div style="margin-left: 50% ;"> <button class="btn btn-primary"@click.prevent="showPrintModal()">打印调研表</button> </div>
|
|
4
|
-
|
|
5
|
-
<modal :show.sync="showQuery">
|
|
6
|
-
<header slot="modal-header" class="modal-header">
|
|
7
|
-
<h3 style="color:black" class="modal-title">调研表打印</h3>
|
|
8
|
-
</header>
|
|
9
|
-
<article slot="modal-body" class="modal-body">
|
|
10
|
-
<div
|
|
11
|
-
<
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
import
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
let
|
|
60
|
-
this.
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
1
|
+
<template>
|
|
2
|
+
|
|
3
|
+
<div style="margin-left: 50% ;"> <button class="btn btn-primary"@click.prevent="showPrintModal()">打印调研表</button> </div>
|
|
4
|
+
|
|
5
|
+
<modal :show.sync="showQuery" style="width: 100%">
|
|
6
|
+
<header slot="modal-header" class="modal-header">
|
|
7
|
+
<h3 style="color:black" class="modal-title">调研表打印</h3>
|
|
8
|
+
</header>
|
|
9
|
+
<article slot="modal-body" class="modal-body"style="width: 100%">
|
|
10
|
+
<div >
|
|
11
|
+
<div id="print">
|
|
12
|
+
<br />
|
|
13
|
+
<font style="text-align: center;font-style: normal;font-size: 30px">{{selectdata.f_orgname}}市场调查报告</font>
|
|
14
|
+
<h4 style="margin-left: 70%">{{selectdata.operate_date}}</h4>
|
|
15
|
+
{{{ model.data }}}
|
|
16
|
+
<h5 style="margin-right: 25%">说明:以上甲方提供的用气设备及参数为出具工程预算书的依据,燃气表、燃气管道管径等设备的选择将以此为依据,应以甲方提供用气设备的铭牌数据为准,不能提供时可参照相关灶具额定用气量。</h5>
|
|
17
|
+
</div>
|
|
18
|
+
</div>
|
|
19
|
+
</article>
|
|
20
|
+
|
|
21
|
+
<footer slot="modal-footer" class="modal-footer">
|
|
22
|
+
<print-element v-ref:print v-show="false" id='print' styleid='style2'
|
|
23
|
+
top='10' left='60' width='100%' height='100%'>
|
|
24
|
+
</print-element>
|
|
25
|
+
<button type="button" class="btn btn-primary" @click="print()">打印</button>
|
|
26
|
+
</footer>
|
|
27
|
+
|
|
28
|
+
</modal>
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
</template>
|
|
35
|
+
|
|
36
|
+
<script>
|
|
37
|
+
import Vue from 'vue'
|
|
38
|
+
import {HttpResetClass} from 'vue-client'
|
|
39
|
+
export default {
|
|
40
|
+
title: '打印调研单',
|
|
41
|
+
props:{
|
|
42
|
+
selectdata: {
|
|
43
|
+
type :Object
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
|
|
47
|
+
data () {
|
|
48
|
+
return {
|
|
49
|
+
showQuery: false,
|
|
50
|
+
model: '',
|
|
51
|
+
showPrint: false,
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
methods: {
|
|
55
|
+
|
|
56
|
+
// 获取页面配置json文件
|
|
57
|
+
async loadName () {
|
|
58
|
+
console.log('-------------',this.$parent.data,typeof this.$parent.data)
|
|
59
|
+
let http = new HttpResetClass()
|
|
60
|
+
let response = await http.load('POST', 'rs/report/market_survey', {data:{id:this.$parent.data.f_process_id}},{resolveMsg: null, rejectMsg: null})
|
|
61
|
+
this.model=response
|
|
62
|
+
console.log('-------------',this.model)
|
|
63
|
+
},
|
|
64
|
+
async showPrintModal () {
|
|
65
|
+
this.showQuery=! this.showQuery
|
|
66
|
+
console.log('-------------',this.selectdata)
|
|
67
|
+
await this.loadName()
|
|
68
|
+
}
|
|
69
|
+
, print () {
|
|
70
|
+
this.$refs.print.PrintTable()
|
|
71
|
+
},
|
|
72
|
+
closeModal () {
|
|
73
|
+
this.showPrint = false
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
</script>
|
|
78
|
+
|
|
79
|
+
<style scoped>
|
|
80
|
+
|
|
81
|
+
</style>
|