|
@@ -191,7 +191,7 @@
|
|
|
:hidePaymentPattern="true"
|
|
|
:isUserType="isUserType"
|
|
|
:isDisabled="
|
|
|
- form.leixing == '1' || form.leixing == '2' || paymentType == '0'
|
|
|
+ form.leixing === '1' || form.leixing === '2' || paymentType === '0'
|
|
|
"
|
|
|
:courseViewType="courseViewType"
|
|
|
v-else
|
|
@@ -439,7 +439,7 @@ export default {
|
|
|
let organId = this.baseInfo?.musicGroup?.organId;
|
|
|
this.courseViewType = this.baseInfo?.musicGroup?.courseViewType;
|
|
|
if (this.courseViewType == 1) {
|
|
|
- this.$set(this.form, "leixing", 2);
|
|
|
+ this.$set(this.form, "leixing", '2');
|
|
|
// console.log('paymentType',this.paymentType)
|
|
|
this.addExtraClass();
|
|
|
}
|