Commit 117c02f9 authored by 赵啸非's avatar 赵啸非

修改通知去重复

parent d72781c8
......@@ -9,11 +9,16 @@
*/
const formatter = (tableData, column, val) => {
const key = column.property;
val = val ? val : "--";
if (tableData.dict && tableData.dict[key]) {
const dict = tableData.dict[key];
return dict[val] || val;
if(val){
val="--"
}else{
if (tableData.dict && tableData.dict[key]) {
const dict = tableData.dict[key];
return dict[val] || val;
}
}
return val;
};
......
......@@ -19,7 +19,7 @@
:key="form.meetTimeStart"
:picker-options="{
start: '09:00',
step: '00:15',
step: '00:10',
end: '20:00'
}">
</el-time-select>
......@@ -34,7 +34,7 @@
:key="form.meetTimeEnd"
:picker-options="{
start: '09:00',
step: '00:15',
step: '00:10',
end: '20:00',
minTime:form.meetTimeStart
}">
......
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