From ea2a29d5a8e4f6fc65b140214abe4b2c9c304d7c Mon Sep 17 00:00:00 2001
From: 罗广辉 <guanghui.luo@foxmail.com>
Date: Mon, 26 Jan 2026 14:58:17 +0800
Subject: [PATCH] feat: 按钮
---
applications/task-work-order/src/views/orderView/orderDataManage/dataObjection/index.vue | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/applications/task-work-order/src/views/orderView/orderDataManage/dataObjection/index.vue b/applications/task-work-order/src/views/orderView/orderDataManage/dataObjection/index.vue
index e32abdf..f7c01db 100644
--- a/applications/task-work-order/src/views/orderView/orderDataManage/dataObjection/index.vue
+++ b/applications/task-work-order/src/views/orderView/orderDataManage/dataObjection/index.vue
@@ -71,9 +71,9 @@
<el-table-column prop="reviewOpinion" show-overflow-tooltip label="审核意见" />
<el-table-column label="操作" class-name="operation-btns" width="180">
<template v-slot="{ row }">
- <el-link @click="openForm('view', row)">查看</el-link>
- <el-link @click="openForm('edit', row)" v-if="!['1', '2'].includes(row.objectionStatus)">编辑</el-link>
- <el-link @click="handleDelete(row)" v-if="!['1', '2'].includes(row.objectionStatus)">删除</el-link>
+ <el-link type="primary" @click="openForm('view', row)">查看</el-link>
+ <el-link type="primary" @click="openForm('edit', row)" v-if="!['1', '2'].includes(row.objectionStatus)">编辑</el-link>
+ <el-link type="primary" @click="handleDelete(row)" v-if="!['1', '2'].includes(row.objectionStatus)">删除</el-link>
</template>
</el-table-column>
</el-table>
--
Gitblit v1.9.3