diff --git a/src/api/liswork/xtwh/configdictApi.ts b/src/api/liswork/xtwh/configdictApi.ts
new file mode 100644
index 0000000..1c87a87
--- /dev/null
+++ b/src/api/liswork/xtwh/configdictApi.ts
@@ -0,0 +1,46 @@
+//参数设置字典
+// @ts-ignore
+import request from '@/utils/request'
+
+// 查询字典列表
+export function listconfigdict(params:any) {
+ return request({
+ url: '/configdict/list',
+ method: 'get',
+ params
+ })
+}
+
+// 查询字典详细
+export function getconfigdict(id:number) {
+ return request({
+ url: `/configdict/${id}`,
+ method: 'get'
+ })
+}
+
+// 新增字典
+export function addconfigdict(params:any) {
+ return request({
+ url: '/configdict',
+ method: 'post',
+ data:params
+ })
+}
+
+// 修改字典
+export function updateconfigdict(params:any) {
+ return request({
+ url: '/configdict',
+ method: 'put',
+ data:params
+ })
+}
+
+// 删除字典
+export function delconfigdict(id:any) {
+ return request({
+ url: `/configdict/${id}`,
+ method: 'delete'
+ })
+}
diff --git a/src/views/liswork/xtwh/configdict/index.vue b/src/views/liswork/xtwh/configdict/index.vue
new file mode 100644
index 0000000..74fb438
--- /dev/null
+++ b/src/views/liswork/xtwh/configdict/index.vue
@@ -0,0 +1,425 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+ {{ configTypeOptions.find(item => item.value === scope.row.configType)?.label || scope.row.configType }}
+
+
+
+
+
+
+
+
+ {{ configOptiontypeOptions.find(item => item.value === scope.row.configOptiontype)?.label || scope.row.configOptiontype }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ parseTime(scope.row.createTime) }}
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ dict.label }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file