【修改】试题审核增加两个页面

This commit is contained in:
YOHO\20373
2025-06-03 16:38:35 +08:00
committed by 陆光LG
parent 4c3a39456c
commit a6724e5f05
4 changed files with 1496 additions and 1 deletions

View File

@@ -301,6 +301,10 @@
<BdesignForm ref="bformRef" @success="getList" />
<FdesignForm ref="fformRef" @success="getList" />
<WpsWordForm ref="wformRef" @success="getList" />
<WpsPptxForm ref="pformRef" @success="getList" />
</template>
<script lang="ts" setup>
import { dateFormatter } from '@/utils/formatTime'
@@ -314,6 +318,8 @@ import CdesignForm from './CdesignForm.vue'
import MdesignForm from './MysqlForm.vue'
import BdesignForm from './BrowerForm.vue'
import FdesignForm from './FileForm.vue'
import WpsWordForm from './WpsWordForm.vue'
import WpsPptxForm from './WpsPptxForm.vue'
import UserImportForm from './UserImportForm.vue'
import UserAssignRoleForm from './UserAssignRoleForm.vue'
import {handleTree} from "@/utils/tree";
@@ -636,6 +642,7 @@ const mformRef = ref()
const bformRef = ref()
const fformRef = ref()
const wformRef = ref()
const pformRef = ref()
const openForm = (type: string, row: any) => {
console.log(row.subjectName+"subjectName");
if (row.subjectName == "") {
@@ -655,7 +662,9 @@ const openForm = (type: string, row: any) => {
fformRef.value.open(queryParams,type, row.quId)
} else if (row.subjectName.includes("文字")){
wformRef.value.open(queryParams,type, row.quId)
}
}else if (row.subjectName.includes("演示")){
pformRef.value.open(queryParams,type,row.id)
}
}
/** 用户导入 */