Commit 36b33c94 authored by lixin's avatar lixin

非会员价格校验只有在付费点播模式下生效

parent 7dceb47b
...@@ -897,7 +897,7 @@ export default { ...@@ -897,7 +897,7 @@ export default {
this.$message.info('请上传视频') this.$message.info('请上传视频')
return return
} }
if(chargeModel=='PAY'){
if (price == "") { if (price == "") {
this.$message.info("非会员价格不能为空"); this.$message.info("非会员价格不能为空");
return; return;
...@@ -937,6 +937,7 @@ export default { ...@@ -937,6 +937,7 @@ export default {
this.$message.info("会员价格金额格式不正确"); this.$message.info("会员价格金额格式不正确");
return; return;
} }
}
// validateValidPeriod // validateValidPeriod
// validateVipPrice // validateVipPrice
const chaperList = []; const chaperList = [];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment