apply-clients 3.2.32 → 3.2.37
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/AndroidApp.vue +26 -26
- package/src/App.vue +20 -20
- package/src/apply.js +67 -67
- package/src/applyAndroid.js +24 -24
- package/src/components/Util.js +359 -359
- package/src/components/app_apply/AppOnetomany.vue +90 -90
- package/src/components/app_apply/AppServiceView.vue +664 -664
- package/src/components/app_apply/AppTakePic.vue +112 -112
- package/src/components/app_apply/Process/AppExplorationUser.vue +310 -310
- package/src/components/app_apply/Process/AppServiceControl.vue +409 -409
- package/src/components/app_apply/Process/Processes/AppInstallationDetails.vue +456 -456
- package/src/components/app_apply/Supervisory/AppProcessSupervisory.vue +300 -300
- package/src/components/app_apply/Supervisory/AppSupervisoryCart.vue +121 -121
- package/src/components/product/ApplyCharge/ApplyChargeList.vue +251 -251
- package/src/components/product/ApplyCharge/ApplyChargeReport.vue +107 -107
- package/src/components/product/ApplyCharge/ApplyChargeSearch.vue +30 -30
- package/src/components/product/Function/InstallFunction.vue +147 -147
- package/src/components/product/Function/InstallInfoSelect.vue +281 -281
- package/src/components/product/Function/Service/FunctionServiceControl.vue +245 -245
- package/src/components/product/Function/StopApplyCrrdList.vue +176 -176
- package/src/components/product/Function/functions/StopInstall.vue +106 -106
- package/src/components/product/Process/ExplorationSelect.vue +346 -346
- package/src/components/product/Process/ExplorationUser.vue +134 -134
- package/src/components/product/Process/Processes/InstallationDetails.vue +243 -233
- package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +201 -201
- package/src/components/product/Process/Processes/chargeManagement.vue +555 -555
- package/src/components/product/Process/Processes/printCharge.vue +133 -133
- package/src/components/product/Process/Processes/supplementalAgreement.vue +297 -297
- package/src/components/product/Process/ShowBackReason.vue +32 -32
- package/src/components/product/ServiceView.vue +759 -759
- package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +199 -199
- package/src/components/product/Supervisory/SupervisoryControl.vue +119 -119
- package/src/components/product/Supervisory/SupervisoryList.vue +208 -208
- package/src/components/product/Supervisory/SupervisoryhCart.vue +103 -103
- package/src/components/product/VueUtils/ApplyUpload.vue +261 -261
- package/src/main.js +23 -23
|
@@ -1,90 +1,90 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div>
|
|
3
|
-
<div class="row" v-if="!onetomany.hiddenOperate">
|
|
4
|
-
<button class="btn btn-primary" @click.prevent="add()" v-if="!onetomany.addHidden" :style="onetomany.addStyle">{{ onetomany.addText === 'default' || !onetomany.addText ? '添加' : onetomany.addText }}</button>
|
|
5
|
-
</div>
|
|
6
|
-
<list :model="onetomany" partial='list'>
|
|
7
|
-
<div partial class="auto app-text panel">
|
|
8
|
-
<div class="panel-body panel-self">
|
|
9
|
-
<div class="row" v-for="field in $parent.model.fields" v-if="!field.displayPosition || field.displayPosition === '*' || field.displayPosition === 'list'">
|
|
10
|
-
<p class="col-xs-3 text-left font"><b class="control-label-justify">{{ field.label }}</b></p>
|
|
11
|
-
<p class="col-xs-8 col-xs-offset-1 text-left input-font">{{ row[field.field] }}</p>
|
|
12
|
-
</div>
|
|
13
|
-
<div class="row text-right" v-if="!$parent.$parent.onetomany.hiddenOperate">
|
|
14
|
-
<button class="btn btn-warning" @click.prevent="$parent.$parent.update($index)" v-if="!$parent.$parent.onetomany.updateHidden">
|
|
15
|
-
{{ $parent.$parent.onetomany.updateText === 'default' || !$parent.$parent.onetomany.updateText ? '修改' : $parent.$parent.onetomany.updateText }}
|
|
16
|
-
</button>
|
|
17
|
-
<button class="btn btn-danger" @click.prevent="$parent.$parent.delete($index)" v-if="!$parent.$parent.onetomany.deleteHidden">
|
|
18
|
-
{{ $parent.$parent.onetomany.deleteText === 'default' || !$parent.$parent.onetomany.deleteText ? '删除' : $parent.$parent.onetomany.deleteText }}
|
|
19
|
-
</button>
|
|
20
|
-
</div>
|
|
21
|
-
</div>
|
|
22
|
-
</div>
|
|
23
|
-
</list>
|
|
24
|
-
</div>
|
|
25
|
-
</template>
|
|
26
|
-
|
|
27
|
-
<script>
|
|
28
|
-
import {HttpResetClass} from 'vue-client'
|
|
29
|
-
import {guid, toStandardTimeString} from '../Util'
|
|
30
|
-
import Vue from 'vue'
|
|
31
|
-
export default {
|
|
32
|
-
title: 'onetomany',
|
|
33
|
-
props: ['onetomany', 'index'],
|
|
34
|
-
data () {
|
|
35
|
-
return {
|
|
36
|
-
}
|
|
37
|
-
},
|
|
38
|
-
ready () {
|
|
39
|
-
},
|
|
40
|
-
methods: {
|
|
41
|
-
add () {
|
|
42
|
-
this.$dispatch('add', this.index)
|
|
43
|
-
},
|
|
44
|
-
update (i) {
|
|
45
|
-
this.$dispatch('update', this.index, i)
|
|
46
|
-
},
|
|
47
|
-
delete (i) {
|
|
48
|
-
this.$dispatch('delete', this.index, i)
|
|
49
|
-
}
|
|
50
|
-
},
|
|
51
|
-
computed: {
|
|
52
|
-
},
|
|
53
|
-
events: {
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
</script>
|
|
57
|
-
|
|
58
|
-
<style scoped>
|
|
59
|
-
.control-label-justify {
|
|
60
|
-
display: inline-block;
|
|
61
|
-
vertical-align: top;
|
|
62
|
-
width: 100%;
|
|
63
|
-
text-align: justify;
|
|
64
|
-
font-family: PingFang-SC-Bold;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.control-label-justify::after {
|
|
68
|
-
content: "";
|
|
69
|
-
display: inline-block;
|
|
70
|
-
width: 100%;
|
|
71
|
-
overflow: hidden;
|
|
72
|
-
height: 0;
|
|
73
|
-
}
|
|
74
|
-
.app-text {
|
|
75
|
-
font-size: 12px;
|
|
76
|
-
}
|
|
77
|
-
.panel-self{
|
|
78
|
-
border-radius: 10px;
|
|
79
|
-
border:1px solid #499EDF;
|
|
80
|
-
background-color: #F8F8F8;
|
|
81
|
-
}
|
|
82
|
-
.font{
|
|
83
|
-
font: 15px PingFang-SC-Medium;
|
|
84
|
-
color: #666666;
|
|
85
|
-
}
|
|
86
|
-
.input-font{
|
|
87
|
-
font: 15px PingFang-SC-Medium;
|
|
88
|
-
color: #333333;
|
|
89
|
-
}
|
|
90
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
<div class="row" v-if="!onetomany.hiddenOperate">
|
|
4
|
+
<button class="btn btn-primary" @click.prevent="add()" v-if="!onetomany.addHidden" :style="onetomany.addStyle">{{ onetomany.addText === 'default' || !onetomany.addText ? '添加' : onetomany.addText }}</button>
|
|
5
|
+
</div>
|
|
6
|
+
<list :model="onetomany" partial='list'>
|
|
7
|
+
<div partial class="auto app-text panel">
|
|
8
|
+
<div class="panel-body panel-self">
|
|
9
|
+
<div class="row" v-for="field in $parent.model.fields" v-if="!field.displayPosition || field.displayPosition === '*' || field.displayPosition === 'list'">
|
|
10
|
+
<p class="col-xs-3 text-left font"><b class="control-label-justify">{{ field.label }}</b></p>
|
|
11
|
+
<p class="col-xs-8 col-xs-offset-1 text-left input-font">{{ row[field.field] }}</p>
|
|
12
|
+
</div>
|
|
13
|
+
<div class="row text-right" v-if="!$parent.$parent.onetomany.hiddenOperate">
|
|
14
|
+
<button class="btn btn-warning" @click.prevent="$parent.$parent.update($index)" v-if="!$parent.$parent.onetomany.updateHidden">
|
|
15
|
+
{{ $parent.$parent.onetomany.updateText === 'default' || !$parent.$parent.onetomany.updateText ? '修改' : $parent.$parent.onetomany.updateText }}
|
|
16
|
+
</button>
|
|
17
|
+
<button class="btn btn-danger" @click.prevent="$parent.$parent.delete($index)" v-if="!$parent.$parent.onetomany.deleteHidden">
|
|
18
|
+
{{ $parent.$parent.onetomany.deleteText === 'default' || !$parent.$parent.onetomany.deleteText ? '删除' : $parent.$parent.onetomany.deleteText }}
|
|
19
|
+
</button>
|
|
20
|
+
</div>
|
|
21
|
+
</div>
|
|
22
|
+
</div>
|
|
23
|
+
</list>
|
|
24
|
+
</div>
|
|
25
|
+
</template>
|
|
26
|
+
|
|
27
|
+
<script>
|
|
28
|
+
import {HttpResetClass} from 'vue-client'
|
|
29
|
+
import {guid, toStandardTimeString} from '../Util'
|
|
30
|
+
import Vue from 'vue'
|
|
31
|
+
export default {
|
|
32
|
+
title: 'onetomany',
|
|
33
|
+
props: ['onetomany', 'index'],
|
|
34
|
+
data () {
|
|
35
|
+
return {
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
ready () {
|
|
39
|
+
},
|
|
40
|
+
methods: {
|
|
41
|
+
add () {
|
|
42
|
+
this.$dispatch('add', this.index)
|
|
43
|
+
},
|
|
44
|
+
update (i) {
|
|
45
|
+
this.$dispatch('update', this.index, i)
|
|
46
|
+
},
|
|
47
|
+
delete (i) {
|
|
48
|
+
this.$dispatch('delete', this.index, i)
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
computed: {
|
|
52
|
+
},
|
|
53
|
+
events: {
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
</script>
|
|
57
|
+
|
|
58
|
+
<style scoped>
|
|
59
|
+
.control-label-justify {
|
|
60
|
+
display: inline-block;
|
|
61
|
+
vertical-align: top;
|
|
62
|
+
width: 100%;
|
|
63
|
+
text-align: justify;
|
|
64
|
+
font-family: PingFang-SC-Bold;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.control-label-justify::after {
|
|
68
|
+
content: "";
|
|
69
|
+
display: inline-block;
|
|
70
|
+
width: 100%;
|
|
71
|
+
overflow: hidden;
|
|
72
|
+
height: 0;
|
|
73
|
+
}
|
|
74
|
+
.app-text {
|
|
75
|
+
font-size: 12px;
|
|
76
|
+
}
|
|
77
|
+
.panel-self{
|
|
78
|
+
border-radius: 10px;
|
|
79
|
+
border:1px solid #499EDF;
|
|
80
|
+
background-color: #F8F8F8;
|
|
81
|
+
}
|
|
82
|
+
.font{
|
|
83
|
+
font: 15px PingFang-SC-Medium;
|
|
84
|
+
color: #666666;
|
|
85
|
+
}
|
|
86
|
+
.input-font{
|
|
87
|
+
font: 15px PingFang-SC-Medium;
|
|
88
|
+
color: #333333;
|
|
89
|
+
}
|
|
90
|
+
</style>
|