修改问题

This commit is contained in:
sunhonglai
2025-05-07 14:20:04 +08:00
parent 78eadc5a46
commit 374a2c8776
3 changed files with 4 additions and 3 deletions

View File

@@ -12,7 +12,7 @@
:disabled="disabled"
v-model:value="selectData"
style="width: 100%"
placeholder="placeholder"
:placeholder="placeholder"
:options="isOpen?options:selectOptions"
:filter-option="false"
showSearch

View File

@@ -90,7 +90,7 @@
</template>
<template v-if="column.key === 'operation'">
<a-space>
<a-button v-if="record.certStatus === 1" type="link" @click="() => handleLook(record, String(record.courseform))">查看</a-button>
<a-button v-if="record.certStatus == '1'" type="link" @click="() => handleLook(record, String(record.courseform))">查看</a-button>
<a-button
v-if="(record.isPermission === 'true' || record.isSuperPermission === 'true') && checkMenu('lecturerEdit')"

View File

@@ -520,6 +520,7 @@ import * as lecturer from "../../api/Lecturer.js";
import lockLecturer from "@/components/project/lockLecturer";
import AddApprover from "@/components/project/AddApprover";
import { checkMenu } from "@/utils/utils";
import {getParentAapprovallist} from "@/api/lecturerFeeManagement";
export default {
name: "organizationList",
components: {
@@ -1205,7 +1206,7 @@ export default {
moduleType: 0,
isParent: 0
}
queryTrainOrgPor(obj).then((res) => {
getParentAapprovallist(obj).then((res) => {
state.orgList = res.data.data?.map(item => {
return {
label: item.affiliationName,