diff --git a/src/views/businessManagement/processConfiguration/components/createForm.vue b/src/views/businessManagement/processConfiguration/components/createForm.vue new file mode 100644 index 0000000..23a40c0 --- /dev/null +++ b/src/views/businessManagement/processConfiguration/components/createForm.vue @@ -0,0 +1,339 @@ + + + + + + + 新建流程 + + + + 基本信息 + + + + + + + + + 全部 + + + + + 知识报送 + 知识删除 + 知识撤回 + + + 流程设计 + + + + + + + + + + + + + + + + + + + + + + + + + +添加审批环节 + + + + + + + + + + + + diff --git a/src/views/businessManagement/processConfiguration/index.vue b/src/views/businessManagement/processConfiguration/index.vue index eb97337..bcbdc5a 100644 --- a/src/views/businessManagement/processConfiguration/index.vue +++ b/src/views/businessManagement/processConfiguration/index.vue @@ -1,6 +1,6 @@ @@ -152,62 +100,14 @@ const handleCheckAll = (val: CheckboxValueType) => { color: 'var(--el-text-color-primary)' }" > - + + - - - 新建流程 - - - - - - - - - - - - - - - All - - - - - - + diff --git a/src/views/systemManagement/dictionaryManagement/columns.tsx b/src/views/systemManagement/dictionaryManagement/columns.tsx new file mode 100644 index 0000000..c975964 --- /dev/null +++ b/src/views/systemManagement/dictionaryManagement/columns.tsx @@ -0,0 +1,51 @@ +import { ref } from "vue"; + +export function useColumns() { + const dataList1 = ref([]); + + const columns1: TableColumnList = [ + { + label: "字典标签", + prop: "name", + cellRenderer: ({ row }) => + }, + { + label: "字典数值", + prop: "name", + cellRenderer: ({ row }) => + }, + { + label: "字典排序", + prop: "name", + cellRenderer: ({ row }) => + }, + { + label: "操作", + fixed: "right", + width: 90, + slot: "operation" + } + ]; + + function onAdd() { + dataList1.value.push({ + id: dataList1.value.length + 1, + name: "", + sex: 0, + hobby: "", + date: "" + }); + } + + function onDel(row) { + const index = dataList1.value.indexOf(row); + if (index !== -1) dataList1.value.splice(index, 1); + } + + return { + columns1, + dataList1, + onAdd, + onDel + }; +} diff --git a/src/views/systemManagement/dictionaryManagement/index.vue b/src/views/systemManagement/dictionaryManagement/index.vue index b5ed1ae..effa254 100644 --- a/src/views/systemManagement/dictionaryManagement/index.vue +++ b/src/views/systemManagement/dictionaryManagement/index.vue @@ -1,9 +1,14 @@ @@ -139,7 +136,7 @@ const handleCheckAll = (val: CheckboxValueType) => { - 新建子库 + 新建字典 { color: 'var(--el-text-color-primary)' }" > - + + { 新建字典 - + + + + + + + + + + + + + 新建字典 + + + + - - - - - + - All - - + + + + 添加 + + + + + + +