MVP
This commit is contained in:
27
tmp_chunk_before.txt
Normal file
27
tmp_chunk_before.txt
Normal 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>
|
||||
Reference in New Issue
Block a user