Commit 4e33ccc89d361f880a3fb13d8e6257f5077549f8
1 parent
e27a863e
操作按钮高亮
Showing
2 changed files
with
2 additions
and
2 deletions
ant-design-vue-jeecg/src/views/system/receipt/ReceiptContainerHeaderList.vue
... | ... | @@ -119,7 +119,7 @@ |
119 | 119 | <a-popconfirm v-if="record.status == 0" v-has="'receiptContainerHeader:delete'" title="确定取消配盘吗?" @confirm="() => handleDelete(record.id)"> |
120 | 120 | <a><a-button type="danger">取消配盘</a-button> <a-divider type="vertical"/></a> |
121 | 121 | </a-popconfirm> |
122 | - <a v-has="'receiptContainerHeader:edit'" @click="handleEdit(record)">编辑</a> | |
122 | + <a v-has="'receiptContainerHeader:edit'" @click="handleEdit(record)"><a-button type="default">编辑</a-button></a> | |
123 | 123 | </span> |
124 | 124 | </a-table> |
125 | 125 | </div> |
... | ... |
ant-design-vue-jeecg/src/views/system/shipment/ShipmentContainerHeaderList.vue
... | ... | @@ -130,7 +130,7 @@ |
130 | 130 | <a-popconfirm v-if="record.status == 0" v-has="'shipmentContainerHeader:delete'" title="确定取消配盘吗?" @confirm="() => handleDelete(record.id)"> |
131 | 131 | <a><a-divider type="vertical"/><a-button type="danger">取消配盘</a-button> </a> |
132 | 132 | </a-popconfirm> |
133 | - <a v-has="'receiptContainerHeader:edit'" @click="handleEdit(record)"><a-divider type="vertical"/>编辑</a> | |
133 | + <a v-has="'receiptContainerHeader:edit'" @click="handleEdit(record)"><a-divider type="vertical"/><a-button type="default">编辑</a-button></a> | |
134 | 134 | </span> |
135 | 135 | </a-table> |
136 | 136 | </div> |
... | ... |