update: 敏感词模块提交TODO 内容

This commit is contained in:
syd
2023-03-24 23:23:14 +08:00
parent 2a3fe7d2bc
commit 21cce9812d
6 changed files with 126 additions and 17 deletions

View File

@ -69,10 +69,11 @@ const formRules = reactive({
tags: [{ required: true, message: '标签不能为空', trigger: 'blur' }]
})
const formRef = ref() // 表单 Ref
const tags = ref([]) // todo @blue-syd在 openModal 里加载下
const tags: Ref<string[]> = ref([]) // todo @blue-syd在 openModal 里加载下
/** 打开弹窗 */
const openModal = async (type: string, id?: number) => {
const openModal = async (type: string, paramTags: string[], id?: number) => {
tags.value = paramTags
modelVisible.value = true
modelTitle.value = t('action.' + type)
formType.value = type