10 如何根据列表中状态,出现对应操作按钮 悬赏已过期

发布于 2022-06-21 22:49:41

image.png

如图:比如状态为启用时展示详情
状态为禁用是展示修改

查看更多

关注者
0
被浏览
647
1 个回答
liu
liu 2022-06-22
这家伙很懒,什么也没写!

rowHandle: {

        width: 140,
        view: {
            thin: true,//瘦模式,thin=true 且 text=null 可以设置方形按钮节省位置 
            // show: true, 
            text: "",
            disabled() {
                return !vm.hasPermissions("Retrieve");
                // return false
            },
            show(index,row){
              return row.z_status===1
            }
        },
        edit: {
            thin: true,
            text: "",
            disabled() {
                return !vm.hasPermissions("Update");
            }
           
        },
        remove: {
            thin: true,
            text: "",
            disabled() {
                return !vm.hasPermissions("Delete");
            }
        }
    },
    
    [输入链接说明](http://d2-crud-plus.docmirror.cn/d2-crud-plus/guide/options.html#crudoptions)

撰写答案

请登录后再发布答案,点击登录

发布
问题

分享
好友

手机
浏览

扫码手机浏览