Commit 63d55fe6 by qinjianhui

fix: 样式修改

parent b50250e2
......@@ -798,10 +798,7 @@
</template>
<template #operate="{ row }">
<div class="operate-box">
<span
class="operate-item"
style="display: flex; flex-direction: column"
>
<span class="operate-item">
<ElButton
link
type="primary"
......@@ -809,30 +806,34 @@
>
操作日志
</ElButton>
<ElButton
v-if="!row.expressSheet && row.status === 'TO_BE_CONFIRMED'"
link
type="primary"
@click="confirm(row)"
>
</span>
<span
v-if="!row.expressSheet && row.status === 'TO_BE_CONFIRMED'"
class="operate-item"
>
<ElButton link type="primary" @click="confirm(row)">
确认
</ElButton>
<ElButton
v-if="
row.shipmentType === 1 &&
['CREATE_LOGISTICS', 'WAIT_SHIPMENT'].includes(status)
"
link
type="primary"
@click="handleUpdateAddress(row)"
>
</span>
<span
v-if="
row.shipmentType === 1 &&
['CREATE_LOGISTICS', 'WAIT_SHIPMENT'].includes(status)
"
class="operate-item"
>
<ElButton link type="primary" @click="handleUpdateAddress(row)">
修改地址
</ElButton>
</span>
<span
v-if="
row.shipmentType === 0 &&
['CREATE_LOGISTICS', 'WAIT_SHIPMENT'].includes(status)
"
class="operate-item"
>
<ElButton
v-if="
row.shipmentType === 0 &&
['CREATE_LOGISTICS', 'WAIT_SHIPMENT'].includes(status)
"
link
type="primary"
@click="handleRefreshAddress(row)"
......@@ -2959,11 +2960,10 @@ const handleExceptionCommand = (command: number) => {
}
}
.operate-item {
.el-button {
margin-left: 0 !important;
margin-top: 20px !important;
}
.operate-box {
display: flex;
flex-direction: column;
gap: 10px;
}
</style>
<style>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment