apply-clients 5.0.35-64 → 5.0.35-67
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/app_apply/ApplyToDoList.vue +2820 -2820
- package/src/components/app_apply/ServiceControl.vue +727 -540
- package/src/components/app_apply/ezhou/ServiceView.vue +808 -810
- package/src/components/product/Common/PrintBill.vue +121 -121
- package/src/components/product/EngineeringManagement/EngineerUpload.vue +304 -304
- package/src/components/product/EngineeringManagement/EngineeringManagement.vue +137 -137
- package/src/components/product/EngineeringManagement/EngineeringSelect.vue +588 -588
- package/src/components/product/EngineeringSupervisory/EngineeringApplyStopInfo.vue +281 -281
- package/src/components/product/EngineeringSupervisory/EngineeringSupervisoryControl.vue +130 -130
- package/src/components/product/EngineeringSupervisory/EngineeringSupervisoryList.vue +350 -350
- package/src/components/product/Function/InstallInfoSelect.vue +255 -255
- package/src/components/product/Function/functions/BuyerMessage.vue +512 -512
- package/src/components/product/Function/functions/InstallFee.vue +1144 -1144
- package/src/components/product/Process/ExplorationSelect.vue +640 -640
- package/src/components/product/Process/Processes/Service/PaperTicketBill.vue +85 -85
- package/src/components/product/Process/Processes/Service/ServiceControl.vue +2147 -2091
- package/src/components/product/Supervisory/SupervisoryList.vue +350 -350
- package/src/components/product/stopInfo/ApplyStopInfo.vue +281 -281
- package/src/ezhouAndroid.js +48 -48
|
@@ -1,85 +1,85 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="auto form-horizontal" >
|
|
3
|
-
<modal :show.sync="show" v-ref:modal large backdrop="false">
|
|
4
|
-
<header slot="modal-header" class="modal-header">
|
|
5
|
-
<h3 style="color:black" class="modal-title">发票号</h3>
|
|
6
|
-
</header>
|
|
7
|
-
<article slot="modal-body" class="modal-body">
|
|
8
|
-
|
|
9
|
-
<validator name='v'>
|
|
10
|
-
<form class="form-horizontal select-overspread">
|
|
11
|
-
<div class="row" style="display: flex;justify-content: center;" id='normal-bill2' >
|
|
12
|
-
<div class="form-group col-sm-6">
|
|
13
|
-
<label class=" col-sm-2 control-label">发票代码:</label>
|
|
14
|
-
<input type="text" class="form-control" v-model="model.f_bill_code" style="width:60%"
|
|
15
|
-
placeholder="发票代码" disabled
|
|
16
|
-
>
|
|
17
|
-
</div>
|
|
18
|
-
<div class="form-group col-sm-6">
|
|
19
|
-
<label class=" col-sm-2 control-label">发票号码:</label>
|
|
20
|
-
<input type="text" class="form-control" v-model="model.f_bill_number" style="width:60%"
|
|
21
|
-
placeholder="发票号码" disabled
|
|
22
|
-
>
|
|
23
|
-
</div>
|
|
24
|
-
</div>
|
|
25
|
-
</form>
|
|
26
|
-
</validator>
|
|
27
|
-
</article>
|
|
28
|
-
<footer slot="modal-footer" class="modal-footer">
|
|
29
|
-
<button type="button" class="btn btn-default" @click='cancel()' >取消</button>
|
|
30
|
-
</footer>
|
|
31
|
-
</modal>
|
|
32
|
-
</div>
|
|
33
|
-
</template>
|
|
34
|
-
<script>
|
|
35
|
-
import { DataModel } from 'vue-client'
|
|
36
|
-
let getBillData = async function(self) {
|
|
37
|
-
if(self.data.eticketid){
|
|
38
|
-
let res=await self.$resetpost("rs/sql/applysingleTable",{data:{tablename:"t_eticket",condition:` id= ${self.data.eticketid}`}})
|
|
39
|
-
console.log("看看res",res)
|
|
40
|
-
self.model.f_bill_code=res.data[0].f_bill_code
|
|
41
|
-
self.model.f_bill_number=res.data[0].f_bill_number
|
|
42
|
-
}else{
|
|
43
|
-
let res=await self.$resetpost("rs/sql/applysingleTable",{data:{tablename:"t_eticket",condition:` f_sell_id=${self.data.id}`}})
|
|
44
|
-
console.log("看看res",res)
|
|
45
|
-
self.model.f_bill_code=res.data[0].f_bill_code
|
|
46
|
-
self.model.f_bill_number=res.data[0].f_bill_number
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
export default {
|
|
51
|
-
title: '收费发票',
|
|
52
|
-
data () {
|
|
53
|
-
return {
|
|
54
|
-
model:{
|
|
55
|
-
f_bill_code:'',
|
|
56
|
-
f_bill_number:''
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
},
|
|
60
|
-
props: ['show', 'data'],
|
|
61
|
-
ready () {
|
|
62
|
-
},
|
|
63
|
-
methods: {
|
|
64
|
-
cancel () {
|
|
65
|
-
this.$dispatch('toggle')
|
|
66
|
-
},
|
|
67
|
-
},
|
|
68
|
-
watch: {
|
|
69
|
-
'show' (val) {
|
|
70
|
-
if (val) {
|
|
71
|
-
getBillData(this, val).then(() => {
|
|
72
|
-
this.$emit('ready')
|
|
73
|
-
}).catch((error) => {
|
|
74
|
-
this.$emit('error', error)
|
|
75
|
-
})
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
},
|
|
79
|
-
events: {
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
</script>
|
|
84
|
-
<style >
|
|
85
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="auto form-horizontal" >
|
|
3
|
+
<modal :show.sync="show" v-ref:modal large backdrop="false">
|
|
4
|
+
<header slot="modal-header" class="modal-header">
|
|
5
|
+
<h3 style="color:black" class="modal-title">发票号</h3>
|
|
6
|
+
</header>
|
|
7
|
+
<article slot="modal-body" class="modal-body">
|
|
8
|
+
|
|
9
|
+
<validator name='v'>
|
|
10
|
+
<form class="form-horizontal select-overspread">
|
|
11
|
+
<div class="row" style="display: flex;justify-content: center;" id='normal-bill2' >
|
|
12
|
+
<div class="form-group col-sm-6">
|
|
13
|
+
<label class=" col-sm-2 control-label">发票代码:</label>
|
|
14
|
+
<input type="text" class="form-control" v-model="model.f_bill_code" style="width:60%"
|
|
15
|
+
placeholder="发票代码" disabled
|
|
16
|
+
>
|
|
17
|
+
</div>
|
|
18
|
+
<div class="form-group col-sm-6">
|
|
19
|
+
<label class=" col-sm-2 control-label">发票号码:</label>
|
|
20
|
+
<input type="text" class="form-control" v-model="model.f_bill_number" style="width:60%"
|
|
21
|
+
placeholder="发票号码" disabled
|
|
22
|
+
>
|
|
23
|
+
</div>
|
|
24
|
+
</div>
|
|
25
|
+
</form>
|
|
26
|
+
</validator>
|
|
27
|
+
</article>
|
|
28
|
+
<footer slot="modal-footer" class="modal-footer">
|
|
29
|
+
<button type="button" class="btn btn-default" @click='cancel()' >取消</button>
|
|
30
|
+
</footer>
|
|
31
|
+
</modal>
|
|
32
|
+
</div>
|
|
33
|
+
</template>
|
|
34
|
+
<script>
|
|
35
|
+
import { DataModel } from 'vue-client'
|
|
36
|
+
let getBillData = async function(self) {
|
|
37
|
+
if(self.data.eticketid){
|
|
38
|
+
let res=await self.$resetpost("rs/sql/applysingleTable",{data:{tablename:"t_eticket",condition:` id= ${self.data.eticketid}`}})
|
|
39
|
+
console.log("看看res",res)
|
|
40
|
+
self.model.f_bill_code=res.data[0].f_bill_code
|
|
41
|
+
self.model.f_bill_number=res.data[0].f_bill_number
|
|
42
|
+
}else{
|
|
43
|
+
let res=await self.$resetpost("rs/sql/applysingleTable",{data:{tablename:"t_eticket",condition:` f_sell_id=${self.data.id}`}})
|
|
44
|
+
console.log("看看res",res)
|
|
45
|
+
self.model.f_bill_code=res.data[0].f_bill_code
|
|
46
|
+
self.model.f_bill_number=res.data[0].f_bill_number
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export default {
|
|
51
|
+
title: '收费发票',
|
|
52
|
+
data () {
|
|
53
|
+
return {
|
|
54
|
+
model:{
|
|
55
|
+
f_bill_code:'',
|
|
56
|
+
f_bill_number:''
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
props: ['show', 'data'],
|
|
61
|
+
ready () {
|
|
62
|
+
},
|
|
63
|
+
methods: {
|
|
64
|
+
cancel () {
|
|
65
|
+
this.$dispatch('toggle')
|
|
66
|
+
},
|
|
67
|
+
},
|
|
68
|
+
watch: {
|
|
69
|
+
'show' (val) {
|
|
70
|
+
if (val) {
|
|
71
|
+
getBillData(this, val).then(() => {
|
|
72
|
+
this.$emit('ready')
|
|
73
|
+
}).catch((error) => {
|
|
74
|
+
this.$emit('error', error)
|
|
75
|
+
})
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
events: {
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
</script>
|
|
84
|
+
<style >
|
|
85
|
+
</style>
|