diff --git a/src/api/label.js b/src/api/label.js new file mode 100644 index 00000000..cc019ca5 --- /dev/null +++ b/src/api/label.js @@ -0,0 +1,12 @@ +import { getAction, postAction } from './manage.js' + +// 属性标识管理-新增 +const addLabel = (params) => postAction('/laws/lawsLabelDatabase/add', params) + +// 属性标识管理-编辑 +const editLabel = (params) => postAction('/laws/lawsLabelDatabase/edit', params) + +export { + addLabel, + editLabel, +} diff --git a/src/common/lang/en-us.js b/src/common/lang/en-us.js index 0617782f..d4cc091f 100644 --- a/src/common/lang/en-us.js +++ b/src/common/lang/en-us.js @@ -587,6 +587,13 @@ module.exports = { downTemplate: 'Click to download template', noFileMsg: 'Please select a file' }, + // 属性标识管理 + attributeIdentification:{ + labelName:'Label Name', + firstLabel:'First Label', + secondLabel:'Second Label', + thirdLabel:'Third Label', + }, // 系统管理 system, // 个人中心 diff --git a/src/common/lang/zh-cn.js b/src/common/lang/zh-cn.js index cd6e534c..f9cc813f 100644 --- a/src/common/lang/zh-cn.js +++ b/src/common/lang/zh-cn.js @@ -636,6 +636,14 @@ module.exports = { primaryNodeName: '名称', selectedData: '已选数据' }, + // 属性标识管理 + attributeIdentification:{ + labelName:'标签名称', + firstLabel:'一级标签', + secondLabel:'二级标签', + thirdLabel:'三级标签', + }, + // 系统管理 system, // 个人中心 diff --git a/src/views/system/AttributeIdentificationManage/AttributeIdentificationList.vue b/src/views/system/AttributeIdentificationManage/AttributeIdentificationList.vue new file mode 100644 index 00000000..3ea87928 --- /dev/null +++ b/src/views/system/AttributeIdentificationManage/AttributeIdentificationList.vue @@ -0,0 +1,288 @@ + + + + + diff --git a/src/views/system/AttributeIdentificationManage/modules/AttributeIdentificationModal.vue b/src/views/system/AttributeIdentificationManage/modules/AttributeIdentificationModal.vue new file mode 100644 index 00000000..bf7c406e --- /dev/null +++ b/src/views/system/AttributeIdentificationManage/modules/AttributeIdentificationModal.vue @@ -0,0 +1,198 @@ + + + + +