|
@ -299,17 +299,6 @@ const defaultForm = form({ |
|
|
checkDate: '' |
|
|
checkDate: '' |
|
|
}) |
|
|
}) |
|
|
|
|
|
|
|
|
// 自定义模板内容 |
|
|
|
|
|
const PrefixPlusText = { |
|
|
|
|
|
props: ['value', 'functions'], |
|
|
|
|
|
template: ` |
|
|
|
|
|
<el-tag v-if="functions(value) === '在用'" effect="dark"><span v-html="functions(value)"></span></el-tag> |
|
|
|
|
|
<el-tag v-else-if="functions(value) === '停用'" type="danger" effect="dark"><span v-html="functions(value)"></span></el-tag> |
|
|
|
|
|
<el-tag v-else-if="functions(value) === '待报废'" type="warning" effect="dark"><span v-html="functions(value)"></span></el-tag> |
|
|
|
|
|
<el-tag v-else type="info" effect="dark"><span v-html="functions(value)"></span></el-tag> |
|
|
|
|
|
` |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
export default { |
|
|
export default { |
|
|
name: 'InstrumentList', |
|
|
name: 'InstrumentList', |
|
|
components: { Pagination, Query, Crud, CustomTable, Edit, TreeSelect, Move }, |
|
|
components: { Pagination, Query, Crud, CustomTable, Edit, TreeSelect, Move }, |
|
@ -400,18 +389,17 @@ export default { |
|
|
instrumentId: 0, |
|
|
instrumentId: 0, |
|
|
moveDialogVisible: false, |
|
|
moveDialogVisible: false, |
|
|
ifMeasure: false |
|
|
ifMeasure: false |
|
|
// pickerOptions1: { |
|
|
/* pickerOptions1: { |
|
|
// //disabledDate是日期组件的一个方法 |
|
|
//disabledDate是日期组件的一个方法 |
|
|
// disabledDate: (time) => { |
|
|
disabledDate: (time) => { |
|
|
// //这里就涉及到日期的指定了 setMonth()函数可以设置月份 |
|
|
//这里就涉及到日期的指定了 setMonth()函数可以设置月份 |
|
|
// let currentTime = this.value1; |
|
|
let currentTime = this.value1; |
|
|
// let threeMonths = currentTime.setMonth(currentTime.getMonth()+3); |
|
|
let threeMonths = currentTime.setMonth(currentTime.getMonth()+3); |
|
|
// //一开始我没加下面减三个月的那个语句,他的值会一直累加 |
|
|
//一开始我没加下面减三个月的那个语句,他的值会一直累加 |
|
|
// currentTime.setMonth(currentTime.getMonth()-3) |
|
|
currentTime.setMonth(currentTime.getMonth()-3) |
|
|
// return time.getTime() < this.value1 || time.getTime() > threeMonths ; |
|
|
return time.getTime() < this.value1 || time.getTime() > threeMonths ; |
|
|
// } |
|
|
} |
|
|
// } |
|
|
}*/ |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
mounted() { |
|
|
mounted() { |
|
@ -505,7 +493,6 @@ export default { |
|
|
getDicDataListByTypeName({ typeCode: 'use_purpose' }).then(data => { this.usePurposeList = data }) |
|
|
getDicDataListByTypeName({ typeCode: 'use_purpose' }).then(data => { this.usePurposeList = data }) |
|
|
// 预警周期列表 |
|
|
// 预警周期列表 |
|
|
getDicDataListByTypeName({ typeCode: 'verification_cycle' }).then(data => { this.cycleList = data }) |
|
|
getDicDataListByTypeName({ typeCode: 'verification_cycle' }).then(data => { this.cycleList = data }) |
|
|
|
|
|
|
|
|
}, |
|
|
}, |
|
|
// 部门选择回调事件 |
|
|
// 部门选择回调事件 |
|
|
getDepartmentValue(value) { |
|
|
getDepartmentValue(value) { |
|
|