diff --git a/src/api/auditPagesApi/index.js b/src/api/auditPagesApi/index.js new file mode 100644 index 0000000..f9de158 --- /dev/null +++ b/src/api/auditPagesApi/index.js @@ -0,0 +1,33 @@ +import request from '@/utils/request' + +// 新增单位 +export function postUnit(method,data) { + return request({ + url: '/tc/unit', + method: method, + data, + }) +} +// 查询单位列表 +export function listUnit(query) { + return request({ + url: '/tc/unit/list', + method: 'get', + params: query + }) +} + +// 删除单位 +export function delUnit(unitId) { + return request({ + url: '/tc/unit/' + unitId, + method: 'delete' + }) +} +// 单位详情 +export function lookUnit(unitId) { + return request({ + url: '/tc/unit/' + unitId, + method: 'get' + }) +} \ No newline at end of file diff --git a/src/assets/styles/public.scss b/src/assets/styles/public.scss index 8028182..00a6fb6 100644 --- a/src/assets/styles/public.scss +++ b/src/assets/styles/public.scss @@ -379,4 +379,13 @@ } } } -} \ No newline at end of file +} + + +input[aria-hidden="true"] { + display: none !important; +} + +.el-radio:focus:not(.is-focus):not(:active):not(.is-disabled) .el-radio__inner { + box-shadow: none; +} diff --git a/src/views/auditPages/unitManagement/index.vue b/src/views/auditPages/unitManagement/index.vue index 17b83ce..1552a6f 100644 --- a/src/views/auditPages/unitManagement/index.vue +++ b/src/views/auditPages/unitManagement/index.vue @@ -6,35 +6,41 @@ 基本信息
- + - - + + - + - - + + + - - + + - - + + - - + + - + - + - + - + - - + + - + + + + + + + + 联系人 @@ -129,23 +142,31 @@ - - + + - - + + - - + + - - + + @@ -154,15 +175,15 @@ - + - + - + @@ -172,8 +193,8 @@ - - + + @@ -182,26 +203,26 @@ - + - - + + - - + + - + - - + + @@ -210,26 +231,26 @@ - + - - + + - - + + - + - - + + @@ -238,41 +259,30 @@ - + - + - - + + - + - + - - - - - - - - - - - - + @@ -281,7 +291,7 @@ - 添加其他联系人 + 添加其他联系人 @@ -290,12 +300,12 @@ 检查信息 -
+
- + - + - - - + + + + + + + + + + + + + + + + + + + + + + + +
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 更多信息 @@ -371,37 +362,37 @@ - + - + - + - - + + - + 取消 - 确定 + 确定
@@ -409,15 +400,32 @@
\ No newline at end of file diff --git a/src/views/system/user/index.vue b/src/views/system/user/index.vue index 2511133..b729ee6 100644 --- a/src/views/system/user/index.vue +++ b/src/views/system/user/index.vue @@ -140,12 +140,12 @@