Ver Fonte

视频评论管理删除按钮只开放给admin和ficc_admin

jwyu há 1 ano atrás
pai
commit
dee7c4dbc9
1 ficheiros alterados com 7 adições e 1 exclusões
  1. 7 1
      pages-video/comment/list.vue

+ 7 - 1
pages-video/comment/list.vue

@@ -21,7 +21,7 @@
                     <view class="row">评论时间:{{item.CreateTime | formatTime}}</view>
                 </view>
                 <view class="action-bot flex">
-                    <text class="red-color" @click="delHandle(item,index)">删除</text>
+                    <text class="red-color" v-if="showDelBtn" @click="delHandle(item,index)">删除</text>
                 </view>
             </view>
         </view>
@@ -32,6 +32,12 @@
 <script>
 import {apiCommentList,apiDelComment} from '@/api/question/index'
 export default {
+    computed: {
+      showDelBtn(){
+          const userInfo = this.$store.state.userInfo;
+          return ['ficc_admin','admin'].includes(userInfo.RoleTypeCode)
+      }  
+    },
     data() {
         return {
             id:0,