|
@@ -86,15 +86,15 @@
|
|
|
class="alert"
|
|
|
style="margin-top: 20px"
|
|
|
type="info"
|
|
|
- v-if="courseViewType == 1&&paymentType !== undefined"
|
|
|
+ v-if="courseViewType == 1&&paymentType&&paymentType !=2"
|
|
|
>
|
|
|
</el-alert>
|
|
|
<memberSetting
|
|
|
- v-if="courseViewType == 1&&paymentType !== undefined"
|
|
|
+ v-if="courseViewType == 1&&paymentType&&paymentType !=2"
|
|
|
:form="memberForm"
|
|
|
:isUserType="isUserType"
|
|
|
:organId="baseInfo.musicGroup.organId"
|
|
|
- :addStudent="addStudent"
|
|
|
+ :addStudent="showMember"
|
|
|
:showTime="false"
|
|
|
/>
|
|
|
<el-alert title="缴费设置" :closable="false" class="alert" type="info">
|
|
@@ -298,8 +298,8 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
|
- addStudent(){
|
|
|
- return this.paymentType == 'ADD_STUDENT'|| this.paymentType ==3
|
|
|
+ showMember(){
|
|
|
+ return this.paymentType ==3
|
|
|
},
|
|
|
musicGroup() {
|
|
|
return this.baseInfo?.musicGroup;
|