Commit 4c7a5382 by LJM

css

parent 3f1de699
Showing with 4 additions and 4 deletions
......@@ -68,7 +68,7 @@
</div>
<!--列表区-->
<div class="data-box">
<el-table :data="tableData" border max-height="600" @selection-change="handleSelectionChange" @row-click="rowClick" highlight-current-row>
<el-table key="listTable" :data="tableData" border max-height="600" @selection-change="handleSelectionChange" @row-click="rowClick" highlight-current-row>
<el-table-column type="selection" width="40" align="center" fixed></el-table-column>
<el-table-column prop="inquiry_sn" label="询价单号" width="160" :show-overflow-tooltip="true" align="center">
<template slot-scope="scope">
......@@ -151,7 +151,7 @@
</div>
<!--当前报价-->
<template v-if="tabIndex == 0">
<el-table :data="currentQuotoDataList" border max-height="500" highlight-current-row>
<el-table key="currentQuotoDataList" :data="currentQuotoDataList" border max-height="500" highlight-current-row>
<el-table-column label="操作" width="66" align="center">
<template slot-scope="scope">
<!--待确认-->
......@@ -227,7 +227,7 @@
</template>
<!--匹配库存-->
<template v-else-if="tabIndex == 1">
<el-table :data="matchingskuDataList" border max-height="500" highlight-current-row>
<el-table key="matchingskuDataList" :data="matchingskuDataList" border max-height="500" highlight-current-row>
<el-table-column label="操作" width="60" align="center">
<template slot-scope="scope">
<!--待报价和已报价才可以新增报价-->
......@@ -281,7 +281,7 @@
</template>
<!--历史报价-->
<template v-else-if="tabIndex == 2">
<el-table :data="historyDataList" border max-height="500" highlight-current-row>
<el-table key="historyDataList" :data="historyDataList" border max-height="500" highlight-current-row>
<el-table-column label="操作" width="60" align="center">
<template slot-scope="scope">
<!--待报价和已报价才可以新增报价-->
......
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