From af6c84978914f851d0b031fade396cc3801b5250 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E6=B3=BD=E8=85=BE?= <1178634255@qq.com> Date: Wed, 26 Jul 2023 09:24:59 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E7=9B=98=E7=82=B9=E5=8D=95?= =?UTF-8?q?=E7=95=8C=E9=9D=A2=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inventory/InvCountOrderNew.vue | 63 +++++++++++++----------- 1 file changed, 35 insertions(+), 28 deletions(-) diff --git a/src/views/inventory/InvCountOrderNew.vue b/src/views/inventory/InvCountOrderNew.vue index 0fe973d0..69b171b1 100644 --- a/src/views/inventory/InvCountOrderNew.vue +++ b/src/views/inventory/InvCountOrderNew.vue @@ -62,34 +62,41 @@ </el-table-column> <el-table-column label="操作"> <template slot-scope="scope"> - <el-button - type="text" - size="small" - @click.native.stop="printOrder(scope.row)" - >打印 - </el-button - > - <el-button - type="text" - size="small" - @click.native.stop="editOrder(scope.row)" - >编辑 - </el-button - > - <el-button - type="text" - size="small" - @click.native.stop="submitAudit(scope.row)" - >提交审核 - </el-button - > - <el-button - type="text" - size="small" - @click.native.stop="deleteDialog(scope.row.id)" - >删除 - </el-button - > + <el-row> + <el-button + type="text" + size="small" + @click.native.stop="printOrder(scope.row)" + >打印 + </el-button + > + </el-row> + <el-row> + <el-button + type="text" + size="small" + @click.native.stop="editOrder(scope.row)" + >编辑 + </el-button + > + </el-row> + <el-row> + <el-button + type="text" + size="small" + @click.native.stop="submitAudit(scope.row)" + >提交审核 + </el-button + > + </el-row> + <el-row> + <el-button + type="text" + size="small" + @click.native.stop="deleteDialog(scope.row.id)" + >删除 + </el-button> + </el-row> </template> </el-table-column> </el-table>