xiejun
2023-07-05 d3239b6a098724db5a29b4f48ddad5f8a0402cea
Source/UBCS-WEB/src/const/code/mdmrule.js
@@ -1,5 +1,5 @@
export default {
  height:'auto',
  height:"220px",
  calcHeight: 30,
  tip: false,
  editBtn:false,
@@ -10,6 +10,10 @@
  viewBtn: true,
  selection: true,
  dialogClickModal: false,
  columnBtn: false,
  searchShowBtn: false,
  highlightCurrentRow: true,
  rowKey: "oid", //行数据的 Key,用来优化 Table 的渲染
  column: [
    {
      label: "编号",
@@ -17,6 +21,7 @@
      search: true,
      searchLabelWidth: 45,
      searchSpan: 4,
      sortable: true,
      rules: [{
        required: true,
        message: "请输入编号",
@@ -29,6 +34,7 @@
      search: true,
      searchLabelWidth: 45,
      searchSpan: 4,
      sortable: true,
      rules: [{
        required: true,
        message: "请输入名称",
@@ -52,11 +58,26 @@
    },
    {
      label: "状态",
      prop: "lcStatusText",
      prop: "lcStatus",
      search: true,
      searchLabelWidth: 45,
      searchSpan: 5,
      display: false,
      hide: true,
      type: 'select',
      dicUrl: "/api/ubcs-omd/enum/dictionary?code=codeSearchLCStatus",
      props: {
        label: "itemName",
        value: "itemValue"
      },
    },
    {
      label: "状态",
      prop: "lcStatusText",
      // search: false,
      // searchLabelWidth: 45,
      // searchSpan: 5,
      display: false,
    },
  ]
}