fix:交接记录按钮权限

This commit is contained in:
shijing 2024-08-01 17:02:39 +08:00
parent fa0cfddc3c
commit df7ae9e7cd
1 changed files with 4 additions and 4 deletions

View File

@ -13,14 +13,14 @@
type="primary" type="primary"
icon="el-icon-plus" icon="el-icon-plus"
@click="table_add(10)" @click="table_add(10)"
v-auth="'mllog.create'" v-auth="'handover.create'"
>新增</el-button >新增</el-button
> >
<el-button <el-button
type="primary" type="primary"
icon="el-icon-plus" icon="el-icon-plus"
@click="table_add(20)" @click="table_add(20)"
v-auth="'mlog.submit'" v-auth="'handover.create'"
>返工</el-button >返工</el-button
> >
</div> </div>
@ -125,7 +125,7 @@
link link
size="small" size="small"
@click="table_edit(scope.row)" @click="table_edit(scope.row)"
v-auth="'mlog.update'" v-auth="'handover.update'"
type="primary" type="primary"
v-if=" v-if="
scope.row.send_mgroup == mgroupId && scope.row.send_mgroup == mgroupId &&
@ -145,7 +145,7 @@
<el-button <el-button
link link
size="small" size="small"
v-auth="'mlog.delete'" v-auth="'handover.delete'"
type="danger" type="danger"
>删除</el-button >删除</el-button
> >