el-table-jsx文档el-table-jsx文档
指南
组件
github
npm
指南
组件
github
npm
  • MTable
  • Table
  • Form
  • Pageinate
  • Dialog
  • Descriptions
  • Tooltip
  • Tooltip
  • formColumns 属性
  • columns 属性

基础使用

Descriptions.vue
<template>
<template>
  <Descriptions
    :desInfo="state.desInfo"
    :column="4"
    :key="state.key"
    @desRightClick="desRightClick"
    @selectChange="selectChange"
  ></Descriptions>
</template>

<script setup>
import { reactive, onMounted, h } from "vue";
import { ElMessageBox } from "element-plus";
import { Descriptions } from "../../../src/dist/index";
import { desInfo } from "./config.js";

const state = reactive({
  data: {},
  key: 1,
  desInfo: {},
});

onMounted(() => {
  state.data = { tip: 666 };
  state.desInfo = desInfo(state.data);
  state.key = 2;
});

const desRightClick = (item) => {
  ElMessageBox({
    title: "修改",
    message: h("p", null, [
      h("span", null, "当前源是:"),
      h("i", { style: "color: teal" }, JSON.stringify(item)),
    ]),
  });
};

const selectChange = (sour, val) => {
  ElMessageBox({
    title: "select",
    message: h("p", null, [
      h("span", "当前值是:"),
      h("span", { style: "color: teal" }, val),
      h("br"),
      h("span", null, "当前row是:"),
      h("i", { style: "color: teal" }, JSON.stringify(sour)),
    ]),
  });
};
</script>


config.js

import { QuestionFilled } from "@element-plus/icons-vue";
import { markRaw } from 'vue';

export const desInfo = data => {
    return {
        title: '概要消息',
        desArr: [
            {
                label: '提示',
                val: data.tip,
                btn: {
                    type: "primary",
                    link: true,
                    txt: "修改"
                },
                tooltipInfo: {
                    icon: markRaw(QuestionFilled),
                    content: '提示'
                },
                componentType: 'select',
                option: [
                    { label: "全部", value: 0 },
                    { label: "通过", value: 1 },
                    { label: "取消", value: 2 },
                    { label: "禁用", value: 3 },
                ],
                defaultVal: 0,
            },
            {
                label: '提示',
                val: '2',
                btn: {
                    type: "primary",
                    link: true,
                    txt: "修改"
                },
            },
            {
                label: '提示',
                val: '3',
            },
            {
                label: '提示',
                val: '4',
            },
            {
                label: '提示',
                val: '5',
            },
        ]
    };
};

事件

属性名说明出参
desRightClickdesRightClick
selectChangeselectChangesour, e

属性

属性名说明默认值类型
desInfoDescriptions 配置{}object
column一行 Descriptions Item 的数量3number
Last Updated:
Contributors: const
Prev
Dialog
Next
Tooltip