mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-17 06:46:46 +08:00
fix:面授课开课复制问题
This commit is contained in:
@@ -347,7 +347,7 @@
|
|||||||
</a-button> -->
|
</a-button> -->
|
||||||
<a-button
|
<a-button
|
||||||
v-if="
|
v-if="
|
||||||
(record.auditStatus === 3)
|
(record.publishStatus === 1)
|
||||||
"
|
"
|
||||||
@click="() => handleStart(record, String(record.courseform))"
|
@click="() => handleStart(record, String(record.courseform))"
|
||||||
type="link"
|
type="link"
|
||||||
@@ -831,15 +831,15 @@
|
|||||||
<a-dropdown v-if="checkPer(permissions,createId)">
|
<a-dropdown v-if="checkPer(permissions,createId)">
|
||||||
<template #overlay>
|
<template #overlay>
|
||||||
<a-menu style="margin-left: 20px">
|
<a-menu style="margin-left: 20px">
|
||||||
<!-- <a-menu-item-->
|
<a-menu-item
|
||||||
<!-- @click="-->
|
@click="
|
||||||
<!-- () => {-->
|
() => {
|
||||||
<!-- handleCopyP(record);-->
|
handleCopyP(record);
|
||||||
<!-- }-->
|
}
|
||||||
<!-- "-->
|
"
|
||||||
<!-- >-->
|
>
|
||||||
<!-- 复制-->
|
复制
|
||||||
<!-- </a-menu-item>-->
|
</a-menu-item>
|
||||||
<a-menu-item
|
<a-menu-item
|
||||||
@click="
|
@click="
|
||||||
() => {
|
() => {
|
||||||
@@ -2295,11 +2295,11 @@ export default defineComponent({
|
|||||||
{
|
{
|
||||||
title: "是否发布",
|
title: "是否发布",
|
||||||
width: 100,
|
width: 100,
|
||||||
dataIndex: "auditStatus",
|
dataIndex: "publishStatus",
|
||||||
key: "7",
|
key: "7",
|
||||||
align: "center",
|
align: "center",
|
||||||
customRender: ({ record }) =>
|
customRender: ({ record }) =>
|
||||||
record.auditStatus === 3 ? "已发布" : "未发布",
|
record.publishStatus === 1 ? "已发布" : "未发布",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "创建人",
|
title: "创建人",
|
||||||
|
|||||||
Reference in New Issue
Block a user