Commit c104cfba authored by 高滢's avatar 高滢

bug

parent c941a5d3
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
<el-option <el-option
v-for="(item,index) in checkList" v-for="(item,index) in checkList"
:key="index" :key="index"
:label="item.dictName" :label="item.name"
:value="item.id" :value="item.id"
/> />
</el-select> </el-select>
...@@ -286,6 +286,7 @@ export default { ...@@ -286,6 +286,7 @@ export default {
// 检查项目下拉框 // 检查项目下拉框
getCheckList() { getCheckList() {
selectCheckItem().then(res => { selectCheckItem().then(res => {
console.log('检查项目', res)
this.checkList = res this.checkList = res
}) })
}, },
...@@ -332,7 +333,7 @@ export default { ...@@ -332,7 +333,7 @@ export default {
if (this.ids.length !== 0) { if (this.ids.length !== 0) {
const exportTable = {} const exportTable = {}
exportTable.useIds = this.ids exportTable.useIds = this.ids
this.download('business/check/exportUse', exportTable, `使用管理_${this.exportFormatTime(new Date())}.xlsx`).then(res => { this.download('business/check/exportUse', exportTable, `使用管理-${this.exportFormatTime(new Date())}.xlsx`).then(res => {
this.$refs.table.clearSelection() this.$refs.table.clearSelection()
}) })
} else { } else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment