|
@@ -18,10 +18,10 @@
|
|
|
<a-descriptions-item label="促销时间" v-else>--</a-descriptions-item>
|
|
|
|
|
|
<a-descriptions-item label="费用所属部门">{{ detailData.expenseDepartmentName || '--' }}</a-descriptions-item>
|
|
|
- <a-descriptions-item label="参与客户"> 部分客户,共{{ detailData.dealerQty }}个<span class="link-bule btn-box" @click="handleSee">查看</span></a-descriptions-item>
|
|
|
+ <a-descriptions-item label="参与客户"><div @click="handleSee">共<span class="link-bule">{{ detailData.dealerQty }}</span>个</div></a-descriptions-item>
|
|
|
|
|
|
<a-descriptions-item label="促销描述" :span="2">
|
|
|
- <div>{{ detailData.description || '' }}</div>
|
|
|
+ <div>{{ detailData.content || '' }}</div>
|
|
|
</a-descriptions-item>
|
|
|
<a-descriptions-item label="附件" :span="2">
|
|
|
<div class="attachmentBox" v-if="detailData.attachmentList&&detailData.attachmentList.length>0">
|
|
@@ -180,7 +180,7 @@ export default {
|
|
|
const arr = [
|
|
|
{ title: '序号', dataIndex: 'no', width: '6%', align: 'center' },
|
|
|
{ title: '促销类型', dataIndex: 'promotionRuleTypeDictValue', width: '13%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
- { title: '促销简称', dataIndex: 'description', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '规则简称', dataIndex: 'description', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '规则门槛', scopedSlots: { customRender: 'cillProduct' }, width: '20%', align: 'center' },
|
|
|
{ title: '规则', scopedSlots: { customRender: 'ruleProduct' }, width: '20%', align: 'center' },
|
|
|
{ title: '订单起订金额(元)', dataIndex: 'minOrderAmount', width: '10%', align: 'right', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } },
|
|
@@ -304,9 +304,6 @@ export default {
|
|
|
display:flex;
|
|
|
align-item:center;
|
|
|
}
|
|
|
- .btn-box{
|
|
|
- margin-left:5px;
|
|
|
- }
|
|
|
.footer-cont{
|
|
|
margin-top: 5px;
|
|
|
text-align: center;
|