mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-15 13:56:45 +08:00
合并zcwy-dev
This commit is contained in:
@@ -2211,7 +2211,16 @@ export default defineComponent({
|
||||
return text ? text : "-";
|
||||
},
|
||||
},
|
||||
|
||||
{
|
||||
title: "关键字",
|
||||
dataIndex: "tips",
|
||||
key: "tips",
|
||||
align: "left",
|
||||
customCell :() => {return {style: {maxWidth: '200px',overflow: 'hidden',whiteSpace: 'nowrap',textOverflow:'ellipsis',cursor:'pointer'}}},
|
||||
customRender: ({ text }) => {
|
||||
return <a-tooltip placement="topLeft" title = {text} >{text ? text : "-"}</a-tooltip>
|
||||
},
|
||||
},
|
||||
{
|
||||
title: "内容分类",
|
||||
width: 130,
|
||||
@@ -3754,6 +3763,9 @@ export default defineComponent({
|
||||
|
||||
//编辑开课
|
||||
const handelEditStu = async (item) => {
|
||||
if (item.expenseStatus) {
|
||||
return message.warning("该开课在审批中,不可进行编辑!");
|
||||
}
|
||||
state.offcourseId = item.offcourseId;
|
||||
state.itemType = item.type;
|
||||
state.offcoursePlanId = item.id;
|
||||
@@ -4256,6 +4268,9 @@ export default defineComponent({
|
||||
delete_exit1();
|
||||
};
|
||||
const handleDeleteKaike = (value) => {
|
||||
if (value.expenseStatus) {
|
||||
return message.warning("该开课在审批中,不可进行删除!");
|
||||
}
|
||||
state.offcoursePlanId = value.id;
|
||||
|
||||
state.delete_hs = true;
|
||||
|
||||
Reference in New Issue
Block a user