mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-22 01:06:45 +08:00
feat:合并
This commit is contained in:
@@ -522,7 +522,14 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { reactive, toRefs, onMounted, onUnmounted, onUpdated } from "vue";
|
||||
import {
|
||||
reactive,
|
||||
toRefs,
|
||||
onMounted,
|
||||
onUnmounted,
|
||||
onUpdated,
|
||||
watch,
|
||||
} from "vue";
|
||||
import AddOnline from "../../components/drawers/AddOnline.vue";
|
||||
import EditOnline from "../../components/drawers/EditOnline.vue";
|
||||
import AddFaceteach from "../../components/drawers/AddFaceteach.vue";
|
||||
@@ -867,6 +874,7 @@ export default {
|
||||
deleteActivityID: null, //删除活动id
|
||||
deleteID: "", //删除任务的taskID
|
||||
});
|
||||
|
||||
const selectProjectName = (value, index) => {
|
||||
console.log("value", value, index);
|
||||
};
|
||||
@@ -1065,6 +1073,16 @@ export default {
|
||||
console.log("获取任务列表失败", err);
|
||||
});
|
||||
};
|
||||
|
||||
watch(
|
||||
state.tableData,
|
||||
() => {
|
||||
getTask();
|
||||
},
|
||||
{
|
||||
deep: true,
|
||||
}
|
||||
);
|
||||
//删除直播
|
||||
const deleteLiveBroadcast = () => {
|
||||
let obj = {
|
||||
@@ -1394,6 +1412,7 @@ export default {
|
||||
//关闭确认框
|
||||
state.deleteModal = false;
|
||||
deleteTask();
|
||||
message.success("删除成功");
|
||||
};
|
||||
const closeModal = () => {
|
||||
state.stage = false;
|
||||
|
||||
Reference in New Issue
Block a user