apply-clients 7.1.36-yuchuan-4 → 7.1.36-yuchuan-4.1
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 +2 -1
- package/index.html +1 -1
- package/package.json +119 -119
- package/src/apply.js +15 -3
- package/src/applyAndroid.js +9 -0
- package/src/assets//345/260/217/345/214/272.png +0 -0
- package/src/assets//347/224/250/346/210/267ID.png +0 -0
- package/src/assets//347/224/250/346/210/267/345/247/223/345/220/215.png +0 -0
- package/src/components/android/AppSign.vue +7 -4
- package/src/components/android/AppUpload.vue +1 -1
- package/src/components/android/Ignition/VentilationIgnitionHandle.vue +38 -31
- package/src/components/android/Process/AppServiceControl.vue +32 -5
- package/src/components/android/Process/Processes/AppInstallationDetails.vue +205 -92
- package/src/components/android/SealBind.vue +376 -0
- package/src/components/android/SealManage.vue +264 -0
- package/src/components/android/Supervisory/AppProcessSupervisory.vue +344 -334
- package/src/components/android/Task/ShiGongXinXi/AppShowBuildUser.vue +9 -9
- package/src/components/android/Task/yiban/AppShowDone.vue +442 -0
- package/src/components/android/Task/yiban/ShowDone.vue +95 -0
- package/src/components/android/Task/yiban/satisfactionShow.vue +166 -0
- package/src/components/product/ApplyCharge/ApplyChargeList.vue +18 -0
- package/src/components/product/ApplyGaiXianCharge/ApplyGaiXianViewList.vue +272 -0
- package/src/components/product/ApplyGuanXian/GuanXianCaiLiao.vue +1 -1
- package/src/components/product/ApplyGuanXian/GuanXianExplorationSelect.vue +31 -31
- package/src/components/product/ApplyGuanXian/GuanXianSupervisoryhCart.vue +4 -4
- package/src/components/product/ApplyMap/ApplyDragaboutList.vue +2 -2
- package/src/components/product/ApplyMap/ApplyMapLocation.vue +22 -10
- package/src/components/product/ChongZheng/ApplyChongZhengList.vue +1 -1
- package/src/components/product/Function/Service/FunctionServiceControl.vue +125 -14
- package/src/components/product/GongJianPush/ApplyPushDispose.vue +182 -0
- package/src/components/product/GongJianPush/ApplyPushList.vue +192 -0
- package/src/components/product/GongJianPush/ApplyPushManage.vue +83 -0
- package/src/components/product/Ignition/IgnitionListManage.vue +1 -1
- package/src/components/product/Ignition/IgnitionRecord.vue +22 -0
- package/src/components/product/List/OldShowDevices.vue +271 -0
- package/src/components/product/List/ShowAllActivity.vue +104 -19
- package/src/components/product/List/ShowDevices.vue +1 -1
- package/src/components/product/Process/ExplorationSelect.vue +41 -35
- package/src/components/product/Process/NewExplorationSelect.vue +31 -31
- package/src/components/product/Process/Processes/InstallationDetails.vue +34 -1
- package/src/components/product/Process/Processes/Print/printGaiXianCharge.vue +244 -0
- package/src/components/product/Process/Processes/devicesManagement.vue +23 -4
- package/src/components/product/Process/Processes/newDevicesManagement.vue +10 -1
- package/src/components/product/Process/Service/ServiceControl.vue +42 -3
- package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +1 -3
- package/src/components/product/Supervisory/SupervisoryControl.vue +2 -0
- package/src/components/product/Supervisory/SupervisoryList.vue +17 -0
- package/src/components/product/VueUtils/ApplyUpload.vue +3 -2
- package/src/components/product/records/AdjustmentRecordList.vue +162 -0
- package/yarn-error.log +9968 -0
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div style="flex:1;" class="flex">
|
|
3
|
+
<criteria-paged :model="model" v-ref:paged>
|
|
4
|
+
<criteria partial='criteria' v-ref:criteria @condition-changed='$parent.search'>
|
|
5
|
+
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
|
|
6
|
+
<div class="col-sm-2">
|
|
7
|
+
<label class="font_normal_body">客户名称</label>
|
|
8
|
+
<input type="text" class="input_search" style="width:60%"
|
|
9
|
+
v-model="model.f_user_name"
|
|
10
|
+
placeholder='客户名称'
|
|
11
|
+
:size="model.f_user_name ? model.f_user_name.length : 6"
|
|
12
|
+
condition="f_user_name like '%{}%'">
|
|
13
|
+
</div>
|
|
14
|
+
<div class="col-sm-2">
|
|
15
|
+
<label class="font_normal_body">工程编号</label>
|
|
16
|
+
<input type="text" class="input_search" style="width:60%"
|
|
17
|
+
v-model="model.f_apply_num"
|
|
18
|
+
placeholder='工程编号'
|
|
19
|
+
:size="model.f_apply_num ? model.f_apply_num.length : 10"
|
|
20
|
+
condition="f_apply_num like '%{}%'">
|
|
21
|
+
</div>
|
|
22
|
+
<div class="col-sm-2">
|
|
23
|
+
<label class="font_normal_body">联系电话</label>
|
|
24
|
+
<input type="text" class="input_search" style="width:60%"
|
|
25
|
+
v-model="model.f_phone"
|
|
26
|
+
placeholder='联系电话'
|
|
27
|
+
:size="model.f_phone ? model.f_phone.length : 11"
|
|
28
|
+
condition="f_apply_num like '%{}%'">
|
|
29
|
+
</div>
|
|
30
|
+
<div class="col-sm-2">
|
|
31
|
+
<label class="font_normal_body">用户地址</label>
|
|
32
|
+
<input type="text" class="input_search" style="width:60%"
|
|
33
|
+
v-model="model.f_address"
|
|
34
|
+
placeholder='用户地址'
|
|
35
|
+
:size="model.f_address ? model.f_address.length : 11"
|
|
36
|
+
condition="f_address like '%{}%'">
|
|
37
|
+
</div>
|
|
38
|
+
<div class="col-sm-2">
|
|
39
|
+
<label class="font_normal_body">报建类型</label>
|
|
40
|
+
<v-select :value.sync="model.f_apply_type" v-model="model.f_apply_type"
|
|
41
|
+
placeholder='报建类型'
|
|
42
|
+
value-single="true"
|
|
43
|
+
:options='$parent.$parent.applyType'
|
|
44
|
+
close-on-select
|
|
45
|
+
condition="f_apply_type = '{}'"
|
|
46
|
+
></v-select>
|
|
47
|
+
</div>
|
|
48
|
+
<div class="col-sm-2">
|
|
49
|
+
<label class="font_normal_body">办理环节</label>
|
|
50
|
+
<v-select :value.sync="model.f_apply_type" v-model="model.f_apply_type"
|
|
51
|
+
placeholder='办理环节'
|
|
52
|
+
value-single="true"
|
|
53
|
+
:options='$parent.$parent.handingLinks'
|
|
54
|
+
close-on-select
|
|
55
|
+
condition="f_apply_type = '{}'"
|
|
56
|
+
></v-select>
|
|
57
|
+
</div>
|
|
58
|
+
<div class="col-sm-2">
|
|
59
|
+
<label class="font_normal_body">报建性质</label>
|
|
60
|
+
<v-select :value.sync="model.f_apply_nature" v-model="model.f_apply_nature"
|
|
61
|
+
placeholder='报建性质'
|
|
62
|
+
value-single="true"
|
|
63
|
+
:options='$parent.$parent.applyNature'
|
|
64
|
+
close-on-select
|
|
65
|
+
condition="f_apply_nature = '{}'"
|
|
66
|
+
></v-select>
|
|
67
|
+
</div>
|
|
68
|
+
<div class="col-sm-2">
|
|
69
|
+
<label class="font_normal_body">报建来源</label>
|
|
70
|
+
<v-select :value.sync="model.f_apply_source" v-model="model.f_apply_source"
|
|
71
|
+
placeholder='报建来源'
|
|
72
|
+
value-single="true"
|
|
73
|
+
:options='$parent.$parent.applySource'
|
|
74
|
+
close-on-select
|
|
75
|
+
condition="f_apply_source = '{}'"
|
|
76
|
+
></v-select>
|
|
77
|
+
</div>
|
|
78
|
+
<div class="form-group col-sm-2">
|
|
79
|
+
<label for="startDate" class="font_normal_body">开始时间</label>
|
|
80
|
+
<datepicker id="startDate" placeholder="开始日期"
|
|
81
|
+
style="width: 60%!important;"
|
|
82
|
+
v-model="model.startDate"
|
|
83
|
+
:value.sync="model.startDate"
|
|
84
|
+
:format="'yyyy-MM-dd 00:00:00'"
|
|
85
|
+
:show-reset-button="true"
|
|
86
|
+
condition="f_apply_date >= '{}'">
|
|
87
|
+
</datepicker>
|
|
88
|
+
</div>
|
|
89
|
+
<div class="form-group col-sm-2">
|
|
90
|
+
<label for="endDate" class="font_normal_body">结束时间</label>
|
|
91
|
+
<datepicker id="endDate" placeholder="结束日期"
|
|
92
|
+
style="width: 60%!important;"
|
|
93
|
+
v-model="model.endDate"
|
|
94
|
+
:value.sync="model.endDate"
|
|
95
|
+
:format="'yyyy-MM-dd 23:59:59'"
|
|
96
|
+
:show-reset-button="true"
|
|
97
|
+
condition="f_apply_date <= '{}'">
|
|
98
|
+
</datepicker>
|
|
99
|
+
</div>
|
|
100
|
+
<div class="col-sm-2 form-group" style="float:right">
|
|
101
|
+
<button class="button_search button_spacing" @click="search()" v-el:cba>查询</button>
|
|
102
|
+
<button class="button_search button_spacing" @click="$parent.$parent.clearmsg">清空</button>
|
|
103
|
+
</div>
|
|
104
|
+
</div>
|
|
105
|
+
</criteria>
|
|
106
|
+
<data-grid id="queryinstruct" partial='list' class="list_area table_sy" v-ref:grid :model="model">
|
|
107
|
+
<template partial='head'>
|
|
108
|
+
<tr>
|
|
109
|
+
<th style="text-align:center"><nobr>工程编号</nobr></th>
|
|
110
|
+
<th style="text-align:center"><nobr>客户名称</nobr></th>
|
|
111
|
+
<th style="text-align:center"><nobr>电话</nobr></th>
|
|
112
|
+
<th style="text-align:center"><nobr>地址</nobr></th>
|
|
113
|
+
<th style="text-align:center"><nobr>来源</nobr></th>
|
|
114
|
+
<th style="text-align:center"><nobr>报建类型</nobr></th>
|
|
115
|
+
<th style="text-align:center"><nobr>报建性质</nobr></th>
|
|
116
|
+
<th style="text-align:center"><nobr>办理环节</nobr></th>
|
|
117
|
+
<th style="text-align:center"><nobr>流程状态</nobr></th>
|
|
118
|
+
<th style="text-align:center"><nobr>报建日期</nobr></th>
|
|
119
|
+
</tr>
|
|
120
|
+
</template>
|
|
121
|
+
<template partial='body'>
|
|
122
|
+
<tr>
|
|
123
|
+
<td style="text-align:center"><nobr>{{ row.f_apply_num }}</nobr></td>
|
|
124
|
+
<td style="text-align:center"><nobr>{{ row.f_user_name }}</nobr></td>
|
|
125
|
+
<td style="text-align:center"><nobr>{{ row.f_phone }}</nobr></td>
|
|
126
|
+
<td style="text-align:center"><nobr>{{ row.f_address }}</nobr></td>
|
|
127
|
+
<td style="text-align:center"><nobr>{{ row.f_apply_source }}</nobr></td>
|
|
128
|
+
<td style="text-align:center"><nobr>{{ row.f_apply_type }}</nobr></td>
|
|
129
|
+
<td style="text-align:center"><nobr>{{ row.f_apply_nature }}</nobr></td>
|
|
130
|
+
<td style="text-align:center"><nobr>{{ row.defname }}</nobr></td>
|
|
131
|
+
<td style="text-align:center"> <nobr>{{ row.f_sub_state }}</nobr></td>
|
|
132
|
+
<td style="text-align:center"><nobr>{{ row.f_apply_date }}</nobr></td>
|
|
133
|
+
</tr>
|
|
134
|
+
</template>
|
|
135
|
+
</data-grid>
|
|
136
|
+
</criteria-paged>
|
|
137
|
+
</div>
|
|
138
|
+
</template>
|
|
139
|
+
|
|
140
|
+
<script>
|
|
141
|
+
import {PagedList} from 'vue-client'
|
|
142
|
+
|
|
143
|
+
export default {
|
|
144
|
+
title: '政府报建',
|
|
145
|
+
data () {
|
|
146
|
+
return {
|
|
147
|
+
model: new PagedList('rs/sql/getApplyPushList', 30),
|
|
148
|
+
row: null,
|
|
149
|
+
applyNature: [{label: '全部', value: ''}, {label: '散户', value: '散户'}, {label: '小区', value: '小区'},{label: '商业', value: '商业'},{label: '工业', value: '工业'}],
|
|
150
|
+
applySource: [{label: '全部', value: ''}, {label: '微信公众号', value: '微信公众号'}, {label: '线下发起', value: '线下发起'}],
|
|
151
|
+
applyType: [{label: '全部', value: ''}, {label: '民用报建', value: '民用报建'}, {label: '非民用报建', value: '非民用报建'}],
|
|
152
|
+
handingLinks: [{label: '全部', value: ''}, {label: '报装申请', value: '报装申请'}, {label: '报建受理', value: '报建受理'}, {label: '现场勘察', value: '现场勘察'}, {label: '收费标准', value: '收费标准'}, {label: '报装缴费', value: '报装缴费'}, {label: '合同签订', value: '合同签订'}, {label: '设计出图', value: '设计出图'}, {label: '工程派工', value: '工程派工'}, {label: '工程队派工', value: '工程队派工'}, {label: '监理单位派工', value: '监理单位派工'}, {label: '工程施工', value: '工程施工'}, {label: '点火通气', value: '点火通气'}, {label: '完工', value: '完工'}],
|
|
153
|
+
criteriaShow: false,
|
|
154
|
+
isdeal: true
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
props: {
|
|
158
|
+
id: {
|
|
159
|
+
type: String
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
ready () {
|
|
163
|
+
this.search({condition: ' 1 = 1 '})
|
|
164
|
+
},
|
|
165
|
+
load () {
|
|
166
|
+
},
|
|
167
|
+
watch: {
|
|
168
|
+
},
|
|
169
|
+
methods: {
|
|
170
|
+
search (args) {
|
|
171
|
+
args.condition += this.orgcondition ? this.orgcondition : ''
|
|
172
|
+
console.log('args.condition' + args.condition)
|
|
173
|
+
this.condition = args.condition
|
|
174
|
+
this.model.search(args.condition, args.model)
|
|
175
|
+
},
|
|
176
|
+
clearmsg () {
|
|
177
|
+
this.$refs.paged.$refs.criteria.model = {}
|
|
178
|
+
},
|
|
179
|
+
applyDetails (self) {
|
|
180
|
+
console.log('查看报装详情 --- ' + self)
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
computed: {
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
</script>
|
|
187
|
+
<style>
|
|
188
|
+
.form-input-group label {
|
|
189
|
+
text-align: right;
|
|
190
|
+
width: auto;
|
|
191
|
+
}
|
|
192
|
+
</style>
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div id="unit" class="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></gongjian-apply-list>
|
|
6
|
+
</div>
|
|
7
|
+
<div class="binary-right">
|
|
8
|
+
<gongjian-apply-dispose :recordlist="recordlist" :model="model" :oldmodel="oldmodel" v-show="showItem"
|
|
9
|
+
:f_distribution_state="f_distribution_state" :row="row" : rowsdata="rowsdata1"
|
|
10
|
+
:warehousename="warehousename"></gongjian-apply-dispose>
|
|
11
|
+
</div>
|
|
12
|
+
</div>
|
|
13
|
+
</template>
|
|
14
|
+
|
|
15
|
+
<script>
|
|
16
|
+
export default {
|
|
17
|
+
title: '政府报建',
|
|
18
|
+
components: {},
|
|
19
|
+
data() {
|
|
20
|
+
return {
|
|
21
|
+
f_alarmId: '',
|
|
22
|
+
row: {},
|
|
23
|
+
model: {},
|
|
24
|
+
oldmodel: {},
|
|
25
|
+
showItem: false,
|
|
26
|
+
stepControl: true,
|
|
27
|
+
|
|
28
|
+
// 分公司id串
|
|
29
|
+
width: '100%',
|
|
30
|
+
f_filialeids: this.$login.f.f_orgids,
|
|
31
|
+
areaShow: false,
|
|
32
|
+
areatype: '小区',
|
|
33
|
+
arearow: {},
|
|
34
|
+
style: 'col-sm-2'
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
methods: {
|
|
38
|
+
selected(obj) {
|
|
39
|
+
this.style = 'col-sm-3 '
|
|
40
|
+
if (obj.val && obj.val.id) {
|
|
41
|
+
console.log('对比分公司', obj.val.f_filialeid, this.f_filialeids)
|
|
42
|
+
if (obj.val.f_filialeid !== this.f_filialeids) {
|
|
43
|
+
this.refresh()
|
|
44
|
+
return
|
|
45
|
+
}
|
|
46
|
+
this.areaShow = true
|
|
47
|
+
this.$refs.addareamsg.cleardara()
|
|
48
|
+
this.$refs.addareamsg.operation = 'modify'
|
|
49
|
+
this.$refs.addareamsg.areatype = '小区'
|
|
50
|
+
this.$refs.addareamsg.areamodel = Object.assign({}, obj.val)
|
|
51
|
+
if (obj.val.f_slice_area && obj.val.f_area_code) {
|
|
52
|
+
this.$refs.addareamsg.areamodel.slice_area = [{
|
|
53
|
+
name: this.$refs.addareamsg.areamodel.f_slice_area,
|
|
54
|
+
code: this.$refs.addareamsg.areamodel.f_area_code
|
|
55
|
+
}]
|
|
56
|
+
}
|
|
57
|
+
this.$refs.addareamsg.initdata(obj.val)
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
refresh() {
|
|
61
|
+
this.areaShow = false
|
|
62
|
+
this.$refs.arealist.$refs.paged.$refs.cri.search()
|
|
63
|
+
},
|
|
64
|
+
idsearch(row) {
|
|
65
|
+
this.showItem = true
|
|
66
|
+
this.model = JSON.parse(JSON.stringify(row.val));
|
|
67
|
+
this.oldmodel = JSON.parse(JSON.stringify(row.val));
|
|
68
|
+
},
|
|
69
|
+
getAlarmData () {
|
|
70
|
+
let data = {}
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
events: {
|
|
74
|
+
'close'() {
|
|
75
|
+
this.showItem = false
|
|
76
|
+
this.$refs.stocklist.search()
|
|
77
|
+
console.log('this.$refs', this.$refs)
|
|
78
|
+
console.log('showitem', this.showItem)
|
|
79
|
+
},
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
</script>
|
|
83
|
+
|
|
@@ -569,7 +569,7 @@ export default {
|
|
|
569
569
|
});
|
|
570
570
|
},
|
|
571
571
|
searchCondition(args) {
|
|
572
|
-
args.condition = args.condition + ` and ir.id is
|
|
572
|
+
args.condition = args.condition + ` and ir.id is null`;
|
|
573
573
|
console.log("this.showDatade", this.showData);
|
|
574
574
|
// args.condition = args.condition + ` and ui.f_process_id = '${this.showData.f_process_id}'`
|
|
575
575
|
args.condition = args.condition + ` and ui.f_process_id is not null`;
|
|
@@ -127,6 +127,28 @@
|
|
|
127
127
|
condition="ir.f_date <= '{}'">
|
|
128
128
|
</datepicker>
|
|
129
129
|
</div>
|
|
130
|
+
<div class="form-group col-sm-3">
|
|
131
|
+
<label for="startFireDate" class="font_normal_body"><strong>点火时间:</strong></label>
|
|
132
|
+
<datepicker id="startFireDate" placeholder="开始日期"
|
|
133
|
+
style="width: 60%!important;"
|
|
134
|
+
v-model="model.startFireDate"
|
|
135
|
+
:value.sync="model.startFireDate"
|
|
136
|
+
:format="'yyyy-MM-dd 00:00:00'"
|
|
137
|
+
:show-reset-button="true"
|
|
138
|
+
condition="ir.f_ignition_date>= '{}'">
|
|
139
|
+
</datepicker>
|
|
140
|
+
</div>
|
|
141
|
+
<div class="form-group col-sm-3">
|
|
142
|
+
<label for="endFireDate" class="font_normal_body"><strong>点火时间:</strong></label>
|
|
143
|
+
<datepicker id="endFireDate" placeholder="结束日期"
|
|
144
|
+
style="width: 60%!important;"
|
|
145
|
+
v-model="model.endFireDate"
|
|
146
|
+
:value.sync="model.endFireDate"
|
|
147
|
+
:format="'yyyy-MM-dd 23:59:59'"
|
|
148
|
+
:show-reset-button="true"
|
|
149
|
+
condition="ir.f_ignition_date <= '{}'">
|
|
150
|
+
</datepicker>
|
|
151
|
+
</div>
|
|
130
152
|
</div>
|
|
131
153
|
</div>
|
|
132
154
|
</criteria>
|
|
@@ -0,0 +1,271 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="flex-row">
|
|
3
|
+
<div class="basic-main">
|
|
4
|
+
<criteria-paged :model="model" v-ref:cp>
|
|
5
|
+
<criteria partial='criteria' @condition-changed='search' v-ref:cri>
|
|
6
|
+
<div class="form-horizontal select-overspread container-fluid auto" partial>
|
|
7
|
+
<div class="row">
|
|
8
|
+
<div class="form-group col-sm-2">
|
|
9
|
+
<label class="font_normal_body"><strong>报建编号:</strong></label>
|
|
10
|
+
<input type="text" class="input_search" style="width: 60%" v-model="model.f_apply_num"
|
|
11
|
+
v-on:keyup.enter="$parent.$parent.search()" condition="u.f_apply_num like '%{}%'"
|
|
12
|
+
placeholder='报建编号'>
|
|
13
|
+
</div>
|
|
14
|
+
<div class="form-group col-sm-2">
|
|
15
|
+
<label class="font_normal_body"><strong>用户名称:</strong></label>
|
|
16
|
+
<input type="text" class="input_search" style="width: 60%" v-model="model.f_user_name"
|
|
17
|
+
v-on:keyup.enter="$parent.$parent.search()" condition="u.f_user_name like '%{}%'"
|
|
18
|
+
placeholder='用户名称'>
|
|
19
|
+
</div>
|
|
20
|
+
<div class="form-group col-sm-2">
|
|
21
|
+
<label class="font_normal_body"><strong>电  话:</strong></label>
|
|
22
|
+
<input type="text" class="input_search" style="width: 60%" v-model="model.f_phone"
|
|
23
|
+
v-on:keyup.enter="$parent.$parent.search()" condition="u.f_phone like '%{}%'"
|
|
24
|
+
placeholder='电话'>
|
|
25
|
+
</div>
|
|
26
|
+
<div class="form-group col-sm-3 button-range">
|
|
27
|
+
<button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
|
|
28
|
+
<button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
|
|
29
|
+
<export-excel :data="$parent.$parent.getCondition"
|
|
30
|
+
:field="$parent.$parent.getfield"
|
|
31
|
+
sqlurl="rs/logic/applyExportfile"
|
|
32
|
+
sql-name="getOldDevices"
|
|
33
|
+
template-name='设备记录信息导出'
|
|
34
|
+
:choose-col="true"></export-excel>
|
|
35
|
+
<div
|
|
36
|
+
:class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
|
|
37
|
+
@click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"
|
|
38
|
+
class="button_spacing"
|
|
39
|
+
style="float: right">
|
|
40
|
+
</div>
|
|
41
|
+
</div>
|
|
42
|
+
</div>
|
|
43
|
+
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
44
|
+
<div class="form-group col-sm-2">
|
|
45
|
+
<label class="font_normal_body"><strong>报建类型:</strong></label>
|
|
46
|
+
<v-select
|
|
47
|
+
v-model="model.f_apply_type"
|
|
48
|
+
placeholder='请选择'
|
|
49
|
+
condition="u.f_apply_type = '{}'"
|
|
50
|
+
:value.sync="model.f_apply_type"
|
|
51
|
+
:options='$parent.$parent.applytype'
|
|
52
|
+
class="select select_list"
|
|
53
|
+
:value-single="true"
|
|
54
|
+
close-on-select></v-select>
|
|
55
|
+
</div>
|
|
56
|
+
<div class="form-group col-sm-2">
|
|
57
|
+
<label for="startDate" class="font_normal_body"><strong>开始时间:</strong></label>
|
|
58
|
+
<datepicker id="startDate" placeholder="开始日期"
|
|
59
|
+
style="width: 60%!important;"
|
|
60
|
+
v-model="model.startDate"
|
|
61
|
+
:value.sync="model.startDate"
|
|
62
|
+
:format="'yyyy-MM-dd 00:00:00'"
|
|
63
|
+
:show-reset-button="true"
|
|
64
|
+
condition="ct.f_create_date >= '{}'">
|
|
65
|
+
</datepicker>
|
|
66
|
+
</div>
|
|
67
|
+
<div class="form-group col-sm-2">
|
|
68
|
+
<label for="endDate" class="font_normal_body"><strong>结束时间:</strong></label>
|
|
69
|
+
<datepicker id="endDate" placeholder="结束日期"
|
|
70
|
+
style="width: 60%!important;"
|
|
71
|
+
v-model="model.endDate"
|
|
72
|
+
:value.sync="model.endDate"
|
|
73
|
+
:format="'yyyy-MM-dd 23:59:59'"
|
|
74
|
+
:sho w-reset-button="true"
|
|
75
|
+
condition="ct.f_create_date <= '{}'">
|
|
76
|
+
</datepicker>
|
|
77
|
+
</div>
|
|
78
|
+
</div>
|
|
79
|
+
</div>
|
|
80
|
+
</criteria>
|
|
81
|
+
<data-grid :model="model" partial='list' v-ref:grid style="overflow: auto" class="list_area table_sy">
|
|
82
|
+
<template partial='head'>
|
|
83
|
+
<tr>
|
|
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
|
+
<th style="white-space: nowrap;">火眼</th>
|
|
90
|
+
<th style="white-space: nowrap;">小火眼</th>
|
|
91
|
+
<th style="white-space: nowrap;">壁挂炉</th>
|
|
92
|
+
<th style="white-space: nowrap;">家用灶</th>
|
|
93
|
+
<th style="white-space: nowrap;">热水器</th>
|
|
94
|
+
<th style="white-space: nowrap;">采暖炉</th>
|
|
95
|
+
<th style="white-space: nowrap;">茶水炉</th>
|
|
96
|
+
<th style="white-space: nowrap;">蒸车</th>
|
|
97
|
+
<th style="white-space: nowrap;">蒸汽发生器</th>
|
|
98
|
+
<th style="white-space: nowrap;">灶具</th>
|
|
99
|
+
<th style="white-space: nowrap;">压缩机</th>
|
|
100
|
+
<th style="white-space: nowrap;">模块炉</th>
|
|
101
|
+
<th style="white-space: nowrap;">单位(KW)</th>
|
|
102
|
+
<th style="white-space: nowrap;">锅炉单位(MW)</th>
|
|
103
|
+
<th style="white-space: nowrap;">锅炉吨位(T)</th>
|
|
104
|
+
<th style="white-space: nowrap;">报建编号</th>
|
|
105
|
+
<th style="white-space: nowrap;">合同状态</th>
|
|
106
|
+
<th style="white-space: nowrap;">报建类型</th>
|
|
107
|
+
<th style="white-space: nowrap;">报建性质</th>
|
|
108
|
+
<th style="white-space: nowrap;">安装处数</th>
|
|
109
|
+
</tr>
|
|
110
|
+
</template>
|
|
111
|
+
<template partial='body'>
|
|
112
|
+
<tr>
|
|
113
|
+
<td style="text-align: center;">
|
|
114
|
+
<nobr><font>{{ $index + 1 }}</font></nobr>
|
|
115
|
+
</td>
|
|
116
|
+
<td style="text-align: center;">
|
|
117
|
+
<nobr><font>{{ row.f_user_name }}</font></nobr>
|
|
118
|
+
</td>
|
|
119
|
+
<td style="text-align: center;">
|
|
120
|
+
<nobr><font>{{ row.f_entrust_contract_number }}</font></nobr>
|
|
121
|
+
</td>
|
|
122
|
+
<td style="text-align: center;">
|
|
123
|
+
<nobr><font>{{ row.f_contract_number }}</font></nobr>
|
|
124
|
+
</td>
|
|
125
|
+
<td style="text-align: center;">
|
|
126
|
+
<nobr><font>{{ row.f_phone }}</font></nobr>
|
|
127
|
+
</td>
|
|
128
|
+
<td style="text-align: center;">
|
|
129
|
+
<nobr><font>{{ row.huoyan }}</font></nobr>
|
|
130
|
+
</td>
|
|
131
|
+
<td style="text-align: center;">
|
|
132
|
+
<nobr><font>{{ row.xiaohuoyan }}</font></nobr>
|
|
133
|
+
</td>
|
|
134
|
+
<td style="text-align: center;">
|
|
135
|
+
<nobr><font>{{ row.bigualu }}</font></nobr>
|
|
136
|
+
</td>
|
|
137
|
+
<td style="text-align: center;">
|
|
138
|
+
<nobr><font>{{ row.jiayongzao }}</font></nobr>
|
|
139
|
+
</td>
|
|
140
|
+
<td style="text-align: center;">
|
|
141
|
+
<nobr><font>{{ row.reshuiqi }}</font></nobr>
|
|
142
|
+
</td>
|
|
143
|
+
<td style="text-align: center;">
|
|
144
|
+
<nobr><font>{{ row.cainuanlu }}</font></nobr>
|
|
145
|
+
</td>
|
|
146
|
+
<td style="text-align: center;">
|
|
147
|
+
<nobr><font>{{ row.chashuilu }}</font></nobr>
|
|
148
|
+
</td>
|
|
149
|
+
<td style="text-align: center;">
|
|
150
|
+
<nobr><font>{{ row.zhengche }}</font></nobr>
|
|
151
|
+
</td>
|
|
152
|
+
<td style="text-align: center;">
|
|
153
|
+
<nobr><font>{{ row.zhengqifashengqi }}</font></nobr>
|
|
154
|
+
</td>
|
|
155
|
+
<td style="text-align: center;">
|
|
156
|
+
<nobr><font>{{ row.zaoju }}</font></nobr>
|
|
157
|
+
</td>
|
|
158
|
+
<td style="text-align: center;">
|
|
159
|
+
<nobr><font>{{ row.yasuoji }}</font></nobr>
|
|
160
|
+
</td>
|
|
161
|
+
<td style="text-align: center;">
|
|
162
|
+
<nobr><font>{{ row.mokuailu }}</font></nobr>
|
|
163
|
+
</td>
|
|
164
|
+
<td style="text-align: center;">
|
|
165
|
+
<nobr><font>{{ row.danweikw }}</font></nobr>
|
|
166
|
+
</td>
|
|
167
|
+
<td style="text-align: center;">
|
|
168
|
+
<nobr><font>{{ row.danweimw }}</font></nobr>
|
|
169
|
+
</td>
|
|
170
|
+
<td style="text-align: center;">
|
|
171
|
+
<nobr><font>{{ row.dunwei }}</font></nobr>
|
|
172
|
+
</td>
|
|
173
|
+
<td style="text-align: center;">
|
|
174
|
+
<nobr><font>{{ row.f_apply_num }}</font></nobr>
|
|
175
|
+
</td>
|
|
176
|
+
<td style="text-align: center;">
|
|
177
|
+
<nobr><font>{{ row.f_contract_state }}</font></nobr>
|
|
178
|
+
</td>
|
|
179
|
+
<td style="text-align: center;">
|
|
180
|
+
<nobr><font>{{ row.f_apply_type }}</font></nobr>
|
|
181
|
+
</td>
|
|
182
|
+
<td style="text-align: center;">
|
|
183
|
+
<nobr><font>{{ row.f_apply_nature }}</font></nobr>
|
|
184
|
+
</td>
|
|
185
|
+
<td style="text-align: center;">
|
|
186
|
+
<nobr><font>{{ row.f_install_count }}</font></nobr>
|
|
187
|
+
</td>
|
|
188
|
+
</tr>
|
|
189
|
+
</template>
|
|
190
|
+
</data-grid>
|
|
191
|
+
</criteria-paged>
|
|
192
|
+
</div>
|
|
193
|
+
</div>
|
|
194
|
+
</template>
|
|
195
|
+
|
|
196
|
+
<script>
|
|
197
|
+
import {PagedList} from 'vue-client'
|
|
198
|
+
export default {
|
|
199
|
+
title: '原报建设备列表',
|
|
200
|
+
data () {
|
|
201
|
+
return {
|
|
202
|
+
model: new PagedList('rs/sql/getOldDevices', 20, {
|
|
203
|
+
data: {
|
|
204
|
+
f_filiale: this.$login.f.f_fengongsi
|
|
205
|
+
}
|
|
206
|
+
}),
|
|
207
|
+
applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')],
|
|
208
|
+
criteriaShow: false,
|
|
209
|
+
getfield: {
|
|
210
|
+
'f_apply_num': ' 报 建 编 号 ',
|
|
211
|
+
'f_user_name': ' 用 户 名 称 ',
|
|
212
|
+
'f_contact': ' 联 系 人 ',
|
|
213
|
+
'f_address': ' 地 址 ',
|
|
214
|
+
'f_phone': ' 电 话 ',
|
|
215
|
+
'f_apply_type': ' 报 建 类 型 ',
|
|
216
|
+
'f_apply_nature': ' 报建性质 ',
|
|
217
|
+
'f_install_count': ' 安装处数 ',
|
|
218
|
+
'huoyan': ' 火眼 ',
|
|
219
|
+
'xiaohuoyan': ' 小火眼 ',
|
|
220
|
+
'bigualu': ' 壁挂炉 ',
|
|
221
|
+
'jiayongzao': ' 家用灶 ',
|
|
222
|
+
'reshuiqi': ' 热水器 ',
|
|
223
|
+
'cainuanlu': ' 采暖炉 ',
|
|
224
|
+
'chashuilu': ' 茶水炉 ',
|
|
225
|
+
'zhengche': ' 蒸车 ',
|
|
226
|
+
'zhengqifashengqi': ' 蒸汽发生器 ',
|
|
227
|
+
'zaoju': ' 灶具 ',
|
|
228
|
+
'yasuoji': ' 压缩机 ',
|
|
229
|
+
'mokuailu': ' 模块炉 ',
|
|
230
|
+
'danweikw': ' 锅炉单位(KW) ',
|
|
231
|
+
'danweimw': ' 锅炉单位(MW) ',
|
|
232
|
+
'dunwei': ' 锅炉吨位(T) ',
|
|
233
|
+
'f_entrust_contract_number': '施工合同编号',
|
|
234
|
+
'f_contract_number': '供气合同编号',
|
|
235
|
+
'f_create_date': '合同创建日期',
|
|
236
|
+
'f_due_money': ' 合同金额 ',
|
|
237
|
+
'f_contract_state': '合同状态'
|
|
238
|
+
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
},
|
|
242
|
+
ready () {
|
|
243
|
+
// 调用查询
|
|
244
|
+
this.search()
|
|
245
|
+
},
|
|
246
|
+
methods: {
|
|
247
|
+
clear () {
|
|
248
|
+
Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
|
|
249
|
+
this.$refs.cp.$refs.cri.model[key] = []
|
|
250
|
+
})
|
|
251
|
+
},
|
|
252
|
+
// 查询
|
|
253
|
+
search () {
|
|
254
|
+
this.$refs.cp.$refs.cri.search()
|
|
255
|
+
}
|
|
256
|
+
},
|
|
257
|
+
computed: {
|
|
258
|
+
getCondition () {
|
|
259
|
+
return {
|
|
260
|
+
condition: this.$refs.cp.$refs.cri.condition,
|
|
261
|
+
data: {
|
|
262
|
+
f_filiale: this.$login.f.f_fengongsi
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
</script>
|
|
269
|
+
|
|
270
|
+
<style scoped>
|
|
271
|
+
</style>
|