diff --git a/src/views/baseapi/log/login/LoginLogInfo.vue b/src/views/baseapi/log/login/LoginLogInfo.vue
index d15ec29ca..1da479686 100644
--- a/src/views/baseapi/log/login/LoginLogInfo.vue
+++ b/src/views/baseapi/log/login/LoginLogInfo.vue
@@ -7,7 +7,7 @@
:open="visible"
@cancel="visible = false"
>
-
+
取消
diff --git a/src/views/baseapi/log/operate/OperateLogInfo.vue b/src/views/baseapi/log/operate/OperateLogInfo.vue
index 03aaa52c6..394af7355 100644
--- a/src/views/baseapi/log/operate/OperateLogInfo.vue
+++ b/src/views/baseapi/log/operate/OperateLogInfo.vue
@@ -2,12 +2,12 @@
-
+
取消
@@ -29,7 +29,7 @@
let visible = ref(false)
let confirmLoading = ref(false)
let schema = [
- { field: 'id', label: '主键' },
+ { field: 'id', label: '主键', labelMinWidth: 100 },
{ field: 'account', label: '操作账号' },
{ field: 'title', label: '操作模块' },
{
diff --git a/src/views/daxpay/admin/constant/api/ApiConst.api.ts b/src/views/daxpay/admin/constant/api/ApiConst.api.ts
new file mode 100644
index 000000000..bbaa7e82f
--- /dev/null
+++ b/src/views/daxpay/admin/constant/api/ApiConst.api.ts
@@ -0,0 +1,36 @@
+import { defHttp } from '@/utils/http/axios'
+import { PageResult, Result } from '#/axios'
+import { BaseEntity } from '#/web'
+
+/**
+ * 分页
+ */
+export const page = (params) => {
+ return defHttp.get>>({
+ url: '/const/method',
+ params,
+ })
+}
+
+/**
+ * 详情
+ */
+export const get = (id) => {
+ return defHttp.get>({
+ url: '/const/method',
+ params: { id },
+ })
+}
+
+export interface ChannelConst extends BaseEntity {
+ /** 编码 */
+ code: string
+ /** 名称 */
+ name: string
+ /** 接口地址 */
+ api: string
+ /** 是否启用 */
+ enable: boolean
+ /** 备注 */
+ remark: string
+}
diff --git a/src/views/daxpay/admin/constant/channel/ChannelConst.api.ts b/src/views/daxpay/admin/constant/channel/ChannelConst.api.ts
new file mode 100644
index 000000000..680ef2fde
--- /dev/null
+++ b/src/views/daxpay/admin/constant/channel/ChannelConst.api.ts
@@ -0,0 +1,33 @@
+import { defHttp } from '@/utils/http/axios'
+import { PageResult, Result } from '#/axios'
+import { BaseEntity } from '#/web'
+
+/**
+ * 分页
+ */
+export const page = (params) => {
+ return defHttp.get>>({
+ url: '/const/method',
+ params,
+ })
+}
+/**
+ * 详情
+ */
+export const get = (id) => {
+ return defHttp.get>({
+ url: '/const/method',
+ params: { id },
+ })
+}
+
+export interface ChannelConst extends BaseEntity {
+ /** 编码 */
+ code: string
+ /** 名称 */
+ name: string
+ /** 是否启用 */
+ enable: boolean
+ /** 备注 */
+ remark: string
+}
diff --git a/src/views/daxpay/admin/constant/method/MethodConst.api.ts b/src/views/daxpay/admin/constant/method/MethodConst.api.ts
new file mode 100644
index 000000000..0edd74bd0
--- /dev/null
+++ b/src/views/daxpay/admin/constant/method/MethodConst.api.ts
@@ -0,0 +1,33 @@
+import { defHttp } from '@/utils/http/axios'
+import { PageResult, Result } from '#/axios'
+import { BaseEntity } from '#/web'
+
+/**
+ * 分页
+ */
+export const page = (params) => {
+ return defHttp.get>>({
+ url: '/const/method',
+ params,
+ })
+}
+/**
+ * 详情
+ */
+export const get = (id) => {
+ return defHttp.get>({
+ url: '/const/method',
+ params: { id },
+ })
+}
+
+export interface MethodConst extends BaseEntity {
+ /** 编码 */
+ code: string
+ /** 名称 */
+ name: string
+ /** 是否启用 */
+ enable: boolean
+ /** 备注 */
+ remark: string
+}
diff --git a/src/views/iam/perm/path/PermPath.api.ts b/src/views/iam/perm/path/PermPath.api.ts
index ddc27e92d..9128c91ab 100644
--- a/src/views/iam/perm/path/PermPath.api.ts
+++ b/src/views/iam/perm/path/PermPath.api.ts
@@ -36,15 +36,17 @@ export function syncSystem() {
*/
export interface PermPath extends BaseEntity {
// 标识
- code: string
+ code?: string
// 上级标识
- parentCode: string
+ parentCode?: string
// 权限名称
- name: string
+ name?: string
// 请求类型
- method: string
+ method?: string
// 请求路径
- path: string
+ path?: string
+ // 叶子节点
+ leaf?: boolean
}
/**
diff --git a/src/views/iam/perm/path/PermPathInfo.vue b/src/views/iam/perm/path/PermPathInfo.vue
index 8b38b0e09..d169720a9 100644
--- a/src/views/iam/perm/path/PermPathInfo.vue
+++ b/src/views/iam/perm/path/PermPathInfo.vue
@@ -1,28 +1,48 @@
-
+
+
+
+
+
+ 取消
+
+
+
+