Commit 3a056314 by liangjianmin

refactor(orderTrack): adjust column widths in goods table for better layout

- Updated the width properties of several columns in the goods table to enhance visual consistency and layout.
- Ensured alignment and tooltip display remain intact for improved user experience.
parent eeabcb53
Showing with 4 additions and 4 deletions
......@@ -85,9 +85,9 @@
</template>
</el-table-column>
<el-table-column prop="company_name" label="订货公司" min-width="160" :show-overflow-tooltip="true" align="center"></el-table-column>
<el-table-column prop="currency_val" label="币种" min-width="60" align="center"></el-table-column>
<el-table-column prop="purchase_amount" label="订单金额" min-width="110" align="center"></el-table-column>
<el-table-column prop="status_val" label="订单状态" min-width="80" align="center">
<el-table-column prop="currency_val" label="币种" width="60" align="center"></el-table-column>
<el-table-column prop="purchase_amount" label="订单金额" width="110" align="center"></el-table-column>
<el-table-column prop="status_val" label="订单状态" width="80" align="center">
<template slot-scope="scope">
<el-tag type="primary" v-if="scope.row.status_val == '待提审'" disable-transitions>{{ scope.row.status_val }}</el-tag>
<el-tag type="info" v-else-if="scope.row.status_val == '待审核'" disable-transitions>{{ scope.row.status_val }}</el-tag>
......@@ -97,7 +97,7 @@
<el-tag type="primary" v-else>{{ scope.row.status_val }}</el-tag>
</template>
</el-table-column>
<el-table-column prop="pay_name" label="猎芯付款方式" min-width="80" align="center"></el-table-column>
<el-table-column prop="pay_name" label="猎芯付款方式" width="99" align="center"></el-table-column>
<el-table-column prop="pay_status_val" label="收款状态" min-width="85" align="center">
<template slot-scope="scope">
<el-tag type="primary" v-if="scope.row.pay_status_val == '待付款'" disable-transitions>{{ scope.row.pay_status_val }}</el-tag>
......
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 sign in to comment