|
|
@ -8,15 +8,15 @@ |
|
|
</view> |
|
|
</view> |
|
|
<view class="box"> |
|
|
<view class="box"> |
|
|
<text class="title">结算平台:</text> |
|
|
<text class="title">结算平台:</text> |
|
|
<text>{{ orderDetail.platform }}</text> |
|
|
<text>{{ setPlatform(orderDetail.platform) }}</text> |
|
|
</view> |
|
|
</view> |
|
|
<view class="box"> |
|
|
<view class="box"> |
|
|
<text class="title">应用:</text> |
|
|
<text class="title">应用:</text> |
|
|
<text>{{ orderDetail.appType }}</text> |
|
|
<text>{{ setAppType(orderDetail.appType) }}</text> |
|
|
</view> |
|
|
</view> |
|
|
<view class="box"> |
|
|
<view class="box"> |
|
|
<text class="title">收益类型:</text> |
|
|
<text class="title">收益类型:</text> |
|
|
<text>{{ orderDetail.type }}</text> |
|
|
<text>{{ setType(orderDetail.type) }}</text> |
|
|
</view> |
|
|
</view> |
|
|
<view class="box"> |
|
|
<view class="box"> |
|
|
<text class="title">结算时间:</text> |
|
|
<text class="title">结算时间:</text> |
|
|
@ -143,6 +143,31 @@ export default { |
|
|
return "待确认"; |
|
|
return "待确认"; |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
|
|
|
setPlatform(data) { |
|
|
|
|
|
if (data == "0") { |
|
|
|
|
|
return "抖音"; |
|
|
|
|
|
} else if (data == "1") { |
|
|
|
|
|
return "快手"; |
|
|
|
|
|
} else if (data == "2") { |
|
|
|
|
|
return "微信"; |
|
|
|
|
|
} else if (data == "3") { |
|
|
|
|
|
return "uniapp"; |
|
|
|
|
|
} |
|
|
|
|
|
}, |
|
|
|
|
|
setAppType(data) { |
|
|
|
|
|
if (data == "0") { |
|
|
|
|
|
return "次元壁纸"; |
|
|
|
|
|
} |
|
|
|
|
|
}, |
|
|
|
|
|
setType(data) { |
|
|
|
|
|
if (data == "0") { |
|
|
|
|
|
return "广告浏览"; |
|
|
|
|
|
} else if (data == "1") { |
|
|
|
|
|
return "邀请"; |
|
|
|
|
|
} else if (data == "2") { |
|
|
|
|
|
return "会员"; |
|
|
|
|
|
} |
|
|
|
|
|
}, |
|
|
}, |
|
|
}, |
|
|
}; |
|
|
}; |
|
|
</script> |
|
|
</script> |
|
|
|