apply-clients 7.1.36-yuchuan-83 → 7.1.36-yuchuan-84
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 +3 -6
- package/package.json +1 -1
- package/src/components/android/AppServiceView.vue +603 -603
- package/src/components/android/Process/AppServiceControl.vue +1434 -1434
- package/src/components/android/Process/Processes/AppInstallationDetails.vue +1032 -1032
- package/src/components/android/Process/Processes/newAppInstallationDetails.vue +671 -671
- package/src/components/android/SealBind.vue +426 -426
- package/src/components/product/ApplyCharge/ApplyChargeList.vue +1115 -1115
- package/src/components/product/ApplyGaiXianCharge/ApplyGaiXianChargeList.vue +211 -211
- package/src/components/product/ApplyGuanXian/GuanXianExplorationSelect.vue +325 -325
- package/src/components/product/Function/Service/FunctionServiceControl.vue +581 -581
- package/src/components/product/GongJianPush/ApplyPushDispose.vue +299 -299
- package/src/components/product/GongJianPush/ApplyPushManage.vue +92 -92
- package/src/components/product/Ignition/IgnitionListManage.vue +604 -604
- package/src/components/product/List/OldShowDevices.vue +272 -272
- package/src/components/product/List/ShowAllActivity.vue +540 -540
- package/src/components/product/Print/BuildOrder/buildOrderList.vue +446 -446
- package/src/components/product/Print/BuildOrder/printGaiXianOrder.vue +271 -271
- package/src/components/product/Print/OrderPrint/GaiXianOrder.vue +314 -314
- package/src/components/product/Print/OrderPrint/printChaiChuOrder.vue +266 -266
- package/src/components/product/Process/ExplorationSelect.vue +593 -593
- package/src/components/product/Process/NewExplorationSelect.vue +587 -587
- package/src/components/product/Process/Processes/InstallationDetails.vue +1166 -1166
- package/src/components/product/Process/Processes/Print/printCharge.vue +250 -250
- package/src/components/product/Process/Processes/Print/printGaiXianCharge.vue +244 -244
- package/src/components/product/Process/Processes/chargeManagement.vue +766 -766
- package/src/components/product/Process/Processes/newInstallationDetails.vue +683 -683
- package/src/components/product/Process/Processes/supplementalAgreement.vue +298 -298
- package/src/components/product/Process/Service/ServiceControl.vue +2232 -2232
- package/src/components/product/ServiceView.vue +650 -650
- package/src/components/product/Supervisory/ExportExcel.vue +359 -359
- package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +592 -592
- package/src/components/product/Supervisory/SupervisoryList.vue +585 -585
- package/src/components/product/Supervisory/YiBanSupervisoryList.vue +543 -543
- package/src/components/product/VueUtils/ApplyUpload.vue +302 -302
- package/src/components/product/VueUtils/HighMeter.vue +208 -208
|
@@ -1,92 +1,92 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div id="unit" class="flex-row" :class="{'binary':showItem}">
|
|
3
|
-
<div :class="{'basic-main':!showItem,'binary-left':showItem}">
|
|
4
|
-
<gongjian-apply-list @select-changed="idsearch" :styles="showItem?'col-sm-3':'col-sm-2'" v-if="stepControl"
|
|
5
|
-
v-ref:jgDeviceAlarmlist @add="add"></gongjian-apply-list>
|
|
6
|
-
</div>
|
|
7
|
-
<div class="binary-right" v-show="showItem">
|
|
8
|
-
<gongjian-apply-dispose :recordlist="recordlist" :model="model" :oldmodel="oldmodel"
|
|
9
|
-
:f_distribution_state="f_distribution_state" :row="row" :rowsdata="rowsdata1"
|
|
10
|
-
:warehousename="warehousename"
|
|
11
|
-
></gongjian-apply-dispose>
|
|
12
|
-
</div>
|
|
13
|
-
</div>
|
|
14
|
-
</template>
|
|
15
|
-
|
|
16
|
-
<script>
|
|
17
|
-
export default {
|
|
18
|
-
title: '政府报建',
|
|
19
|
-
components: {},
|
|
20
|
-
data() {
|
|
21
|
-
return {
|
|
22
|
-
f_alarmId: '',
|
|
23
|
-
row: {},
|
|
24
|
-
model: {},
|
|
25
|
-
oldmodel: {},
|
|
26
|
-
showItem: false,
|
|
27
|
-
stepControl: true,
|
|
28
|
-
|
|
29
|
-
// 分公司id串
|
|
30
|
-
width: '100%',
|
|
31
|
-
f_filialeids: "榆林."+this.$login.f.orgs,
|
|
32
|
-
areaShow: false,
|
|
33
|
-
areatype: '小区',
|
|
34
|
-
arearow: {},
|
|
35
|
-
style: 'col-sm-2'
|
|
36
|
-
}
|
|
37
|
-
},
|
|
38
|
-
methods: {
|
|
39
|
-
selected(obj) {
|
|
40
|
-
this.style = 'col-sm-3 '
|
|
41
|
-
if (obj.val && obj.val.id) {
|
|
42
|
-
console.log('对比分公司', obj.val.f_filialeid, this.f_filialeids)
|
|
43
|
-
if (obj.val.f_filialeid !== this.f_filialeids) {
|
|
44
|
-
this.refresh()
|
|
45
|
-
return
|
|
46
|
-
}
|
|
47
|
-
this.areaShow = true
|
|
48
|
-
this.$refs.addareamsg.cleardara()
|
|
49
|
-
this.$refs.addareamsg.operation = 'modify'
|
|
50
|
-
this.$refs.addareamsg.areatype = '小区'
|
|
51
|
-
this.$refs.addareamsg.areamodel = Object.assign({}, obj.val)
|
|
52
|
-
if (obj.val.f_slice_area && obj.val.f_area_code) {
|
|
53
|
-
this.$refs.addareamsg.areamodel.slice_area = [{
|
|
54
|
-
name: this.$refs.addareamsg.areamodel.f_slice_area,
|
|
55
|
-
code: this.$refs.addareamsg.areamodel.f_area_code
|
|
56
|
-
}]
|
|
57
|
-
}
|
|
58
|
-
this.$refs.addareamsg.initdata(obj.val)
|
|
59
|
-
}
|
|
60
|
-
},
|
|
61
|
-
add (a) {
|
|
62
|
-
console.log('新增')
|
|
63
|
-
this.showItem = true
|
|
64
|
-
this.model = {}
|
|
65
|
-
this.model.f_national_standard_industry='2017'
|
|
66
|
-
this.oldmodel = {}
|
|
67
|
-
},
|
|
68
|
-
refresh() {
|
|
69
|
-
this.areaShow = false
|
|
70
|
-
this.showItem = false
|
|
71
|
-
this.$refs.arealist.$refs.paged.$refs.cri.search()
|
|
72
|
-
},
|
|
73
|
-
idsearch(row) {
|
|
74
|
-
this.showItem = true
|
|
75
|
-
this.model = JSON.parse(JSON.stringify(row.val))
|
|
76
|
-
this.oldmodel = JSON.parse(JSON.stringify(row.val))
|
|
77
|
-
},
|
|
78
|
-
getAlarmData () {
|
|
79
|
-
let data = {}
|
|
80
|
-
}
|
|
81
|
-
},
|
|
82
|
-
events: {
|
|
83
|
-
'close'() {
|
|
84
|
-
this.showItem = false
|
|
85
|
-
this.$refs.stocklist.search()
|
|
86
|
-
console.log('this.$refs', this.$refs)
|
|
87
|
-
console.log('showitem', this.showItem)
|
|
88
|
-
},
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
</script>
|
|
92
|
-
|
|
1
|
+
<template>
|
|
2
|
+
<div id="unit" class="flex-row" :class="{'binary':showItem}">
|
|
3
|
+
<div :class="{'basic-main':!showItem,'binary-left':showItem}">
|
|
4
|
+
<gongjian-apply-list @select-changed="idsearch" :styles="showItem?'col-sm-3':'col-sm-2'" v-if="stepControl"
|
|
5
|
+
v-ref:jgDeviceAlarmlist @add="add"></gongjian-apply-list>
|
|
6
|
+
</div>
|
|
7
|
+
<div class="binary-right" v-show="showItem">
|
|
8
|
+
<gongjian-apply-dispose :recordlist="recordlist" :model="model" :oldmodel="oldmodel"
|
|
9
|
+
:f_distribution_state="f_distribution_state" :row="row" :rowsdata="rowsdata1"
|
|
10
|
+
:warehousename="warehousename"
|
|
11
|
+
></gongjian-apply-dispose>
|
|
12
|
+
</div>
|
|
13
|
+
</div>
|
|
14
|
+
</template>
|
|
15
|
+
|
|
16
|
+
<script>
|
|
17
|
+
export default {
|
|
18
|
+
title: '政府报建',
|
|
19
|
+
components: {},
|
|
20
|
+
data() {
|
|
21
|
+
return {
|
|
22
|
+
f_alarmId: '',
|
|
23
|
+
row: {},
|
|
24
|
+
model: {},
|
|
25
|
+
oldmodel: {},
|
|
26
|
+
showItem: false,
|
|
27
|
+
stepControl: true,
|
|
28
|
+
|
|
29
|
+
// 分公司id串
|
|
30
|
+
width: '100%',
|
|
31
|
+
f_filialeids: "榆林."+this.$login.f.orgs,
|
|
32
|
+
areaShow: false,
|
|
33
|
+
areatype: '小区',
|
|
34
|
+
arearow: {},
|
|
35
|
+
style: 'col-sm-2'
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
methods: {
|
|
39
|
+
selected(obj) {
|
|
40
|
+
this.style = 'col-sm-3 '
|
|
41
|
+
if (obj.val && obj.val.id) {
|
|
42
|
+
console.log('对比分公司', obj.val.f_filialeid, this.f_filialeids)
|
|
43
|
+
if (obj.val.f_filialeid !== this.f_filialeids) {
|
|
44
|
+
this.refresh()
|
|
45
|
+
return
|
|
46
|
+
}
|
|
47
|
+
this.areaShow = true
|
|
48
|
+
this.$refs.addareamsg.cleardara()
|
|
49
|
+
this.$refs.addareamsg.operation = 'modify'
|
|
50
|
+
this.$refs.addareamsg.areatype = '小区'
|
|
51
|
+
this.$refs.addareamsg.areamodel = Object.assign({}, obj.val)
|
|
52
|
+
if (obj.val.f_slice_area && obj.val.f_area_code) {
|
|
53
|
+
this.$refs.addareamsg.areamodel.slice_area = [{
|
|
54
|
+
name: this.$refs.addareamsg.areamodel.f_slice_area,
|
|
55
|
+
code: this.$refs.addareamsg.areamodel.f_area_code
|
|
56
|
+
}]
|
|
57
|
+
}
|
|
58
|
+
this.$refs.addareamsg.initdata(obj.val)
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
add (a) {
|
|
62
|
+
console.log('新增')
|
|
63
|
+
this.showItem = true
|
|
64
|
+
this.model = {}
|
|
65
|
+
this.model.f_national_standard_industry='2017'
|
|
66
|
+
this.oldmodel = {}
|
|
67
|
+
},
|
|
68
|
+
refresh() {
|
|
69
|
+
this.areaShow = false
|
|
70
|
+
this.showItem = false
|
|
71
|
+
this.$refs.arealist.$refs.paged.$refs.cri.search()
|
|
72
|
+
},
|
|
73
|
+
idsearch(row) {
|
|
74
|
+
this.showItem = true
|
|
75
|
+
this.model = JSON.parse(JSON.stringify(row.val))
|
|
76
|
+
this.oldmodel = JSON.parse(JSON.stringify(row.val))
|
|
77
|
+
},
|
|
78
|
+
getAlarmData () {
|
|
79
|
+
let data = {}
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
events: {
|
|
83
|
+
'close'() {
|
|
84
|
+
this.showItem = false
|
|
85
|
+
this.$refs.stocklist.search()
|
|
86
|
+
console.log('this.$refs', this.$refs)
|
|
87
|
+
console.log('showitem', this.showItem)
|
|
88
|
+
},
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
</script>
|
|
92
|
+
|