增加购买10集价格
This commit is contained in:
@@ -348,8 +348,19 @@
|
|||||||
<el-table-column
|
<el-table-column
|
||||||
prop="price"
|
prop="price"
|
||||||
label="购买剧价格"
|
label="购买剧价格"
|
||||||
width="60"
|
>
|
||||||
></el-table-column>
|
<template slot-scope="scope">
|
||||||
|
{{scope.row.price?scope.row.price:''}}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="wholesalePrice"
|
||||||
|
label="购买10集价格"
|
||||||
|
>
|
||||||
|
<template slot-scope="scope">
|
||||||
|
{{scope.row.wholesalePrice?scope.row.wholesalePrice:''}}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="payNum"
|
prop="payNum"
|
||||||
label="购买次数"
|
label="购买次数"
|
||||||
@@ -595,6 +606,17 @@
|
|||||||
placeholder="请输入购买剧价格"
|
placeholder="请输入购买剧价格"
|
||||||
></el-input>
|
></el-input>
|
||||||
</div>
|
</div>
|
||||||
|
<div style="margin-bottom: 10px">
|
||||||
|
<span style="width: 200px; display: inline-block; text-align: right"
|
||||||
|
>购买10集价格:</span
|
||||||
|
>
|
||||||
|
<el-input
|
||||||
|
v-model="wholesalePrice"
|
||||||
|
type="number"
|
||||||
|
style="width: 50%"
|
||||||
|
placeholder="请输入购买10集价格"
|
||||||
|
></el-input>
|
||||||
|
</div>
|
||||||
<div style="margin-bottom: 10px">
|
<div style="margin-bottom: 10px">
|
||||||
<span style="width: 200px; display: inline-block; text-align: right"
|
<span style="width: 200px; display: inline-block; text-align: right"
|
||||||
>购买次数:</span
|
>购买次数:</span
|
||||||
@@ -1762,6 +1784,7 @@ export default {
|
|||||||
privilege: [], //标签集合
|
privilege: [], //标签集合
|
||||||
bq: "", //标签
|
bq: "", //标签
|
||||||
price: "", //价格
|
price: "", //价格
|
||||||
|
wholesalePrice: "", //10集价格
|
||||||
payNum: "", //购买次数
|
payNum: "", //购买次数
|
||||||
viewCounts: 0, //播放量
|
viewCounts: 0, //播放量
|
||||||
details: "", //短剧介绍
|
details: "", //短剧介绍
|
||||||
@@ -2345,7 +2368,7 @@ export default {
|
|||||||
this.statusType = row.status;
|
this.statusType = row.status;
|
||||||
this.details = row.details;
|
this.details = row.details;
|
||||||
this.viewCounts = row.viewCounts;
|
this.viewCounts = row.viewCounts;
|
||||||
|
this.wholesalePrice = row.wholesalePrice?row.wholesalePrice:'';
|
||||||
this.payNum = row.payNum;
|
this.payNum = row.payNum;
|
||||||
if (row.isPrice) {
|
if (row.isPrice) {
|
||||||
this.isPrice = row.isPrice;
|
this.isPrice = row.isPrice;
|
||||||
@@ -2538,7 +2561,7 @@ export default {
|
|||||||
payNum: this.payNum,
|
payNum: this.payNum,
|
||||||
price: this.price,
|
price: this.price,
|
||||||
viewCounts: this.viewCounts,
|
viewCounts: this.viewCounts,
|
||||||
|
wholesalePrice:this.wholesalePrice,
|
||||||
title: this.title,
|
title: this.title,
|
||||||
titleImg: this.titleImg,
|
titleImg: this.titleImg,
|
||||||
msgUrl: "",
|
msgUrl: "",
|
||||||
@@ -2574,6 +2597,7 @@ export default {
|
|||||||
that.title = "";
|
that.title = "";
|
||||||
that.remark = "";
|
that.remark = "";
|
||||||
that.titleImg = "";
|
that.titleImg = "";
|
||||||
|
this.wholesalePrice=""
|
||||||
that.dataSelect();
|
that.dataSelect();
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user