|
@@ -352,6 +352,22 @@
|
|
|
>
|
|
|
<el-table-column type="selection" width="60" fixed align="center" />
|
|
|
<el-table-column type="index" label="行号" fixed align="center" />
|
|
|
+ <el-table-column
|
|
|
+ label="提单号"
|
|
|
+ width="180"
|
|
|
+ align="center"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ sortable
|
|
|
+ fixed="left"
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-link :underline="false" type="primary"
|
|
|
+ ><div @click="handleUpdate(scope.row)">
|
|
|
+ {{ scope.row.fMblno }}
|
|
|
+ </div></el-link
|
|
|
+ >
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column
|
|
|
v-for="(item, index) in getRowList"
|
|
|
:key="index"
|
|
@@ -3680,13 +3696,6 @@ export default {
|
|
|
width: 100,
|
|
|
},
|
|
|
{
|
|
|
- surface: "5",
|
|
|
- label: "fMblno",
|
|
|
- name: "提单号",
|
|
|
- checked: 0,
|
|
|
- width: 100,
|
|
|
- },
|
|
|
- {
|
|
|
surface: "6",
|
|
|
label: "fProductName",
|
|
|
name: "品名",
|
|
@@ -3815,13 +3824,6 @@ export default {
|
|
|
width: 100,
|
|
|
},
|
|
|
{
|
|
|
- surface: "5",
|
|
|
- label: "fMblno",
|
|
|
- name: "提单号",
|
|
|
- checked: 0,
|
|
|
- width: 100,
|
|
|
- },
|
|
|
- {
|
|
|
surface: "6",
|
|
|
label: "fProductName",
|
|
|
name: "品名",
|