|
@@ -176,7 +176,7 @@ export default {
|
|
return this.power.viper && this.isSuper
|
|
return this.power.viper && this.isSuper
|
|
},
|
|
},
|
|
memberHasAttachPower() {
|
|
memberHasAttachPower() {
|
|
- return this.bigMemberPower.indexOf(3) !== -1
|
|
|
|
|
|
+ return this.isMember && this.bigMemberPower.indexOf(3) !== -1
|
|
},
|
|
},
|
|
renderAttachList() {
|
|
renderAttachList() {
|
|
const { inApp, inIos } = this.$envs
|
|
const { inApp, inIos } = this.$envs
|
|
@@ -393,7 +393,8 @@ export default {
|
|
title: this.title // 附件详情页标题附件详情页标题
|
|
title: this.title // 附件详情页标题附件详情页标题
|
|
}
|
|
}
|
|
try {
|
|
try {
|
|
- const { r: data, m: msg } = await this.attachmentInstance.useResourcePack(params)
|
|
|
|
|
|
+ const { r: data, m: msg } =
|
|
|
|
+ await this.attachmentInstance.useResourcePack(params)
|
|
// 各种余额不足提示
|
|
// 各种余额不足提示
|
|
if (data) {
|
|
if (data) {
|
|
if (data.code && data.code < 0) {
|
|
if (data.code && data.code < 0) {
|