apply-clients 3.4.91 → 3.4.93
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 +133 -133
- package/package.json +117 -117
- package/src/App.vue +26 -21
- package/src/components/android/Ignition/VentilationIgnition.vue +312 -312
- package/src/components/android/Ignition/VentilationIgnitionHandle.vue +353 -353
- package/src/components/product/ApplyCharge/ApplyChargeList.vue +476 -476
- package/src/components/product/Function/InstallInfoSelect.vue +326 -326
- package/src/components/product/Ignition/IgnitionListManage.vue +420 -420
- package/src/components/product/Material/MaterialDetailed.vue +268 -268
- package/src/components/product/Material/Materiallist.vue +74 -74
- package/src/components/product/Material/Materialmanger.vue +58 -58
- package/src/components/product/Process/ExplorationSelect.vue +491 -491
- package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +203 -203
- package/src/components/product/Process/ShowBackReason.vue +40 -40
- package/src/components/product/Stop/StopApplyList.vue +278 -278
- package/src/components/product/Supervisory/SupervisoryControl.vue +140 -140
- package/src/filiale/hongda/pc/printChargepc.vue +114 -114
- package/src/filiale/hongda/pc/printactivatecard.vue +151 -151
- package/src/filiale/linzhou/pc/ApplyChargeList.vue +486 -486
- package/src/filiale/linzhou/pc/ServiceControl.vue +1968 -1968
- package/src/filiale/linzhou/pc/devicesManagement.vue +494 -494
- package/src/filiale/linzhou/pc.js +10 -10
- package/src/filiale/qianneng/android/AppAddMaterialScience.vue +477 -477
- package/src/filiale/qianneng/android/AppExplorationUser.vue +447 -447
- package/src/filiale/qianneng/android/AppServiceControl.vue +1608 -1608
- package/src/filiale/qianneng/android/AppServiceView.vue +761 -761
- package/src/filiale/qianneng/android/AppSign.vue +152 -152
- package/src/filiale/qianneng/android/AppTakePic.vue +140 -140
- package/src/filiale/qianneng/android.js +12 -12
- package/src/filiale/qianneng/pc/ApplyUpload.vue +290 -290
- package/src/filiale/qianneng/pc/Applybatchdispatch.vue +685 -685
- package/src/filiale/qianneng/pc/ExplorationUser.vue +189 -189
- package/src/filiale/qianneng/pc/InstallationDetails.vue +561 -561
- package/src/filiale/qianneng/pc/ServiceView.vue +1118 -1121
- package/src/filiale/qianneng/pc/SupervisoryList.vue +344 -344
- package/src/filiale/qianneng/pc/SupervisoryhCart.vue +127 -127
- package/src/filiale/qianneng/pc/addMaterialScience.vue +464 -464
- package/src/filiale/qianneng/pc/addressAndUserinfoManagement.vue +389 -389
- package/src/filiale/qianneng/pc/devicesManagement.vue +484 -484
- package/src/filiale/qianneng/pc/printactivatecard.vue +295 -295
- package/src/filiale/qianneng/pc.js +26 -26
- package/src/filiale/yangchunboneng/pc/ApplyChargeList.vue +516 -0
- package/src/filiale/yangchunboneng/pc.js +13 -12
- package/src/main.js +23 -23
|
@@ -1,74 +1,74 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="flex-row">
|
|
3
|
-
<div style="height: 95%" class="basic-main" >
|
|
4
|
-
<criteria-paged :model="model" v-ref:cp>
|
|
5
|
-
<data-grid :model="model" partial='list' v-ref:grid style="overflow: auto" class="list_area table_sy">
|
|
6
|
-
<template partial='head'>
|
|
7
|
-
<tr>
|
|
8
|
-
<th>序号</th>
|
|
9
|
-
<th>材料名称</th>
|
|
10
|
-
<th>材料型号</th>
|
|
11
|
-
<th>材料单位</th>
|
|
12
|
-
<th>材料数量</th>
|
|
13
|
-
</tr>
|
|
14
|
-
</template>
|
|
15
|
-
<template partial='body'>
|
|
16
|
-
<tr >
|
|
17
|
-
<td style="text-align: center;">
|
|
18
|
-
<nobr><font>{{$index+1}}</font></nobr>
|
|
19
|
-
</td>
|
|
20
|
-
<td style="text-align: center;">
|
|
21
|
-
<nobr><font>{{row.f_material_name}}</font></nobr>
|
|
22
|
-
</td>
|
|
23
|
-
<td style="text-align: center;">
|
|
24
|
-
<nobr><font>{{row.f_material_style}}</font></nobr>
|
|
25
|
-
</td>
|
|
26
|
-
<td style="text-align: center;">
|
|
27
|
-
<nobr><font>{{row.f_material_unit}}</font></nobr>
|
|
28
|
-
</td>
|
|
29
|
-
<td style="text-align: center;">
|
|
30
|
-
<nobr><font>{{row.f_material_number}}</font></nobr>
|
|
31
|
-
</td>
|
|
32
|
-
</tr>
|
|
33
|
-
</template>
|
|
34
|
-
</data-grid>
|
|
35
|
-
|
|
36
|
-
</criteria-paged>
|
|
37
|
-
</div>
|
|
38
|
-
|
|
39
|
-
</div>
|
|
40
|
-
</template>
|
|
41
|
-
|
|
42
|
-
<script>
|
|
43
|
-
import {PagedList} from 'vue-client'
|
|
44
|
-
export default {
|
|
45
|
-
title: '材料明细',
|
|
46
|
-
props: ['materialuser'],
|
|
47
|
-
data () {
|
|
48
|
-
return {
|
|
49
|
-
model: new PagedList('rs/sql/applyGetMaterial', 30, null),
|
|
50
|
-
}
|
|
51
|
-
},
|
|
52
|
-
ready () {
|
|
53
|
-
// 调用查询
|
|
54
|
-
this.search()
|
|
55
|
-
},
|
|
56
|
-
methods: {
|
|
57
|
-
// 查询
|
|
58
|
-
search () {
|
|
59
|
-
let condition = ` ma.f_process_id = '${this.materialuser.f_process_id}' `
|
|
60
|
-
this.model.search(condition)
|
|
61
|
-
}
|
|
62
|
-
},
|
|
63
|
-
computed: {
|
|
64
|
-
},
|
|
65
|
-
watch: {
|
|
66
|
-
'materialuser' () {
|
|
67
|
-
this.search()
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
</script>
|
|
72
|
-
|
|
73
|
-
<style scoped>
|
|
74
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="flex-row">
|
|
3
|
+
<div style="height: 95%" class="basic-main" >
|
|
4
|
+
<criteria-paged :model="model" v-ref:cp>
|
|
5
|
+
<data-grid :model="model" partial='list' v-ref:grid style="overflow: auto" class="list_area table_sy">
|
|
6
|
+
<template partial='head'>
|
|
7
|
+
<tr>
|
|
8
|
+
<th>序号</th>
|
|
9
|
+
<th>材料名称</th>
|
|
10
|
+
<th>材料型号</th>
|
|
11
|
+
<th>材料单位</th>
|
|
12
|
+
<th>材料数量</th>
|
|
13
|
+
</tr>
|
|
14
|
+
</template>
|
|
15
|
+
<template partial='body'>
|
|
16
|
+
<tr >
|
|
17
|
+
<td style="text-align: center;">
|
|
18
|
+
<nobr><font>{{$index+1}}</font></nobr>
|
|
19
|
+
</td>
|
|
20
|
+
<td style="text-align: center;">
|
|
21
|
+
<nobr><font>{{row.f_material_name}}</font></nobr>
|
|
22
|
+
</td>
|
|
23
|
+
<td style="text-align: center;">
|
|
24
|
+
<nobr><font>{{row.f_material_style}}</font></nobr>
|
|
25
|
+
</td>
|
|
26
|
+
<td style="text-align: center;">
|
|
27
|
+
<nobr><font>{{row.f_material_unit}}</font></nobr>
|
|
28
|
+
</td>
|
|
29
|
+
<td style="text-align: center;">
|
|
30
|
+
<nobr><font>{{row.f_material_number}}</font></nobr>
|
|
31
|
+
</td>
|
|
32
|
+
</tr>
|
|
33
|
+
</template>
|
|
34
|
+
</data-grid>
|
|
35
|
+
|
|
36
|
+
</criteria-paged>
|
|
37
|
+
</div>
|
|
38
|
+
|
|
39
|
+
</div>
|
|
40
|
+
</template>
|
|
41
|
+
|
|
42
|
+
<script>
|
|
43
|
+
import {PagedList} from 'vue-client'
|
|
44
|
+
export default {
|
|
45
|
+
title: '材料明细',
|
|
46
|
+
props: ['materialuser'],
|
|
47
|
+
data () {
|
|
48
|
+
return {
|
|
49
|
+
model: new PagedList('rs/sql/applyGetMaterial', 30, null),
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
ready () {
|
|
53
|
+
// 调用查询
|
|
54
|
+
this.search()
|
|
55
|
+
},
|
|
56
|
+
methods: {
|
|
57
|
+
// 查询
|
|
58
|
+
search () {
|
|
59
|
+
let condition = ` ma.f_process_id = '${this.materialuser.f_process_id}' `
|
|
60
|
+
this.model.search(condition)
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
computed: {
|
|
64
|
+
},
|
|
65
|
+
watch: {
|
|
66
|
+
'materialuser' () {
|
|
67
|
+
this.search()
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
</script>
|
|
72
|
+
|
|
73
|
+
<style scoped>
|
|
74
|
+
</style>
|
|
@@ -1,58 +1,58 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div id="unit" class="flex-row" :class="{'binary':showItem}">
|
|
3
|
-
<div :class="{'basic-main':!showItem,'binary-left':showItem}">
|
|
4
|
-
<material-user @select-changed="selected" :style="style" :style2="style2" v-ref:check></material-user>
|
|
5
|
-
</div>
|
|
6
|
-
<div class="binary-right" v-if="showItem">
|
|
7
|
-
<div class="flex">
|
|
8
|
-
<apply-material-list v-ref:detail :materialuser="materialuser" ></apply-material-list>
|
|
9
|
-
</div>
|
|
10
|
-
</div>
|
|
11
|
-
</div>
|
|
12
|
-
</template>
|
|
13
|
-
|
|
14
|
-
<script>
|
|
15
|
-
export default {
|
|
16
|
-
title: '材料查看',
|
|
17
|
-
props: [],
|
|
18
|
-
data () {
|
|
19
|
-
return {
|
|
20
|
-
showItem: false,
|
|
21
|
-
materialuser: '',
|
|
22
|
-
style: 'col-sm-2 form-group',
|
|
23
|
-
style2: 'col-sm-4 form-group'
|
|
24
|
-
}
|
|
25
|
-
},
|
|
26
|
-
methods: {
|
|
27
|
-
selected (obj) {
|
|
28
|
-
this.materialuser = obj.val
|
|
29
|
-
this.showItem = true
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
watch: {
|
|
33
|
-
'showItem' (val) {
|
|
34
|
-
if (val) {
|
|
35
|
-
this.style = 'col-sm-3 form-group'
|
|
36
|
-
this.style2 = 'col-sm-6 form-group'
|
|
37
|
-
} else {
|
|
38
|
-
this.style = 'col-sm-2 form-group'
|
|
39
|
-
this.style2 = 'col-sm-4 form-group'
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
</script>
|
|
45
|
-
<style>
|
|
46
|
-
.form-input-group label {
|
|
47
|
-
text-align: right;
|
|
48
|
-
width: auto;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.datapanel {
|
|
52
|
-
color: #333;
|
|
53
|
-
background-color: white;
|
|
54
|
-
box-shadow: darkgrey 0.5px 0.5px 0.5px 0.5px;
|
|
55
|
-
padding: 5px 7px 5px 7px;
|
|
56
|
-
border-radius: 10px;
|
|
57
|
-
}
|
|
58
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div id="unit" class="flex-row" :class="{'binary':showItem}">
|
|
3
|
+
<div :class="{'basic-main':!showItem,'binary-left':showItem}">
|
|
4
|
+
<material-user @select-changed="selected" :style="style" :style2="style2" v-ref:check></material-user>
|
|
5
|
+
</div>
|
|
6
|
+
<div class="binary-right" v-if="showItem">
|
|
7
|
+
<div class="flex">
|
|
8
|
+
<apply-material-list v-ref:detail :materialuser="materialuser" ></apply-material-list>
|
|
9
|
+
</div>
|
|
10
|
+
</div>
|
|
11
|
+
</div>
|
|
12
|
+
</template>
|
|
13
|
+
|
|
14
|
+
<script>
|
|
15
|
+
export default {
|
|
16
|
+
title: '材料查看',
|
|
17
|
+
props: [],
|
|
18
|
+
data () {
|
|
19
|
+
return {
|
|
20
|
+
showItem: false,
|
|
21
|
+
materialuser: '',
|
|
22
|
+
style: 'col-sm-2 form-group',
|
|
23
|
+
style2: 'col-sm-4 form-group'
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
methods: {
|
|
27
|
+
selected (obj) {
|
|
28
|
+
this.materialuser = obj.val
|
|
29
|
+
this.showItem = true
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
watch: {
|
|
33
|
+
'showItem' (val) {
|
|
34
|
+
if (val) {
|
|
35
|
+
this.style = 'col-sm-3 form-group'
|
|
36
|
+
this.style2 = 'col-sm-6 form-group'
|
|
37
|
+
} else {
|
|
38
|
+
this.style = 'col-sm-2 form-group'
|
|
39
|
+
this.style2 = 'col-sm-4 form-group'
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
</script>
|
|
45
|
+
<style>
|
|
46
|
+
.form-input-group label {
|
|
47
|
+
text-align: right;
|
|
48
|
+
width: auto;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.datapanel {
|
|
52
|
+
color: #333;
|
|
53
|
+
background-color: white;
|
|
54
|
+
box-shadow: darkgrey 0.5px 0.5px 0.5px 0.5px;
|
|
55
|
+
padding: 5px 7px 5px 7px;
|
|
56
|
+
border-radius: 10px;
|
|
57
|
+
}
|
|
58
|
+
</style>
|