|
@@ -40,7 +40,7 @@
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<template #action="{ row }">
|
|
<template #action="{ row }">
|
|
|
- <div>
|
|
|
|
|
|
|
+ <div class="action-btns">
|
|
|
<el-button type="success" link v-permission="usePermission('detail')"
|
|
<el-button type="success" link v-permission="usePermission('detail')"
|
|
|
@click="toOrderDetail(row)">
|
|
@click="toOrderDetail(row)">
|
|
|
[订单详情]
|
|
[订单详情]
|
|
@@ -213,11 +213,12 @@ const columns = ref([
|
|
|
{
|
|
{
|
|
|
columnKey: 'action',
|
|
columnKey: 'action',
|
|
|
label: '操作',
|
|
label: '操作',
|
|
|
- width: 180,
|
|
|
|
|
|
|
+ width: 176,
|
|
|
align: 'center',
|
|
align: 'center',
|
|
|
slot: 'action',
|
|
slot: 'action',
|
|
|
hideInPrint: true,
|
|
hideInPrint: true,
|
|
|
- hideInExport: true
|
|
|
|
|
|
|
+ hideInExport: true,
|
|
|
|
|
+ fixed: 'right'
|
|
|
}
|
|
}
|
|
|
]);
|
|
]);
|
|
|
|
|
|