| | |
| | | <el-form-item label="提交日期" prop="createDate"> |
| | | <el-date-picker |
| | | v-model="searchForm.createDate" |
| | | @change="search" |
| | | @change="changeTime" |
| | | type="daterange" |
| | | range-separator="至" |
| | | value-format="yyyy-MM-dd" |
| | |
| | | this.loadSelectList() |
| | | }, |
| | | methods: { |
| | | reset() { |
| | | this.searchForm.createTimeS = '' |
| | | this.searchForm.createTimeE = '' |
| | | this.$refs.searchForm.resetFields() |
| | | this.search() |
| | | }, |
| | | godetail (row) { |
| | | if (row.solutionType == 1) { |
| | | this.$refs.OperaWtbApplyShopWindow.open('委托投保详情', { id: row.id }) |
| | |
| | | solutionAll({ dataType: 2 }).then(res => { |
| | | this.solutionList = res |
| | | }) |
| | | }, |
| | | changeTime (e) { |
| | | this.searchForm.createTimeS = e[0] |
| | | this.searchForm.createTimeE = e[1] |
| | | this.search() |
| | | } |
| | | } |
| | | } |