|
@@ -537,8 +537,8 @@
|
|
|
<el-table :data="formData.data.contractWaitShipmentList" @selection-change="handleSelectionChange" ref="tableDom"
|
|
|
style="margin: 15px 0">
|
|
|
<el-table-column type="selection" width="55" />
|
|
|
- <el-table-column prop="productCode" label="商品编号" />
|
|
|
- <el-table-column prop="productName" label="商品名称" />
|
|
|
+ <el-table-column prop="productCode" label="商品编号" width="90" />
|
|
|
+ <el-table-column prop="productName" label="商品名称" min-width="250" />
|
|
|
<el-table-column label="出货数量" width="160">
|
|
|
<template #default="{ row, $index }">
|
|
|
<div style="width: 100%">
|
|
@@ -560,13 +560,16 @@
|
|
|
<el-col :span="14">
|
|
|
<div style="padding: 10px; margin-top: 77px">
|
|
|
<el-table :data="formData.data.contractShipmentList" :span-method="objectSpanMethod">
|
|
|
- <el-table-column prop="shipmentTime" label="出货日期" width="155">
|
|
|
+ <el-table-column prop="shipmentTime" label="出货日期" width="100">
|
|
|
+ <template #default="{ row, $index }">
|
|
|
+ <div>{{row.shipmentTime.slice(0,10)}}</div>
|
|
|
+ </template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="productCode" label="商品编码" />
|
|
|
- <el-table-column prop="productName" label="商品名称" />
|
|
|
- <el-table-column prop="quantity" label="出货数量" width="160">
|
|
|
+ <el-table-column prop="productCode" label="商品编码" width="90" />
|
|
|
+ <el-table-column prop="productName" label="商品名称" min-width="250" />
|
|
|
+ <el-table-column prop="quantity" label="出货数量" width="90">
|
|
|
</el-table-column>
|
|
|
- <el-table-column align="center" label="操作" width="80" fixed="right">
|
|
|
+ <el-table-column align="center" label="操作" width="60" fixed="right">
|
|
|
<template #default="{ row, $index }">
|
|
|
<el-button type="primary" link @click="clickDelete($index)">删除</el-button>
|
|
|
</template>
|