fix(物料管理): 恢复操作列并移除编辑按钮
在入库和出库记录页面中恢复操作列的显示,但移除了编辑按钮,只保留删除功能
This commit is contained in:
@@ -92,15 +92,15 @@
|
||||
<el-table-column prop="batchNo" label="批次号" align="center" v-if="columns.showColumn('batchNo')" />
|
||||
<el-table-column prop="operator" label="操作员" align="center" v-if="columns.showColumn('operator')" />
|
||||
|
||||
<!-- <el-table-column label="操作" width="160">
|
||||
<el-table-column label="操作" width="160">
|
||||
<template #default="scope">
|
||||
<el-button
|
||||
<!-- <el-button
|
||||
type="success"
|
||||
size="small"
|
||||
icon="edit"
|
||||
title="编辑"
|
||||
v-hasPermi="['mmrecordinbound:edit']"
|
||||
@click="handleUpdate(scope.row)"></el-button>
|
||||
@click="handleUpdate(scope.row)"></el-button> -->
|
||||
<el-button
|
||||
type="danger"
|
||||
size="small"
|
||||
@@ -109,7 +109,7 @@
|
||||
v-hasPermi="['mmrecordinbound:delete']"
|
||||
@click="handleDelete(scope.row)"></el-button>
|
||||
</template>
|
||||
</el-table-column> -->
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<pagination :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" @pagination="getList" />
|
||||
|
||||
|
||||
@@ -89,15 +89,15 @@
|
||||
<el-table-column prop="orderNo" label="关联订单号" align="center" v-if="columns.showColumn('orderNo')" />
|
||||
<el-table-column prop="operator" label="操作员" align="center" v-if="columns.showColumn('operator')" />
|
||||
<el-table-column prop="remarks" label="备注" align="center" v-if="columns.showColumn('remarks')" />
|
||||
<!-- <el-table-column label="操作" width="160">
|
||||
<el-table-column label="操作" width="160">
|
||||
<template #default="scope">
|
||||
<el-button
|
||||
<!-- <el-button
|
||||
type="success"
|
||||
size="small"
|
||||
icon="edit"
|
||||
title="编辑"
|
||||
v-hasPermi="['mmrecordoutbound:edit']"
|
||||
@click="handleUpdate(scope.row)"></el-button>
|
||||
@click="handleUpdate(scope.row)"></el-button> -->
|
||||
<el-button
|
||||
type="danger"
|
||||
size="small"
|
||||
@@ -106,7 +106,7 @@
|
||||
v-hasPermi="['mmrecordoutbound:delete']"
|
||||
@click="handleDelete(scope.row)"></el-button>
|
||||
</template>
|
||||
</el-table-column> -->
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<pagination :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" @pagination="getList" />
|
||||
|
||||
|
||||
Reference in New Issue
Block a user