|
@@ -156,8 +156,8 @@
|
|
|
ref="musicForm"
|
|
|
:isDisabled="
|
|
|
musicForm.status != 'PROCESSING' ||
|
|
|
- (isManage == 'manage' && musicForm.currentApproveRole == '4') ||
|
|
|
- (!isManage && musicForm.currentApproveRole == '3')
|
|
|
+ (isManage == 'manage' && musicForm.currentApproveRole == '2') ||
|
|
|
+ (!isManage && musicForm.currentApproveRole == '1')
|
|
|
"
|
|
|
/>
|
|
|
<p style="color:red;paddingLeft:150px">退费金额暂不进入账户余额</p>
|
|
@@ -190,7 +190,7 @@
|
|
|
type="primary"
|
|
|
v-permission="'musicGroupQuit/quitMusicGroup/conform'"
|
|
|
v-if="!isManage"
|
|
|
- :disabled="musicForm.currentApproveRole == '3'"
|
|
|
+ :disabled="musicForm.currentApproveRole == '1'"
|
|
|
@click="onSubmitGroup(musicForm, 'PROCESSING')"
|
|
|
>提交审核</el-button
|
|
|
>
|
|
@@ -198,7 +198,7 @@
|
|
|
v-else
|
|
|
type="primary"
|
|
|
:disabled="
|
|
|
- isManage == 'manage' && musicForm.currentApproveRole == '4'
|
|
|
+ isManage == 'manage' && musicForm.currentApproveRole == '2'
|
|
|
"
|
|
|
v-permission="'musicGroupQuit/quitMusicGroup/conform'"
|
|
|
@click="onSubmitGroup(musicForm, 'APPROVED')"
|
|
@@ -206,8 +206,8 @@
|
|
|
>
|
|
|
<el-button
|
|
|
:disabled="
|
|
|
- (isManage == 'manage' && musicForm.currentApproveRole == '4') ||
|
|
|
- (!isManage && musicForm.currentApproveRole == '3')
|
|
|
+ (isManage == 'manage' && musicForm.currentApproveRole == '2') ||
|
|
|
+ (!isManage && musicForm.currentApproveRole == '1')
|
|
|
"
|
|
|
type="danger"
|
|
|
v-permission="'musicGroupQuit/quitMusicGroup'"
|
|
@@ -342,13 +342,13 @@ export default {
|
|
|
if (isSuperAdmin) {
|
|
|
this.isManage = "super";
|
|
|
} else {
|
|
|
- if (roles.indexOf(3) != -1) {
|
|
|
+ if (roles.indexOf(1) != -1) {
|
|
|
this.isManage = "manage";
|
|
|
} else {
|
|
|
this.isManage = false;
|
|
|
}
|
|
|
}
|
|
|
- if (roles.indexOf(3) != -1 && roles.indexOf(4) != -1) {
|
|
|
+ if (roles.indexOf(1) != -1 && roles.indexOf(2) != -1) {
|
|
|
this.isManage = "super";
|
|
|
}
|
|
|
// isSuperAdmin:state=>state.user.isSuperAdmin,
|