2024/12/8

vben-admin 自定义form components 字典表下拉搜索框

<script lang="ts" setup> import type { SelectValue } from 'ant-design-vue/lib/select' import { debounce } from 'lodash-es' import { defineProps, ref, watch } from …

  • antd vbenadmin
  • 2024/12/8
  • 45
  • 2022/12/27

    antd vue select 选择器,选中后值变,页面不变问题

    页面没有监听到值的变化,使用this.$forceUpdate();重新渲染数据即可

  • antd vue
  • 2022/12/27
  • 616
  • 2022/6/24

    antd table customRender 绑定事件

    customRender: (text, row, index) => { let colNum = this.getCountNum(text, row, index, "date") return { children: <&…

  • antd
  • 2022/6/24
  • 778
  • 2022/6/24

    antd合并table一列中相邻的相同的单元格

    getCountNum(text, row, index, key) { var data = JSON.parse(JSON.stringify(this.dataSource)) var colNum = 0 var now = row[key] if&n…

  • antd
  • 2022/6/24
  • 767
  • 2022/5/23

    vue/antdv/jeecgboot自定义全局组件

    popup.vue <!-- 自定义全局弹窗 --> <template> <div id=""> <j-modal :title="title" width="800px" :visible="show&…

  • antd jeecgboot vue
  • 2022/5/23
  • 894
  • 2022/5/16

    antd table customRender

    customRender: (value, row, index,column) => ({     children: <a-input defaultValue={value} data-title={a} data-row={row} o…

  • antd
  • 2022/5/16
  • 703
  • 2022/5/16

    antd defalultValue不生效

    示例 <a-input v-decorator="[{initialValue:text }]" :defaultValue="text"  :data-record = "JSON.stringify(record)" @change="editinputChange" :class="…

  • antd
  • 2022/5/16
  • 753