|
@@ -223,6 +223,17 @@
|
|
|
/>
|
|
|
</template>
|
|
|
</pl-table-column>
|
|
|
+
|
|
|
+ <pl-table-column prop="orgPrice" label="原供价" align="right" min-width="150">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ scope.row.orgPrice }}
|
|
|
+ </template>
|
|
|
+ </pl-table-column>
|
|
|
+ <pl-table-column prop="priceType" label="价格类型" align="left" min-width="150">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ scope.row.priceType }}
|
|
|
+ </template>
|
|
|
+ </pl-table-column>
|
|
|
<pl-table-column prop="price" label="单价" align="right" show-overflow-tooltip min-width="150">
|
|
|
<template slot-scope="scope">
|
|
|
<template v-if="scope.row.fang">
|
|
@@ -240,7 +251,7 @@
|
|
|
/>
|
|
|
</template>
|
|
|
</pl-table-column>
|
|
|
- <pl-table-column label="返利钱包" align="left" show-overflow-tooltip min-width="150">
|
|
|
+ <pl-table-column label="返利钱包" align="left" show-overflow-tooltip min-width="200">
|
|
|
<template slot-scope="scope">
|
|
|
<template v-if="scope.row.fang">
|
|
|
<template v-for="(item, index) in scope.row.walletRelaList">
|
|
@@ -266,7 +277,7 @@
|
|
|
</el-select>
|
|
|
</template>
|
|
|
</pl-table-column>
|
|
|
- <pl-table-column label="现金钱包" align="left" show-overflow-tooltip min-width="150">
|
|
|
+ <pl-table-column label="现金钱包" align="left" show-overflow-tooltip min-width="200">
|
|
|
<template slot-scope="scope">
|
|
|
<template v-if="scope.row.fang">
|
|
|
<template v-for="(item, index) in scope.row.walletRelaList">
|