讲师管理bug

This commit is contained in:
zhangsir
2024-12-23 10:47:55 +08:00
parent ed2cbf426c
commit 4ab81b307f
2 changed files with 10 additions and 1 deletions

View File

@@ -4089,6 +4089,7 @@ function onFocusEnd(){
state.addLoading = false;
})
.catch((err) => {
handleSearchTable();
message.destroy()
message.error(err.data.msg)
state.addLoading = false;

View File

@@ -155,7 +155,15 @@
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="初始授课时长" name="defaultTeachingTime">
<a-form-item name="defaultTeachingTime">
<template v-slot:label>
<img
style="margin-right:4px;width: 7px;height: 7px"
src="@/assets/images/coursewareManage/asterisk.png"
alt=""
/>
初始授课时长
</template>
<a-input v-model:value="formParam.defaultTeachingTime" style="width:100%; height: 40px; border-radius: 8px ; "
placeholder="0" allowClear showSearch suffix="分钟" @blur="clearNonNumber" @focus="focusTeaching">
</a-input>