-
-
-
-
重置
+
+
+
+
重置
-
-
-
-
-
已选择
-
2
-
项
-
列表选项总计:
-
9条
-
-
清空
+
+
+
+
+
+
已选择
+
2
+
项
+
列表选项总计:
+
9条
+
清空
-
-
+
+
+
+
+
+
+
-
-
-
-
李明
-
李大明
-
李二明
-
李明
-
李大明
-
李二明
-
+
+
+
+

+
+
搜索
+
+
+
+

+
+
重置
+
+
+
+
+
+
+
+
已选择
+
2
+
项
+
列表选项总计:
+
9条
+
+
清空
+
+
+
+
+
-
-
-
-
+
+
+
+
+
+
+
+ },
+ setup(props, ctx) {
+ const state = reactive({
+ pageSize: 10,
+ currentPage: 1,
+ tableDataTotal: 50,
+ organizeList: [
+ {
+ id: 1,
+ value: "京东方",
+ label: "京东方",
+ children: [
+ {
+ id: 2,
+ value: "产研部",
+ label: "产研部",
+ children: [
+ {
+ id: 4,
+ value: "产品部门",
+ label: "产品部门",
+ },
+ {
+ id: 5,
+ value: "研发部门",
+ label: "研发部门",
+ },
+ ],
+ },
+ {
+ id: 3,
+ value: "人力资源部",
+ label: "人力资源部",
+ children: [
+ {
+ id: 6,
+ value: "人事部",
+ label: "人事部",
+ },
+ {
+ id: 7,
+ value: "行政部",
+ label: "行政部",
+ },
+ ],
+ },
+ ],
+ },
+ ],
+ tabledata: [
+ {
+ key: 1,
+ name: "小李",
+ bum: "产研部",
+ gangw: "产品经理",
+ },
+ {
+ key: 2,
+ name: "小刘",
+ bum: "产研部",
+ gangw: "产品经理",
+ },
+ {
+ key: 3,
+ name: "小李",
+ bum: "产研部",
+ gangw: "产品经理",
+ },
+ {
+ key: 4,
+ name: "小李",
+ bum: "产研部",
+ gangw: "产品经理",
+ },
+ {
+ key: 5,
+ name: "小李",
+ bum: "产研部",
+ gangw: "产品经理",
+ },
+ {
+ key: 6,
+ name: "小李",
+ bum: "产研部",
+ gangw: "产品经理",
+ },
+ {
+ key: 7,
+ name: "小李",
+ bum: "产研部",
+ gangw: "产品经理",
+ },
+ {
+ key: 8,
+ name: "小李",
+ bum: "产研部",
+ gangw: "产品经理",
+ },
+ {
+ key: 9,
+ name: "小李",
+ bum: "产研部",
+ gangw: "产品经理",
+ },
+ ],
+ tablecolumns: [
+ {
+ title: "姓名",
+ dataIndex: "name",
+ key: "name",
+ width: 30,
+ align: "left",
+ className: "h",
+ },
+ {
+ title: "部门",
+ dataIndex: "bum",
+ key: "bum",
+ width: 40,
+ align: "center",
+ className: "h",
+ },
+ {
+ title: "岗位",
+ dataIndex: "gangw",
+ key: "gangw",
+ width: 40,
+ align: "center",
+ className: "h",
+ },
+ ],
+ tabledata1: [
+ {
+ key: 1,
+ name: "学习受众",
+ time: "2022-10-31 23:12:00",
+ total: "1",
+ state: "已发布",
+ type: "普通受众",
+ },
+ {
+ key: 2,
+ name: "2",
+ time: "2022-10-31 23:12:00",
+ total: "2",
+ state: "已发布",
+ type: "普通受众",
+ },
+ {
+ key: 3,
+ name: "mask",
+ time: "2022-10-31 23:12:00",
+ total: "1",
+ state: "已发布",
+ type: "普通受众",
+ },
+ {
+ key: 4,
+ name: "学习受众",
+ time: "2022-10-31 23:12:00",
+ total: "1",
+ state: "已发布",
+ type: "普通受众",
+ },
+ {
+ key: 5,
+ name: "学业受众",
+ time: "2022-10-31 23:12:00",
+ total: "2",
+ state: "已发布",
+ type: "普通受众",
+ },
+ {
+ key: 6,
+ name: "案例受众",
+ time: "2022-10-31 23:12:00",
+ total: "3",
+ state: "已发布",
+ type: "普通受众",
+ },
+ ],
+ tablecolumns1: [
+ {
+ title: "受众名称",
+ dataIndex: "name",
+ key: "name",
+ width: 30,
+ align: "left",
+ className: "h",
+ },
+ {
+ title: "创建时间",
+ dataIndex: "time",
+ key: "time",
+ width: 40,
+ align: "center",
+ className: "h",
+ },
+ {
+ title: "人数",
+ dataIndex: "total",
+ key: "total",
+ width: 20,
+ align: "center",
+ className: "h",
+ },
+ {
+ title: "状态",
+ dataIndex: "state",
+ key: "state",
+ width: 20,
+ align: "center",
+ className: "h",
+ },
+ {
+ title: "类型",
+ dataIndex: "type",
+ key: "type",
+ width: 30,
+ align: "center",
+ className: "h",
+ },
+ ],
+ });
+ const closeDrawer = () => {
+ ctx.emit("update:ownpowervisible", false);
+ };
+
+ const afterVisibleChange = (bool) => {
+ console.log("state", bool);
+ };
+
+ return {
+ ...toRefs(state),
+ afterVisibleChange,
+ closeDrawer,
+ // change,
+ };
+ },
+};
+
\ No newline at end of file
+}
+
\ No newline at end of file
diff --git a/src/components/drawers/Ownership.vue b/src/components/drawers/Ownership.vue
index 6fe9cc3f..f0267f44 100644
--- a/src/components/drawers/Ownership.vue
+++ b/src/components/drawers/Ownership.vue
@@ -765,6 +765,7 @@ export default {
background-image: url(../../assets/images/basicinfo/ch.png);
right: -8px;
top: -8px;
+ cursor: pointer;
}
}
}
diff --git a/src/views/courselibrary/CoursewareManage.vue b/src/views/courselibrary/CoursewareManage.vue
index 748a3862..4bddd2c2 100644
--- a/src/views/courselibrary/CoursewareManage.vue
+++ b/src/views/courselibrary/CoursewareManage.vue
@@ -79,9 +79,11 @@