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

修改通知去重复

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