|
|
@@ -1,13 +1,13 @@
|
|
|
|
|
|
<template>
|
|
|
<div>
|
|
|
- <basicLayout
|
|
|
- ref="list"
|
|
|
+ <basicLayout
|
|
|
+ ref="list"
|
|
|
:oldFormPath="{
|
|
|
add:'HDrpManagement/serveBillMag/components'
|
|
|
}"
|
|
|
- tableName="serveBillTable"
|
|
|
- idName="sa_serviceorderid"
|
|
|
+ tableName="serveBillTable"
|
|
|
+ idName="sa_serviceorderid"
|
|
|
:apiId="{query:20230206091703,del:20230206091803}"
|
|
|
:options="options"
|
|
|
:detailPath="{
|
|
|
@@ -24,6 +24,15 @@
|
|
|
<el-option label="已完成" value="已完成"></el-option>
|
|
|
</el-select>
|
|
|
</div>
|
|
|
+ <div class="label_center">
|
|
|
+ <label class="search__label">服务类型:</label>
|
|
|
+ <el-select class="inline-24" v-model="where.servicetype" placeholder="请选择服务类型" @change="selectChange" size="small" clearable>
|
|
|
+ <el-option label="售前" value="售前"></el-option>
|
|
|
+ <el-option label="售中" value="售中"></el-option>
|
|
|
+ <el-option label="售后" value="售后"></el-option>
|
|
|
+ <el-option label="历史售后" value="历史售后"></el-option>
|
|
|
+ </el-select>
|
|
|
+ </div>
|
|
|
<div class="label_center">
|
|
|
<label class="search__label" >提交日期:</label>
|
|
|
<el-date-picker
|
|
|
@@ -70,7 +79,8 @@ export default {
|
|
|
options:[],
|
|
|
where: {
|
|
|
status:'',
|
|
|
- date: ''
|
|
|
+ date: '',
|
|
|
+ servicetype:''
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
@@ -89,7 +99,7 @@ export default {
|
|
|
} else {
|
|
|
this.where.startdate = ''
|
|
|
this.where.enddate = ''
|
|
|
- }
|
|
|
+ }
|
|
|
this.$refs.list.param.content.where = this.where
|
|
|
this.$refs.list.listData()
|
|
|
}
|
|
|
@@ -98,4 +108,4 @@ export default {
|
|
|
|
|
|
</script>
|
|
|
<style>
|
|
|
-</style>
|
|
|
+</style>
|