|
@@ -109,6 +109,10 @@
|
109
|
109
|
<span v-else-if="item.prop == 'order_type'">
|
110
|
110
|
{{ getLaunchTypeDesc(row[item.prop]) }}
|
111
|
111
|
</span>
|
|
112
|
+ <!-- 投放账号 -->
|
|
113
|
+ <span v-else-if="item.prop == 'launch_account'">
|
|
114
|
+ {{ row[item.prop] || '-' }}
|
|
115
|
+ </span>
|
112
|
116
|
<!-- 推广类型 -->
|
113
|
117
|
<span v-else-if="item.prop == 'plat_order_type'">
|
114
|
118
|
{{ getPromotionTypeDesc(row[item.prop]) }}
|
|
@@ -180,6 +184,7 @@ export default {
|
180
|
184
|
{ prop: "order_source", label: "订单来源", },
|
181
|
185
|
{ prop: "playlet_name", label: "剧名", min_width: 160 },
|
182
|
186
|
{ prop: "order_type", label: "投放类型", min_width: 160 }, // 新增"投放类型"
|
|
187
|
+ { prop: "launch_account", label: "投放账号", min_width: 160 }, // 新增"投放账号"
|
183
|
188
|
{ prop: "plat_order_type", label: "推广类型", min_width: 160 }, // 新增"推广类型"
|
184
|
189
|
{ prop: "is_ad_user", label: "收入来源", min_width: 160 }, // 新增"收入来源"
|
185
|
190
|
{ prop: "ad_report_order_rules", label: "回传规则", min_width: 260 },
|