This commit is contained in:
XingCheng3
2026-05-22 12:58:17 +08:00
commit 44213fa186
175 changed files with 30303 additions and 0 deletions

27
tmp_chunk_before.txt Normal file
View File

@@ -0,0 +1,27 @@
{{ scope.row.结束工作时间 }}
</template>
</el-table-column>
<el-table-column label="班次代码" align="center">
<template slot-scope="scope">
{{ scope.row.班次代码 }}
</template>
</el-table-column>
<el-table-column label="是否工作" align="center">
<template slot-scope="scope">
{{ scope.row.是否工作 }}
</template>
</el-table-column>
<el-table-column label="操作" width="200" align="center">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
plain
icon="el-icon-edit"
@click="editShiftTable(scope.row)">编辑</el-button>
<el-button
size="mini"
type="text"
plain
icon="el-icon-delete"
@click="handleDelete(scope.row)">删除</el-button>