Commit 60f85845 authored by 黄奎's avatar 黄奎

页面修改

parent a7cf751b
This diff is collapsed.
...@@ -25,9 +25,14 @@ ...@@ -25,9 +25,14 @@
</div> </div>
</template> </template>
<template v-slot:body="props"> <template v-slot:body="props">
<q-tr> <q-tr :props="props">
<q-td>
<div>{{props.row.SupplierName}}</div> <template v-for="col in props.cols">
<q-td v-if="col.name == 'Name'">
{{col.value}}
</q-td>
<q-td v-else-if="col.name == 'SupplierName'">
<div>{{col.value}}</div>
<div> <div>
<a :href="props.row.SupplierContract" style="color:#2961FE;text-decoration:none;" <a :href="props.row.SupplierContract" style="color:#2961FE;text-decoration:none;"
v-if="props.row.SupplierContract" target="_blank"> v-if="props.row.SupplierContract" target="_blank">
...@@ -35,9 +40,8 @@ ...@@ -35,9 +40,8 @@
</a> </a>
</div> </div>
</q-td> </q-td>
<template v-slot:body-cell-PreferentialList="props"> <q-td v-if="col.name == 'PreferentialList'" style="padding-right:0px">
<q-td :props="props" style="padding-right:0px"> <div v-for="x in col.value">
<div v-for="x in props.value">
<div class="border-bottom" v-if="x.PriceDiscountType == 1"> <div class="border-bottom" v-if="x.PriceDiscountType == 1">
{{ x.BuyNum }}{{ x.SendNum }} {{ x.BuyNum }}{{ x.SendNum }}
</div> </div>
...@@ -58,9 +62,8 @@ ...@@ -58,9 +62,8 @@
<div class="remark-font">暂无优惠政策</div> <div class="remark-font">暂无优惠政策</div>
</div> </div>
</q-td> </q-td>
</template>
<template v-slot:body-cell-PreferentialListSellCommission="props"> <q-td v-else-if="col.name == 'PreferentialListSellCommission'" style="padding-right:0px;padding-left:0px">
<q-td :props="props" style="padding-right:0px;padding-left:0px">
<div v-for="x in props.value"> <div v-for="x in props.value">
<div class="border-bottom" style="padding-left: 16px;padding-right: 16px" <div class="border-bottom" style="padding-left: 16px;padding-right: 16px"
:class="{ 'text-red': x.SaleCommissionType == 1 }" v-if="x.PriceDiscountType != 0"> :class="{ 'text-red': x.SaleCommissionType == 1 }" v-if="x.PriceDiscountType != 0">
...@@ -76,12 +79,11 @@ ...@@ -76,12 +79,11 @@
<div class="remark-font">暂无佣金信息</div> <div class="remark-font">暂无佣金信息</div>
</div> </div>
</q-td> </q-td>
</template>
<template v-slot:body-cell-PreferentialListB2BCommission="props"> <q-td v-else-if="col.name == 'PreferentialListB2BCommission'" style="padding-left:0px">
<q-td :props="props" style="padding-left:0px">
<div v-for="x in props.value"> <div v-for="x in props.value">
<div class="border-bottom" style="padding-left: 16px" :class="{ 'text-red': x.B2BCommissionType == 1 }" <div class="border-bottom" style="padding-left: 16px"
v-if="x.PriceDiscountType != 0"> :class="{ 'text-red': x.B2BCommissionType == 1 }" v-if="x.PriceDiscountType != 0">
{{ x.B2BCommissionType == 1 ? "¥" : "" {{ x.B2BCommissionType == 1 ? "¥" : ""
}}{{ x.B2BCommissionMoney }}{{ x.B2BCommissionMoney
}}{{ x.B2BCommissionType == 0 ? "%" : "" }} }}{{ x.B2BCommissionType == 0 ? "%" : "" }}
...@@ -94,9 +96,7 @@ ...@@ -94,9 +96,7 @@
<div class="remark-font">暂无佣金信息</div> <div class="remark-font">暂无佣金信息</div>
</div> </div>
</q-td> </q-td>
</template> <q-td v-else-if="col.name == 'Id'">
<template v-slot:body-cell-Id="props">
<q-td :props="props">
<q-btn flat size="xs" icon="edit" color="accent" style="font-weight:400" label="编辑" <q-btn flat size="xs" icon="edit" color="accent" style="font-weight:400" label="编辑"
@click="EditStudy(props.row)" /> @click="EditStudy(props.row)" />
<q-btn flat size="xs" icon="edit" color="accent" style="font-weight:400" label="价格设置" <q-btn flat size="xs" icon="edit" color="accent" style="font-weight:400" label="价格设置"
...@@ -116,7 +116,6 @@ ...@@ -116,7 +116,6 @@
</div> </div>
</q-td> </q-td>
</q-tr> </q-tr>
</template> </template>
<template v-slot:bottom> <template v-slot:bottom>
<q-pagination class="full-width justify-end" v-model="msg.pageIndex" color="primary" :max="PageCount" <q-pagination class="full-width justify-end" v-model="msg.pageIndex" color="primary" :max="PageCount"
...@@ -210,12 +209,7 @@ ...@@ -210,12 +209,7 @@
align: "left", align: "left",
field: row => row.PreferentialList field: row => row.PreferentialList
}, },
{
name: 'Remark',
label: '备注',
field: 'Remark',
align: 'left'
},
{ {
name: 'SaleStateName', name: 'SaleStateName',
label: '销售状态', label: '销售状态',
......
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 to comment