Admin
2022-10-24 7e40205d7f40dcfaad7f4c81bb13329983d3730b
src/views/system/personShiftManage/scheduleManage/schedule/index.vue
@@ -16,14 +16,13 @@
                        <el-col :span="12" class="mainCardBtn">
                            <el-button type="primary" :icon="Plus" size="default" @click="dialogAddRecord = true">新增</el-button>
                            <!--                  <el-button type="warning" :icon="Edit" size="default" plain>修改</el-button>-->
                            <el-button type="danger" :icon="Delete" size="default" plain @click="deleteBatchBtn">删除</el-button>
<!--                            <el-button type="danger" :icon="Delete" size="default" plain @click="deleteBatchBtn">删除</el-button>-->
                        </el-col>
                        <el-button type="primary" :icon="Refresh" size="default" @click="reLoadData()" />
                    </el-row>
                    <el-table ref="multipleTableRef" :data="tableData" style="width: 100%" height="calc(100% - 100px)" :header-cell-style="{ background: '#fafafa' }" @selection-change="handleSelectionChange">
                        <el-table-column type="selection" width="100" />
                        <el-table-column property="groupName" label="班组名称" />
                        <el-table-column property="groupMembers" label="班组人员" width="180" :show-overflow-tooltip="true" />
                        <el-table-column property="groupMembers" label="班组人员" :show-overflow-tooltip="true" />
                        <el-table-column property="groupInfo" label="描述" />
                        <el-table-column fixed="right" label="操作" align="center" width="250">
                            <template #default="scope">
@@ -391,11 +390,11 @@
        };
        // 批量删除
        const deleteBatchBtn = async () => {
            ElMessage({
                type: 'warning',
                message: '抱歉,本页面暂不支持批量删除'
            });
        // const deleteBatchBtn = async () => {
        //     ElMessage({
        //         type: 'warning',
        //         message: '抱歉,本页面暂不支持批量删除'
        //     });
            // if (state.deleteArr.length > 0) {
            //    state.deleteSetDialog = true
            // } else {
@@ -404,7 +403,7 @@
            //       message: '请先选择要删除的记录'
            //    });
            // }
        };
        // };
        // const conFirmDeleteBatch = async () => {
        //    let res = await teamManageApi().deletBatchRecord({ids: state.deleteArr});
@@ -482,7 +481,6 @@
            getListByPage,
            reLoadData,
            deleteRecord,
            deleteBatchBtn,
            handleSizeChange,
            handleCurrentChange,
            confirmAddRecord,