apply-clients 5.0.35-ezhou-25-8 → 5.0.35-ezhou-25-10
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/product/EngineeringManagement/EngineerUpload.vue +304 -304
- package/src/components/product/EngineeringManagement/EngineeringSelect.vue +586 -586
- package/src/components/product/EngineeringSupervisory/EngineeringApplyStopInfo.vue +281 -281
- package/src/components/product/EngineeringSupervisory/EngineeringSupervisoryControl.vue +132 -132
- package/src/components/product/EngineeringSupervisory/EngineeringSupervisoryList.vue +340 -340
- package/src/components/product/EngineeringSupervisory/EngineeringSupervisoryServiceControl.vue +490 -490
- 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 +1149 -1149
- package/src/components/product/Overview/addMaterialScience.vue +217 -217
- package/src/components/product/Process/Processes/Service/ServiceControl.vue +2285 -2285
- package/src/components/product/Process/Processes/selectUserinfo.vue +183 -183
- package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +556 -556
- package/src/components/product/report/ProjectManagementList.vue +163 -163
- package/src/components/product/report/ProjectManagementReport.vue +169 -169
- package/src/components/product/stopInfo/ApplyStopInfo.vue +281 -281
- package/src/ezhouAndroid.js +48 -48
|
@@ -1,163 +1,163 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<criteria-paged :model="model" v-ref:cp>
|
|
3
|
-
<criteria partial='criteria' @condition-changed='search' v-ref:cri>
|
|
4
|
-
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
|
|
5
|
-
<div class="row">
|
|
6
|
-
<div class="form-group col-sm-3">
|
|
7
|
-
<label class="font_normal_body">工程编号:</label>
|
|
8
|
-
<input type="text" style="width:60%" class="input_search" placeholder='工程编号' v-model="model.f_apply_num"
|
|
9
|
-
v-on:keyup.enter="$parent.$parent.search()"
|
|
10
|
-
condition="u.f_apply_num = '{}'">
|
|
11
|
-
</div>
|
|
12
|
-
<div class="form-group col-sm-3">
|
|
13
|
-
<label for="startDate" class="font_normal_body">开始时间:</label>
|
|
14
|
-
<datepicker id="startDate" placeholder="开始日期"
|
|
15
|
-
style="width: 60%!important;"
|
|
16
|
-
v-model="model.startDate"
|
|
17
|
-
:value.sync="model.startDate"
|
|
18
|
-
:format="'yyyy-MM-dd 00:00:00'"
|
|
19
|
-
:show-reset-button="true"
|
|
20
|
-
condition="act.sendtime >= '{}'">
|
|
21
|
-
</datepicker>
|
|
22
|
-
</div>
|
|
23
|
-
|
|
24
|
-
<div class="form-group col-sm-3">
|
|
25
|
-
<label for="endDate" class="font_normal_body">结束时间:</label>
|
|
26
|
-
<datepicker id="endDate" placeholder="结束日期"
|
|
27
|
-
style="width: 60%!important;"
|
|
28
|
-
v-model="model.endDate"
|
|
29
|
-
:value.sync="model.endDate"
|
|
30
|
-
:format="'yyyy-MM-dd 23:59:59'"
|
|
31
|
-
:show-reset-button="true"
|
|
32
|
-
condition="act.sendtime <= '{}'">
|
|
33
|
-
</datepicker>
|
|
34
|
-
</div>
|
|
35
|
-
<div class="form-group col-sm-3 button-range">
|
|
36
|
-
<button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
|
|
37
|
-
<button class="button_search button_spacing" @click="$parent.$parent.loadPage()">返回</button>
|
|
38
|
-
<button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
|
|
39
|
-
<div
|
|
40
|
-
:class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
|
|
41
|
-
@click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"
|
|
42
|
-
class="button_spacing"
|
|
43
|
-
style="float: right">
|
|
44
|
-
</div>
|
|
45
|
-
</div>
|
|
46
|
-
</div>
|
|
47
|
-
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
48
|
-
<div class="form-group col-sm-3">
|
|
49
|
-
<label class="font_normal_body">踏勘/施工完成人:</label>
|
|
50
|
-
<input type="text" style="width:60%" class="input_search" v-model="model.sender"
|
|
51
|
-
v-on:keyup.enter="$parent.$parent.search()" condition="act.person = '{}'" placeholder='完成人'>
|
|
52
|
-
</div>
|
|
53
|
-
<div class="form-group col-sm-3">
|
|
54
|
-
<label class="font_normal_body">施工验收完成人:</label>
|
|
55
|
-
<input type="text" style="width:60%" class="input_search" v-model="model.f_checking_name"
|
|
56
|
-
v-on:keyup.enter="$parent.$parent.search()" condition="u.f_checking_name = '{}'" placeholder='完成人'>
|
|
57
|
-
</div>
|
|
58
|
-
<div class="form-group col-sm-3">
|
|
59
|
-
<label class="font_normal_body">通气转单完成人:</label>
|
|
60
|
-
<input type="text" style="width:60%" class="input_search" v-model="model.f_displacement_people"
|
|
61
|
-
v-on:keyup.enter="$parent.$parent.search()" condition="u.f_displacement_people = '{}'" placeholder='完成人'>
|
|
62
|
-
</div>
|
|
63
|
-
<div class="form-group col-sm-3">
|
|
64
|
-
<label class="font_normal_body">办理环节:</label>
|
|
65
|
-
<v-select
|
|
66
|
-
v-model="model.defname"
|
|
67
|
-
placeholder='办理环节'
|
|
68
|
-
condition="act.defname = '{}'"
|
|
69
|
-
:value.sync="model.defname"
|
|
70
|
-
:options='$parent.$parent.defnames'
|
|
71
|
-
class="select select_list"
|
|
72
|
-
:value-single="true"
|
|
73
|
-
close-on-select ></v-select>
|
|
74
|
-
</div>
|
|
75
|
-
</div>
|
|
76
|
-
</div>
|
|
77
|
-
</criteria>
|
|
78
|
-
<data-grid :model="model" partial='list' v-ref:grid style="overflow: auto" class="list_area table_sy">
|
|
79
|
-
<template partial='head'>
|
|
80
|
-
<tr>
|
|
81
|
-
<th style="white-space: nowrap;">序号</th>
|
|
82
|
-
<th style="white-space: nowrap;">工程编号</th>
|
|
83
|
-
<th style="white-space: nowrap;">报建日期</th>
|
|
84
|
-
<th style="white-space: nowrap;">流程状态</th>
|
|
85
|
-
<th style="white-space: nowrap;">办理环节</th>
|
|
86
|
-
<th style="white-space: nowrap;">完成人</th>
|
|
87
|
-
<th style="white-space: nowrap;">完成日期</th>
|
|
88
|
-
<th style="white-space: nowrap;">结点状态</th>
|
|
89
|
-
</tr>
|
|
90
|
-
</template>
|
|
91
|
-
<template partial='body'>
|
|
92
|
-
<tr >
|
|
93
|
-
<td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'', row.f_back_reason ? 'back-style':'' ]" style="text-align: center;">
|
|
94
|
-
<nobr><font>{{$index+1}}</font></nobr>
|
|
95
|
-
</td>
|
|
96
|
-
<td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' , row.f_back_reason ? 'back-style':'' ]" style="text-align: center;">
|
|
97
|
-
<nobr><font>{{row.f_apply_num}}</font></nobr>
|
|
98
|
-
</td>
|
|
99
|
-
<td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' , row.f_back_reason ? 'back-style':'' ]" style="text-align: center;">
|
|
100
|
-
<nobr><font>{{row.f_apply_date}}</font></nobr>
|
|
101
|
-
</td>
|
|
102
|
-
<td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' , row.f_back_reason ? 'back-style':'' ]" style="text-align: center;">
|
|
103
|
-
<nobr><font>{{row.f_sub_state}}</font></nobr>
|
|
104
|
-
</td>
|
|
105
|
-
<td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' , row.f_back_reason ? 'back-style':'' ]" style="text-align: center;">
|
|
106
|
-
<nobr><font>{{row.defname}}</font></nobr>
|
|
107
|
-
</td>
|
|
108
|
-
<td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' , row.f_back_reason ? 'back-style':'' ]" style="text-align: center;">
|
|
109
|
-
<nobr><font>{{row.sender}}</font></nobr>
|
|
110
|
-
</td>
|
|
111
|
-
<td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' , row.f_back_reason ? 'back-style':'' ]" style="text-align: center;">
|
|
112
|
-
<nobr><font>{{row.sendtime}}</font></nobr>
|
|
113
|
-
</td>
|
|
114
|
-
<td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' , row.f_back_reason ? 'back-style':'' ]" style="text-align: center;">
|
|
115
|
-
<nobr><font>{{row.state}}</font></nobr>
|
|
116
|
-
</td>
|
|
117
|
-
</tr>
|
|
118
|
-
</template>
|
|
119
|
-
</data-grid>
|
|
120
|
-
</criteria-paged>
|
|
121
|
-
</template>
|
|
122
|
-
<script>
|
|
123
|
-
import {HttpResetClass, PagedList} from 'vue-client'
|
|
124
|
-
import {getNowDate, isEmpty, toStandardDateString} from '../../../components/Util'
|
|
125
|
-
export default {
|
|
126
|
-
title: '工程明细',
|
|
127
|
-
data () {
|
|
128
|
-
return {
|
|
129
|
-
model: new PagedList('rs/sql/report7',20, {
|
|
130
|
-
}),
|
|
131
|
-
criteriaShow: false,
|
|
132
|
-
defnames: [{label: '全部', value: ''},
|
|
133
|
-
{label: '踏勘', value: '踏勘'},
|
|
134
|
-
{label: '施工', value: '施工'},
|
|
135
|
-
{label: '施工验收', value: '施工验收'},
|
|
136
|
-
{label: '通气转单', value: '通气转单'}]
|
|
137
|
-
}
|
|
138
|
-
},
|
|
139
|
-
ready () {
|
|
140
|
-
this.$refs.cp.$refs.cri.model.startDate =toStandardDateString() + ' 00:00:00'
|
|
141
|
-
this.$refs.cp.$refs.cri.model.endDate =toStandardDateString() + ' 23:59:59'
|
|
142
|
-
// 调用查询
|
|
143
|
-
this.$refs.cp.$refs.cri.search()
|
|
144
|
-
},
|
|
145
|
-
methods: {
|
|
146
|
-
// 清空
|
|
147
|
-
clear () {
|
|
148
|
-
Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
|
|
149
|
-
this.$refs.cp.$refs.cri.model[key] = []
|
|
150
|
-
})
|
|
151
|
-
},
|
|
152
|
-
// 查询
|
|
153
|
-
search () {
|
|
154
|
-
this.$refs.cp.$refs.cri.search()
|
|
155
|
-
},
|
|
156
|
-
},
|
|
157
|
-
computed: {
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
</script>
|
|
161
|
-
|
|
162
|
-
<style scoped>
|
|
163
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<criteria-paged :model="model" v-ref:cp>
|
|
3
|
+
<criteria partial='criteria' @condition-changed='search' v-ref:cri>
|
|
4
|
+
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
|
|
5
|
+
<div class="row">
|
|
6
|
+
<div class="form-group col-sm-3">
|
|
7
|
+
<label class="font_normal_body">工程编号:</label>
|
|
8
|
+
<input type="text" style="width:60%" class="input_search" placeholder='工程编号' v-model="model.f_apply_num"
|
|
9
|
+
v-on:keyup.enter="$parent.$parent.search()"
|
|
10
|
+
condition="u.f_apply_num = '{}'">
|
|
11
|
+
</div>
|
|
12
|
+
<div class="form-group col-sm-3">
|
|
13
|
+
<label for="startDate" class="font_normal_body">开始时间:</label>
|
|
14
|
+
<datepicker id="startDate" placeholder="开始日期"
|
|
15
|
+
style="width: 60%!important;"
|
|
16
|
+
v-model="model.startDate"
|
|
17
|
+
:value.sync="model.startDate"
|
|
18
|
+
:format="'yyyy-MM-dd 00:00:00'"
|
|
19
|
+
:show-reset-button="true"
|
|
20
|
+
condition="act.sendtime >= '{}'">
|
|
21
|
+
</datepicker>
|
|
22
|
+
</div>
|
|
23
|
+
|
|
24
|
+
<div class="form-group col-sm-3">
|
|
25
|
+
<label for="endDate" class="font_normal_body">结束时间:</label>
|
|
26
|
+
<datepicker id="endDate" placeholder="结束日期"
|
|
27
|
+
style="width: 60%!important;"
|
|
28
|
+
v-model="model.endDate"
|
|
29
|
+
:value.sync="model.endDate"
|
|
30
|
+
:format="'yyyy-MM-dd 23:59:59'"
|
|
31
|
+
:show-reset-button="true"
|
|
32
|
+
condition="act.sendtime <= '{}'">
|
|
33
|
+
</datepicker>
|
|
34
|
+
</div>
|
|
35
|
+
<div class="form-group col-sm-3 button-range">
|
|
36
|
+
<button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
|
|
37
|
+
<button class="button_search button_spacing" @click="$parent.$parent.loadPage()">返回</button>
|
|
38
|
+
<button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
|
|
39
|
+
<div
|
|
40
|
+
:class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
|
|
41
|
+
@click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"
|
|
42
|
+
class="button_spacing"
|
|
43
|
+
style="float: right">
|
|
44
|
+
</div>
|
|
45
|
+
</div>
|
|
46
|
+
</div>
|
|
47
|
+
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
48
|
+
<div class="form-group col-sm-3">
|
|
49
|
+
<label class="font_normal_body">踏勘/施工完成人:</label>
|
|
50
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.sender"
|
|
51
|
+
v-on:keyup.enter="$parent.$parent.search()" condition="act.person = '{}'" placeholder='完成人'>
|
|
52
|
+
</div>
|
|
53
|
+
<div class="form-group col-sm-3">
|
|
54
|
+
<label class="font_normal_body">施工验收完成人:</label>
|
|
55
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_checking_name"
|
|
56
|
+
v-on:keyup.enter="$parent.$parent.search()" condition="u.f_checking_name = '{}'" placeholder='完成人'>
|
|
57
|
+
</div>
|
|
58
|
+
<div class="form-group col-sm-3">
|
|
59
|
+
<label class="font_normal_body">通气转单完成人:</label>
|
|
60
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_displacement_people"
|
|
61
|
+
v-on:keyup.enter="$parent.$parent.search()" condition="u.f_displacement_people = '{}'" placeholder='完成人'>
|
|
62
|
+
</div>
|
|
63
|
+
<div class="form-group col-sm-3">
|
|
64
|
+
<label class="font_normal_body">办理环节:</label>
|
|
65
|
+
<v-select
|
|
66
|
+
v-model="model.defname"
|
|
67
|
+
placeholder='办理环节'
|
|
68
|
+
condition="act.defname = '{}'"
|
|
69
|
+
:value.sync="model.defname"
|
|
70
|
+
:options='$parent.$parent.defnames'
|
|
71
|
+
class="select select_list"
|
|
72
|
+
:value-single="true"
|
|
73
|
+
close-on-select ></v-select>
|
|
74
|
+
</div>
|
|
75
|
+
</div>
|
|
76
|
+
</div>
|
|
77
|
+
</criteria>
|
|
78
|
+
<data-grid :model="model" partial='list' v-ref:grid style="overflow: auto" class="list_area table_sy">
|
|
79
|
+
<template partial='head'>
|
|
80
|
+
<tr>
|
|
81
|
+
<th style="white-space: nowrap;">序号</th>
|
|
82
|
+
<th style="white-space: nowrap;">工程编号</th>
|
|
83
|
+
<th style="white-space: nowrap;">报建日期</th>
|
|
84
|
+
<th style="white-space: nowrap;">流程状态</th>
|
|
85
|
+
<th style="white-space: nowrap;">办理环节</th>
|
|
86
|
+
<th style="white-space: nowrap;">完成人</th>
|
|
87
|
+
<th style="white-space: nowrap;">完成日期</th>
|
|
88
|
+
<th style="white-space: nowrap;">结点状态</th>
|
|
89
|
+
</tr>
|
|
90
|
+
</template>
|
|
91
|
+
<template partial='body'>
|
|
92
|
+
<tr >
|
|
93
|
+
<td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'', row.f_back_reason ? 'back-style':'' ]" style="text-align: center;">
|
|
94
|
+
<nobr><font>{{$index+1}}</font></nobr>
|
|
95
|
+
</td>
|
|
96
|
+
<td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' , row.f_back_reason ? 'back-style':'' ]" style="text-align: center;">
|
|
97
|
+
<nobr><font>{{row.f_apply_num}}</font></nobr>
|
|
98
|
+
</td>
|
|
99
|
+
<td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' , row.f_back_reason ? 'back-style':'' ]" style="text-align: center;">
|
|
100
|
+
<nobr><font>{{row.f_apply_date}}</font></nobr>
|
|
101
|
+
</td>
|
|
102
|
+
<td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' , row.f_back_reason ? 'back-style':'' ]" style="text-align: center;">
|
|
103
|
+
<nobr><font>{{row.f_sub_state}}</font></nobr>
|
|
104
|
+
</td>
|
|
105
|
+
<td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' , row.f_back_reason ? 'back-style':'' ]" style="text-align: center;">
|
|
106
|
+
<nobr><font>{{row.defname}}</font></nobr>
|
|
107
|
+
</td>
|
|
108
|
+
<td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' , row.f_back_reason ? 'back-style':'' ]" style="text-align: center;">
|
|
109
|
+
<nobr><font>{{row.sender}}</font></nobr>
|
|
110
|
+
</td>
|
|
111
|
+
<td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' , row.f_back_reason ? 'back-style':'' ]" style="text-align: center;">
|
|
112
|
+
<nobr><font>{{row.sendtime}}</font></nobr>
|
|
113
|
+
</td>
|
|
114
|
+
<td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' , row.f_back_reason ? 'back-style':'' ]" style="text-align: center;">
|
|
115
|
+
<nobr><font>{{row.state}}</font></nobr>
|
|
116
|
+
</td>
|
|
117
|
+
</tr>
|
|
118
|
+
</template>
|
|
119
|
+
</data-grid>
|
|
120
|
+
</criteria-paged>
|
|
121
|
+
</template>
|
|
122
|
+
<script>
|
|
123
|
+
import {HttpResetClass, PagedList} from 'vue-client'
|
|
124
|
+
import {getNowDate, isEmpty, toStandardDateString} from '../../../components/Util'
|
|
125
|
+
export default {
|
|
126
|
+
title: '工程明细',
|
|
127
|
+
data () {
|
|
128
|
+
return {
|
|
129
|
+
model: new PagedList('rs/sql/report7',20, {
|
|
130
|
+
}),
|
|
131
|
+
criteriaShow: false,
|
|
132
|
+
defnames: [{label: '全部', value: ''},
|
|
133
|
+
{label: '踏勘', value: '踏勘'},
|
|
134
|
+
{label: '施工', value: '施工'},
|
|
135
|
+
{label: '施工验收', value: '施工验收'},
|
|
136
|
+
{label: '通气转单', value: '通气转单'}]
|
|
137
|
+
}
|
|
138
|
+
},
|
|
139
|
+
ready () {
|
|
140
|
+
this.$refs.cp.$refs.cri.model.startDate =toStandardDateString() + ' 00:00:00'
|
|
141
|
+
this.$refs.cp.$refs.cri.model.endDate =toStandardDateString() + ' 23:59:59'
|
|
142
|
+
// 调用查询
|
|
143
|
+
this.$refs.cp.$refs.cri.search()
|
|
144
|
+
},
|
|
145
|
+
methods: {
|
|
146
|
+
// 清空
|
|
147
|
+
clear () {
|
|
148
|
+
Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
|
|
149
|
+
this.$refs.cp.$refs.cri.model[key] = []
|
|
150
|
+
})
|
|
151
|
+
},
|
|
152
|
+
// 查询
|
|
153
|
+
search () {
|
|
154
|
+
this.$refs.cp.$refs.cri.search()
|
|
155
|
+
},
|
|
156
|
+
},
|
|
157
|
+
computed: {
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
</script>
|
|
161
|
+
|
|
162
|
+
<style scoped>
|
|
163
|
+
</style>
|