任务清单-->日常任务包列表处理 下发任务 修改任务处理

This commit is contained in:
maojiacai
2025-09-07 20:35:37 +08:00
parent f2faa2d5fd
commit 042c48fa96
10 changed files with 2163 additions and 15952 deletions

View File

@ -24,6 +24,7 @@
<el-table-column
type="selection"
width="55"
:selectable="selectable"
v-if="getConfiger.showSelectType === 'checkBox'"
/>
<el-table-column
@ -45,7 +46,7 @@
width="60"
:align="getConfiger?.align"
/>
<el-table-column
v-for="(item, index) in tableColumn"
:align="getConfiger?.align"
@ -116,6 +117,10 @@ const props = defineProps({
fixed: {
type: String,
default: "right"
},
selectable: {
type: Function,
default: () => {}
}
});
// 可选的时候选择的数据
@ -208,9 +213,9 @@ function setDefaultChoose() {
});
}
</script>
<style lang = "scss">
.el-loading-mask{
background: rgba(0,0,0,0.3);
}
</style>
</style>