|
@@ -25,7 +25,7 @@
|
|
|
|
|
|
<script>
|
|
|
import { commonMixin } from '@/utils/mixin'
|
|
|
- import detailModal from '@/views/promotionRulesManagement/dealerPromotions/detail.vue'
|
|
|
+ import detailModal from '@/views/promotionRulesManagement/dealerPromotions/detailModal.vue'
|
|
|
import { salesPromoQueryList } from '@/api/salesNew'
|
|
|
import { salesDetailAllList, salesPromoDetailCount, salesDetaiCount } from '@/api/salesDetailNew'
|
|
|
export default {
|
|
@@ -143,7 +143,7 @@
|
|
|
{record.promo?(
|
|
|
<div>
|
|
|
<strong style="margin-right:10px;font-size:14px;">{record.promo.promotion.title} ({record.promo.promotionRule.description})</strong>
|
|
|
- <span style="margin-left:10px;color:#00aaff;cursor: pointer;" onClick={()=>_this.showDesc(record)}>
|
|
|
+ <span style="margin-left:10px;color:#00aaff;cursor: pointer;" onClick={()=>_this.showDesc(record.promo)}>
|
|
|
<a-icon title="查看活动详情" type="eye"/> 活动详情
|
|
|
</span>
|
|
|
</div>
|
|
@@ -256,7 +256,7 @@
|
|
|
},
|
|
|
// 查看活动详情
|
|
|
showDesc(row){
|
|
|
- this.detailSn = row.promotionRuleSn
|
|
|
+ this.detailSn = row.promoRuleSn
|
|
|
this.openDetailModal = true
|
|
|
},
|
|
|
// 获取销售单参与的活动列表
|