mineadmin / MineAdmin-Vue

MineAdmin Vue 是一个开源免费专门适配于 MineAdmin 后台权限管理系统的前端中后台模板,使用了 vue3, vite5, pinia, arco design, javascript 等主流开发技术,未使用Typescript,我们选择了简单。
MIT License
314 stars 102 forks source link

feat(form-select): add select all and clear features for multiple selections #202

Closed People-Sea closed 2 months ago

People-Sea commented 2 months ago
  1. 修复远程形式选中翻页视图显示异常
  2. 新增已选预览
  3. 新增多选工具参数使用示例:
    const columns = ref([
    {
      title: "测试",
      dataIndex: "test_id",
      formType: "select",
      search: true,
      multiple: true,
      multipleTools: {
        selectAll: true,      //全选
        showSelectAll: true,  //展示已选
        inverse: true         //反选
      },
      // multipleTools: true   //默认为true及全部开启
      commonRules: {
          required: true,
          message: "请选择测试"
      },
      dict: {
          remote: 'setting/config/remote',
          props: { label: 'name', value: 'key' },
          openPage: true,
          pageOption:{
            pageSize:6,
          },
          remoteOption: {
            sort: {sort: 'DESC'},
            select: ['name', 'key']
          },
          translation: true
      }
    }
    ])

修复增强之前: select-befor 修复增强之后: select-after