Showing
1 changed file
with
6 additions
and
3 deletions
| ... | @@ -32,7 +32,7 @@ | ... | @@ -32,7 +32,7 @@ |
| 32 | </el-col> | 32 | </el-col> |
| 33 | <el-col :span="6"> | 33 | <el-col :span="6"> |
| 34 | <el-form-item label="服务类型"> | 34 | <el-form-item label="服务类型"> |
| 35 | - <el-select class="formItem" v-model="formData.serviceTypeArray" filterable multiple clearable | 35 | + <el-select class="formItem" v-model="formData.serviceTypeArray" filterable clearable |
| 36 | placeholder="不限"> | 36 | placeholder="不限"> |
| 37 | <el-option v-for="item in selectData.serviceType" :label="item.chineseName" | 37 | <el-option v-for="item in selectData.serviceType" :label="item.chineseName" |
| 38 | :value="item.chineseName" :key="item.id"> | 38 | :value="item.chineseName" :key="item.id"> |
| ... | @@ -109,7 +109,6 @@ import { | ... | @@ -109,7 +109,6 @@ import { |
| 109 | findDmPreMdeCondition | 109 | findDmPreMdeCondition |
| 110 | } from "@/api/preMdeConfig"; | 110 | } from "@/api/preMdeConfig"; |
| 111 | import { downLoadXlsx } from "@/utils/zipdownload"; | 111 | import { downLoadXlsx } from "@/utils/zipdownload"; |
| 112 | -import { upCase } from "../../../utils/FedEx"; | ||
| 113 | 112 | ||
| 114 | export default { | 113 | export default { |
| 115 | name: 'PreMdeSelect', | 114 | name: 'PreMdeSelect', |
| ... | @@ -118,7 +117,7 @@ export default { | ... | @@ -118,7 +117,7 @@ export default { |
| 118 | formData: { | 117 | formData: { |
| 119 | regionArray: [], | 118 | regionArray: [], |
| 120 | areaArray: [], | 119 | areaArray: [], |
| 121 | - serviceTypeArray: [], | 120 | + serviceTypeArray: null, |
| 122 | page: 1, | 121 | page: 1, |
| 123 | size: 100, | 122 | size: 100, |
| 124 | }, | 123 | }, |
| ... | @@ -190,6 +189,10 @@ export default { | ... | @@ -190,6 +189,10 @@ export default { |
| 190 | downloadExcel() { | 189 | downloadExcel() { |
| 191 | this.downloading = true | 190 | this.downloading = true |
| 192 | let data = this.datainfo(this.formData) | 191 | let data = this.datainfo(this.formData) |
| 192 | + if (this.accsDate != null && this.accsDate.length > 0) { | ||
| 193 | + data.fltDateStart = this.accsDate[0] | ||
| 194 | + data.fltDateEnd = this.accsDate[1] | ||
| 195 | + } | ||
| 193 | downLoadXlsx("/dmPreMde/excel", data, "Pre-MDE查询表") | 196 | downLoadXlsx("/dmPreMde/excel", data, "Pre-MDE查询表") |
| 194 | .then(() => { | 197 | .then(() => { |
| 195 | this.downloading = false | 198 | this.downloading = false | ... | ... |
-
Please register or login to post a comment