fix: 提交后刷新列表

(cherry picked from commit b9477463fd)
pull/245/head
xingyu 2023-08-12 12:23:17 +08:00 committed by shizhong
parent 0fd07c0cbc
commit e1b27dec11
1 changed files with 2 additions and 1 deletions

View File

@ -96,7 +96,7 @@
>
<el-option v-for="item in spus" :key="item.id" :label="item.name" :value="item.id">
<span style="float: left">{{ item.name }}</span>
<span style="float: right; color: #8492a6; font-size: 13px">
<span style="float: right; font-size: 13px; color: #8492a6">
{{ (item.price / 100.0).toFixed(2) }}
</span>
</el-option>
@ -228,6 +228,7 @@ const submitForm = async () => {
dialogVisible.value = false
} finally {
formLoading.value = false
getList()
}
}