chore: run eslint fix
This commit is contained in:
parent
11ff29bac5
commit
188f00fa18
5
.vscode/settings.json
vendored
5
.vscode/settings.json
vendored
@ -186,5 +186,8 @@
|
||||
"enable": true
|
||||
},
|
||||
"terminal.integrated.scrollback": 10000,
|
||||
"nuxt.isNuxtApp": false
|
||||
"nuxt.isNuxtApp": false,
|
||||
"[jsonc]": {
|
||||
"editor.defaultFormatter": "vscode.json-language-features"
|
||||
}
|
||||
}
|
||||
|
@ -1,37 +1,37 @@
|
||||
import { defHttp } from "@/utils/http/axios";
|
||||
import { defHttp } from '@/utils/http/axios'
|
||||
|
||||
export interface OperateLogVO {
|
||||
id: number;
|
||||
traceId: string;
|
||||
userType: number;
|
||||
userId: number;
|
||||
userName: string;
|
||||
type: string;
|
||||
subType: string;
|
||||
bizId: number;
|
||||
action: string;
|
||||
extra: string;
|
||||
requestMethod: string;
|
||||
requestUrl: string;
|
||||
userIp: string;
|
||||
creator: string;
|
||||
creatorName: string;
|
||||
createTime: Date;
|
||||
id: number
|
||||
traceId: string
|
||||
userType: number
|
||||
userId: number
|
||||
userName: string
|
||||
type: string
|
||||
subType: string
|
||||
bizId: number
|
||||
action: string
|
||||
extra: string
|
||||
requestMethod: string
|
||||
requestUrl: string
|
||||
userIp: string
|
||||
creator: string
|
||||
creatorName: string
|
||||
createTime: Date
|
||||
}
|
||||
|
||||
export interface OperateLogPageReqVO extends PageParam {
|
||||
module?: string;
|
||||
userNickname?: string;
|
||||
type?: number;
|
||||
success?: boolean;
|
||||
startTime?: Date[];
|
||||
module?: string
|
||||
userNickname?: string
|
||||
type?: number
|
||||
success?: boolean
|
||||
startTime?: Date[]
|
||||
}
|
||||
|
||||
// 查询操作日志列表
|
||||
export function getOperateLogPage(params: OperateLogPageReqVO) {
|
||||
return defHttp.get({ url: "/system/operate-log/page", params });
|
||||
return defHttp.get({ url: '/system/operate-log/page', params })
|
||||
}
|
||||
// 导出操作日志
|
||||
export function exportOperateLog(params: OperateLogPageReqVO) {
|
||||
return defHttp.download({ url: "/system/operate-log/export", params }, "操作日志.xls");
|
||||
return defHttp.download({ url: '/system/operate-log/export', params }, '操作日志.xls')
|
||||
}
|
||||
|
@ -1,13 +1,13 @@
|
||||
<script lang="tsx">
|
||||
import type { PropType } from 'vue'
|
||||
import { defineComponent } from 'vue';
|
||||
import { Alert, Button } from 'ant-design-vue';
|
||||
import { defineComponent } from 'vue'
|
||||
import { Button as AButton, Alert } from 'ant-design-vue'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'DocAlert',
|
||||
components: {
|
||||
Alert,
|
||||
Button
|
||||
AButton,
|
||||
},
|
||||
props: {
|
||||
title: {
|
||||
@ -22,38 +22,39 @@ export default defineComponent({
|
||||
setup(props) {
|
||||
/** 跳转 URL 链接 */
|
||||
const goToUrl = () => {
|
||||
window.open(props.url);
|
||||
};
|
||||
window.open(props.url)
|
||||
}
|
||||
|
||||
/** 是否开启 */
|
||||
const getEnable = () => {
|
||||
return import.meta.env.VITE_APP_DOCALERT_ENABLE !== 'false';
|
||||
};
|
||||
return import.meta.env.VITE_APP_DOCALERT_ENABLE !== 'false'
|
||||
}
|
||||
|
||||
return {
|
||||
goToUrl,
|
||||
getEnable,
|
||||
props
|
||||
};
|
||||
}
|
||||
});
|
||||
props,
|
||||
}
|
||||
},
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Alert v-if="getEnable()" type="success" show-icon>
|
||||
<template #message>
|
||||
<AButton type="link" @click="goToUrl">
|
||||
【{{ title }}】文档地址:{{ url }}
|
||||
</AButton>
|
||||
</template>
|
||||
</Alert>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.ant-alert-success {
|
||||
margin-top: 5px;
|
||||
margin-left: 15px;
|
||||
margin-right: 15px;
|
||||
margin-left: 15px;
|
||||
cursor: pointer;
|
||||
border: 1px solid green;
|
||||
}
|
||||
</style>
|
||||
<template>
|
||||
<Alert v-if="getEnable()" type="success" show-icon>
|
||||
<template #message>
|
||||
<Button type="link" @click="goToUrl">
|
||||
【{{ title }}】文档地址:{{ url }}
|
||||
</Button>
|
||||
</template>
|
||||
</Alert>
|
||||
</template>
|
@ -88,4 +88,5 @@ export interface FormItem {
|
||||
* When to validate the value of children node
|
||||
*/
|
||||
validateTrigger?: string | string[] | false
|
||||
message?: string
|
||||
}
|
||||
|
@ -2,8 +2,9 @@
|
||||
* @Description: 表单项属性
|
||||
-->
|
||||
<script lang="ts" setup>
|
||||
import { computed, defineComponent} from 'vue'
|
||||
import { Empty, FormItem } from 'ant-design-vue'
|
||||
import type { defineComponent } from 'vue'
|
||||
import { computed } from 'vue'
|
||||
import { Empty, FormItem } from 'ant-design-vue'
|
||||
import { isArray } from 'lodash-es'
|
||||
import { baseItemColumnProps } from '../config/formItemPropsConfig'
|
||||
|
||||
@ -21,7 +22,6 @@ function showProps(exclude: string[] | undefined) {
|
||||
const Com = computed(() => {
|
||||
return com => componentMap.get(com) as ReturnType<typeof defineComponent>
|
||||
})
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
@ -2,7 +2,8 @@
|
||||
* @Description: 表单项属性,控件属性面板
|
||||
-->
|
||||
<script lang="ts" setup>
|
||||
import { computed, watch, defineComponent } from 'vue'
|
||||
import type { defineComponent } from 'vue'
|
||||
import { computed, watch } from 'vue'
|
||||
import { Checkbox, Col, Empty, FormItem, Input, Switch } from 'ant-design-vue'
|
||||
import { isArray } from 'lodash-es'
|
||||
import {
|
||||
@ -11,9 +12,9 @@ import {
|
||||
baseFormItemControlAttrs,
|
||||
baseFormItemProps,
|
||||
} from '../../VFormDesign/config/formItemPropsConfig'
|
||||
import { componentMap } from '@/components/Form/src/componentMap'
|
||||
import { useFormDesignState } from '../../../hooks/useFormDesignState'
|
||||
import RuleProps from './RuleProps.vue'
|
||||
import { componentMap } from '@/components/Form/src/componentMap'
|
||||
|
||||
defineOptions({ name: 'FormItemProps' })
|
||||
|
||||
@ -98,7 +99,7 @@ const Com = computed(() => {
|
||||
<Switch v-model:checked="formConfig.currentItem.itemProps.required" />
|
||||
<Input
|
||||
v-if="formConfig.currentItem.itemProps.required"
|
||||
v-model:value="formConfig.currentItem.itemProps.message"
|
||||
v-model:value="(formConfig.currentItem.itemProps as any).message"
|
||||
placeholder="请输入必选提示"
|
||||
/>
|
||||
</FormItem>
|
||||
|
@ -9,9 +9,9 @@ import {
|
||||
Col,
|
||||
FormItem,
|
||||
InputNumber,
|
||||
Slider,
|
||||
RadioButton,
|
||||
RadioGroup,
|
||||
RadioButton
|
||||
Slider,
|
||||
} from 'ant-design-vue'
|
||||
import { useFormDesignState } from '../../../hooks/useFormDesignState'
|
||||
|
||||
|
@ -30,18 +30,18 @@ const emit = defineEmits(['dragStart', 'handleColAdd', 'handle-copy', 'handle-de
|
||||
|
||||
const Draggable = draggable
|
||||
|
||||
const { formDesignMethods: { handleSetSelectItem }, formConfig } = useFormDesignState()
|
||||
const { formDesignMethods: { handleSetSelectItem } } = useFormDesignState()
|
||||
const colPropsComputed = computed(() => {
|
||||
const { colProps = {} } = props.schema
|
||||
return colProps
|
||||
})
|
||||
|
||||
const list1 = computed(() => props.schema.columns)
|
||||
// const list1 = computed(() => props.schema.columns)
|
||||
|
||||
// 计算布局元素,水平模式下为ACol,非水平模式下为div
|
||||
const layoutTag = computed(() => {
|
||||
return formConfig.value.layout === 'horizontal' ? 'Col' : 'div'
|
||||
})
|
||||
// const layoutTag = computed(() => {
|
||||
// return formConfig.value.layout === 'horizontal' ? 'Col' : 'div'
|
||||
// })
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
@ -25,7 +25,7 @@ export function useGlobSetting(): Readonly<GlobConfig> {
|
||||
apiUrl: VITE_GLOB_API_URL,
|
||||
shortName: VITE_GLOB_APP_SHORT_NAME,
|
||||
urlPrefix: VITE_GLOB_API_URL_PREFIX,
|
||||
uploadUrl: VITE_GLOB_API_URL + '/infra/file/upload',
|
||||
uploadUrl: `${VITE_GLOB_API_URL}/infra/file/upload`,
|
||||
tenantEnable: VITE_GLOB_APP_TENANT_ENABLE,
|
||||
captchaEnable: VITE_GLOB_APP_CAPTCHA_ENABLE,
|
||||
}
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/ai/chat/index/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/ai/chat/index/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/ai/chat/manager/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/ai/chat/manager/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/ai/image/index/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/ai/image/index/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/ai/image/manager/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/ai/image/manager/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/ai/image/square/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/ai/image/square/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/ai/model/apiKey/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/ai/model/apiKey/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/ai/model/chatModel/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/ai/model/chatModel/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/ai/model/chatRole/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/ai/model/chatRole/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/ai/music/index/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/ai/music/index/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/ai/music/manager/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/ai/music/manager/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/ai/write/index/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/ai/write/index/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/ai/write/manager/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/ai/write/manager/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/bpm/category/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/bpm/category/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/bpm/definition/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/bpm/definition/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/bpm/processExpression/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/bpm/processExpression/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/bpm/processInstance/manager/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/bpm/processInstance/manager/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/bpm/processListener/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/bpm/processListener/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -12,7 +12,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/bpm/task/copy/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/bpm/task/copy/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -12,7 +12,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/bpm/task/manager/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/bpm/task/manager/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/backlog/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/backlog/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -10,7 +10,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/business/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/business/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -10,7 +10,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/business/status/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/business/status/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -10,7 +10,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/clue/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/clue/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -10,7 +10,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/customer/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/customer/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -10,7 +10,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/contract/config/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/contract/config/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -10,7 +10,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/contract/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/contract/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -10,7 +10,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/customer/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/customer/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -10,7 +10,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/customer/limitConfig/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/customer/limitConfig/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -10,7 +10,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/customer/pool/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/customer/pool/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -10,7 +10,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/customer/poolConfig/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/customer/poolConfig/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/product/category/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/product/category/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/product/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/product/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -10,7 +10,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/receivable/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/receivable/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -10,7 +10,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/receivable/plan/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/receivable/plan/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/statistics/customer/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/statistics/customer/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/statistics/funnel/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/statistics/funnel/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/statistics/performance/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/statistics/performance/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/statistics/portrait/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/statistics/portrait/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/statistics/rank/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/statistics/rank/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -12,7 +12,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/finance/account/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/finance/account/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -12,7 +12,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/finance/payment/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/finance/payment/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -12,7 +12,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/finance/receipt/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/finance/receipt/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/home/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/home/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/product/category/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/product/category/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/product/product/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/product/product/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/product/unit/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/product/unit/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/purchase/in/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/purchase/in/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/purchase/order/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/purchase/order/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/purchase/return/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/purchase/return/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/purchase/supplier/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/purchase/supplier/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/sale/customer/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/sale/customer/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/sale/order/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/sale/order/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/sale/out/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/sale/out/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/sale/return/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/sale/return/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -12,7 +12,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/stock/check/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/sale/check/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/stock/in/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/sale/in/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -12,7 +12,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/stock/move/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/sale/move/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/stock/out/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/sale/out/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/stock/record/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/sale/record/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/stock/stock/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/sale/stock/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/stock/warehouse/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/sale/warehouse/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -252,4 +252,4 @@ export const infoSchema: DescItem[] = [
|
||||
return useRender.renderDict(value, DICT_TYPE.INFRA_OPERATE_TYPE)
|
||||
},
|
||||
},
|
||||
]
|
||||
]
|
||||
|
@ -2,12 +2,12 @@
|
||||
import { onMounted, reactive, ref } from 'vue'
|
||||
import { Steps } from 'ant-design-vue'
|
||||
import { useRoute } from 'vue-router'
|
||||
import { cloneDeep } from 'lodash-es'
|
||||
import BasicInfoForm from './components/BasicInfoForm.vue'
|
||||
import CloumInfoForm from './components/CloumInfoForm.vue'
|
||||
import FinishForm from './components/FinishForm.vue'
|
||||
import { PageWrapper } from '@/components/Page'
|
||||
import { getCodegenTable, updateCodegenTable } from '@/api/infra/codegen'
|
||||
import { cloneDeep } from 'lodash-es'
|
||||
|
||||
const Step = Steps.Step
|
||||
|
||||
|
@ -20,7 +20,7 @@ const [registerForm, { setFieldsValue, resetFields, resetSchema, validate }] = u
|
||||
baseColProps: { span: 24 },
|
||||
schemas: createFormSchema,
|
||||
showActionButtonGroup: false,
|
||||
actionColOptions: { span: 23 }
|
||||
actionColOptions: { span: 23 },
|
||||
})
|
||||
|
||||
const [registerModal, { setModalProps, closeModal }] = useModalInner(async (data) => {
|
||||
@ -38,20 +38,21 @@ async function handleSubmit() {
|
||||
try {
|
||||
const values = await validate()
|
||||
setModalProps({ confirmLoading: true })
|
||||
if (unref(isUpdate)) {
|
||||
if (unref(isUpdate))
|
||||
await updateDemo01Contact(values)
|
||||
} else {
|
||||
else
|
||||
await createDemo01Contact(values)
|
||||
}
|
||||
|
||||
closeModal()
|
||||
emit('success')
|
||||
createMessage.success(t('common.saveSuccessText'))
|
||||
} finally {
|
||||
}
|
||||
finally {
|
||||
setModalProps({ confirmLoading: false })
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<BasicModal v-bind="$attrs" :title="isUpdate ? t('action.edit') : t('action.create')" @register="registerModal" @ok="handleSubmit">
|
||||
<BasicForm @register="registerForm" />
|
||||
|
@ -6,12 +6,12 @@ export const columns: BasicColumn[] = [
|
||||
{
|
||||
title: '编号',
|
||||
dataIndex: 'id',
|
||||
width: 80
|
||||
width: 80,
|
||||
},
|
||||
{
|
||||
title: '名字',
|
||||
dataIndex: 'name',
|
||||
width: 160
|
||||
width: 160,
|
||||
},
|
||||
{
|
||||
title: '性别',
|
||||
@ -19,7 +19,7 @@ export const columns: BasicColumn[] = [
|
||||
width: 80,
|
||||
customRender: ({ text }) => {
|
||||
return useRender.renderDict(text, DICT_TYPE.SYSTEM_USER_SEX)
|
||||
}
|
||||
},
|
||||
},
|
||||
{
|
||||
title: '出生年',
|
||||
@ -27,12 +27,12 @@ export const columns: BasicColumn[] = [
|
||||
width: 180,
|
||||
customRender: ({ text }) => {
|
||||
return useRender.renderDate(text)
|
||||
}
|
||||
},
|
||||
},
|
||||
{
|
||||
title: '简介',
|
||||
dataIndex: 'description',
|
||||
width: 180
|
||||
width: 180,
|
||||
},
|
||||
{
|
||||
title: '头像',
|
||||
@ -40,7 +40,7 @@ export const columns: BasicColumn[] = [
|
||||
width: 120,
|
||||
customRender: ({ text }) => {
|
||||
return useRender.renderImg(text)
|
||||
}
|
||||
},
|
||||
},
|
||||
{
|
||||
title: '创建时间',
|
||||
@ -48,8 +48,8 @@ export const columns: BasicColumn[] = [
|
||||
width: 180,
|
||||
customRender: ({ text }) => {
|
||||
return useRender.renderDate(text)
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
]
|
||||
|
||||
export const searchFormSchema: FormSchema[] = [
|
||||
@ -57,23 +57,23 @@ export const searchFormSchema: FormSchema[] = [
|
||||
label: '名字',
|
||||
field: 'name',
|
||||
component: 'Input',
|
||||
colProps: { span: 8 }
|
||||
colProps: { span: 8 },
|
||||
},
|
||||
{
|
||||
label: '性别',
|
||||
field: 'sex',
|
||||
component: 'Select',
|
||||
componentProps: {
|
||||
options: getDictOptions(DICT_TYPE.SYSTEM_USER_SEX)
|
||||
options: getDictOptions(DICT_TYPE.SYSTEM_USER_SEX),
|
||||
},
|
||||
colProps: { span: 8 }
|
||||
colProps: { span: 8 },
|
||||
},
|
||||
{
|
||||
label: '创建时间',
|
||||
field: 'createTime',
|
||||
component: 'RangePicker',
|
||||
colProps: { span: 8 }
|
||||
}
|
||||
colProps: { span: 8 },
|
||||
},
|
||||
]
|
||||
|
||||
export const createFormSchema: FormSchema[] = [
|
||||
@ -81,13 +81,13 @@ export const createFormSchema: FormSchema[] = [
|
||||
label: '编号',
|
||||
field: 'id',
|
||||
show: false,
|
||||
component: 'Input'
|
||||
component: 'Input',
|
||||
},
|
||||
{
|
||||
label: '名字',
|
||||
field: 'name',
|
||||
required: true,
|
||||
component: 'Input'
|
||||
component: 'Input',
|
||||
},
|
||||
{
|
||||
label: '性别',
|
||||
@ -95,8 +95,8 @@ export const createFormSchema: FormSchema[] = [
|
||||
required: true,
|
||||
component: 'RadioGroup',
|
||||
componentProps: {
|
||||
options: getDictOptions(DICT_TYPE.SYSTEM_USER_SEX)
|
||||
}
|
||||
options: getDictOptions(DICT_TYPE.SYSTEM_USER_SEX),
|
||||
},
|
||||
},
|
||||
{
|
||||
label: '出生年月',
|
||||
@ -106,14 +106,14 @@ export const createFormSchema: FormSchema[] = [
|
||||
componentProps: {
|
||||
showTime: true,
|
||||
format: 'YYYY-MM-DD',
|
||||
valueFormat: 'x'
|
||||
}
|
||||
valueFormat: 'x',
|
||||
},
|
||||
},
|
||||
{
|
||||
label: '简介',
|
||||
field: 'description',
|
||||
required: true,
|
||||
component: 'Editor'
|
||||
component: 'Editor',
|
||||
},
|
||||
{
|
||||
label: '头像',
|
||||
@ -122,9 +122,9 @@ export const createFormSchema: FormSchema[] = [
|
||||
component: 'FileUpload',
|
||||
componentProps: {
|
||||
fileType: 'image',
|
||||
maxCount: 1
|
||||
}
|
||||
}
|
||||
maxCount: 1,
|
||||
},
|
||||
},
|
||||
]
|
||||
|
||||
export const updateFormSchema: FormSchema[] = [
|
||||
@ -132,13 +132,13 @@ export const updateFormSchema: FormSchema[] = [
|
||||
label: '编号',
|
||||
field: 'id',
|
||||
show: false,
|
||||
component: 'Input'
|
||||
component: 'Input',
|
||||
},
|
||||
{
|
||||
label: '名字',
|
||||
field: 'name',
|
||||
required: true,
|
||||
component: 'Input'
|
||||
component: 'Input',
|
||||
},
|
||||
{
|
||||
label: '性别',
|
||||
@ -146,8 +146,8 @@ export const updateFormSchema: FormSchema[] = [
|
||||
required: true,
|
||||
component: 'RadioGroup',
|
||||
componentProps: {
|
||||
options: getDictOptions(DICT_TYPE.SYSTEM_USER_SEX)
|
||||
}
|
||||
options: getDictOptions(DICT_TYPE.SYSTEM_USER_SEX),
|
||||
},
|
||||
},
|
||||
{
|
||||
label: '出生年',
|
||||
@ -157,14 +157,14 @@ export const updateFormSchema: FormSchema[] = [
|
||||
componentProps: {
|
||||
showTime: true,
|
||||
format: 'YYYY-MM-DD',
|
||||
valueFormat: 'x'
|
||||
}
|
||||
valueFormat: 'x',
|
||||
},
|
||||
},
|
||||
{
|
||||
label: '简介',
|
||||
field: 'description',
|
||||
required: true,
|
||||
component: 'Editor'
|
||||
component: 'Editor',
|
||||
},
|
||||
{
|
||||
label: '头像',
|
||||
@ -173,7 +173,7 @@ export const updateFormSchema: FormSchema[] = [
|
||||
component: 'FileUpload',
|
||||
componentProps: {
|
||||
fileType: 'image',
|
||||
maxCount: 1
|
||||
}
|
||||
}
|
||||
maxCount: 1,
|
||||
},
|
||||
},
|
||||
]
|
||||
|
@ -26,8 +26,8 @@ const [registerTable, { getForm, reload }] = useTable({
|
||||
width: 140,
|
||||
title: t('common.action'),
|
||||
dataIndex: 'action',
|
||||
fixed: 'right'
|
||||
}
|
||||
fixed: 'right',
|
||||
},
|
||||
})
|
||||
|
||||
function handleCreate() {
|
||||
@ -46,7 +46,7 @@ async function handleExport() {
|
||||
async onOk() {
|
||||
await exportDemo01Contact(getForm().getFieldsValue())
|
||||
createMessage.success(t('common.exportSuccessText'))
|
||||
}
|
||||
},
|
||||
})
|
||||
}
|
||||
|
||||
@ -56,14 +56,15 @@ async function handleDelete(record: Recordable) {
|
||||
reload()
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<BasicTable @register="registerTable">
|
||||
<template #toolbar>
|
||||
<a-button type="primary" v-auth="['infra:demo01-contact:create']" :preIcon="IconEnum.ADD" @click="handleCreate">
|
||||
<a-button v-auth="['infra:demo01-contact:create']" type="primary" :pre-icon="IconEnum.ADD" @click="handleCreate">
|
||||
{{ t('action.create') }}
|
||||
</a-button>
|
||||
<a-button v-auth="['infra:demo01-contact:export']" :preIcon="IconEnum.EXPORT" @click="handleExport">
|
||||
<a-button v-auth="['infra:demo01-contact:export']" :pre-icon="IconEnum.EXPORT" @click="handleExport">
|
||||
{{ t('action.export') }}
|
||||
</a-button>
|
||||
</template>
|
||||
@ -80,9 +81,9 @@ async function handleDelete(record: Recordable) {
|
||||
popConfirm: {
|
||||
title: t('common.delMessage'),
|
||||
placement: 'left',
|
||||
confirm: handleDelete.bind(null, record)
|
||||
}
|
||||
}
|
||||
confirm: handleDelete.bind(null, record),
|
||||
},
|
||||
},
|
||||
]"
|
||||
/>
|
||||
</template>
|
||||
|
@ -20,7 +20,7 @@ const [registerForm, { setFieldsValue, resetFields, resetSchema, validate }] = u
|
||||
baseColProps: { span: 24 },
|
||||
schemas: createFormSchema,
|
||||
showActionButtonGroup: false,
|
||||
actionColOptions: { span: 23 }
|
||||
actionColOptions: { span: 23 },
|
||||
})
|
||||
|
||||
const [registerModal, { setModalProps, closeModal }] = useModalInner(async (data) => {
|
||||
@ -38,19 +38,21 @@ async function handleSubmit() {
|
||||
try {
|
||||
const values = await validate()
|
||||
setModalProps({ confirmLoading: true })
|
||||
if (unref(isUpdate)) {
|
||||
if (unref(isUpdate))
|
||||
await updateDemo02Category(values)
|
||||
} else {
|
||||
else
|
||||
await createDemo02Category(values)
|
||||
}
|
||||
|
||||
closeModal()
|
||||
emit('success')
|
||||
createMessage.success(t('common.saveSuccessText'))
|
||||
} finally {
|
||||
}
|
||||
finally {
|
||||
setModalProps({ confirmLoading: false })
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<BasicModal v-bind="$attrs" :title="isUpdate ? t('action.edit') : t('action.create')" @register="registerModal" @ok="handleSubmit">
|
||||
<BasicForm @register="registerForm" />
|
||||
|
@ -6,12 +6,12 @@ export const columns: BasicColumn[] = [
|
||||
{
|
||||
title: '编号',
|
||||
dataIndex: 'id',
|
||||
width: 100
|
||||
width: 100,
|
||||
},
|
||||
{
|
||||
title: '名字',
|
||||
dataIndex: 'name',
|
||||
width: 290
|
||||
width: 290,
|
||||
},
|
||||
{
|
||||
title: '创建时间',
|
||||
@ -19,8 +19,8 @@ export const columns: BasicColumn[] = [
|
||||
width: 120,
|
||||
customRender: ({ text }) => {
|
||||
return useRender.renderDate(text)
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
]
|
||||
|
||||
export const searchFormSchema: FormSchema[] = [
|
||||
@ -28,14 +28,14 @@ export const searchFormSchema: FormSchema[] = [
|
||||
label: '名字',
|
||||
field: 'name',
|
||||
component: 'Input',
|
||||
colProps: { span: 8 }
|
||||
colProps: { span: 8 },
|
||||
},
|
||||
{
|
||||
label: '创建时间',
|
||||
field: 'createTime',
|
||||
component: 'RangePicker',
|
||||
colProps: { span: 8 }
|
||||
}
|
||||
colProps: { span: 8 },
|
||||
},
|
||||
]
|
||||
|
||||
export const createFormSchema: FormSchema[] = [
|
||||
@ -43,13 +43,13 @@ export const createFormSchema: FormSchema[] = [
|
||||
label: '编号',
|
||||
field: 'id',
|
||||
show: false,
|
||||
component: 'Input'
|
||||
component: 'Input',
|
||||
},
|
||||
{
|
||||
label: '名字',
|
||||
field: 'name',
|
||||
required: true,
|
||||
component: 'Input'
|
||||
component: 'Input',
|
||||
},
|
||||
{
|
||||
label: '父级编号',
|
||||
@ -62,11 +62,11 @@ export const createFormSchema: FormSchema[] = [
|
||||
fieldNames: {
|
||||
label: 'name',
|
||||
key: 'id',
|
||||
value: 'id'
|
||||
value: 'id',
|
||||
},
|
||||
handleTree: 'id'
|
||||
}
|
||||
}
|
||||
handleTree: 'id',
|
||||
},
|
||||
},
|
||||
]
|
||||
|
||||
export const updateFormSchema: FormSchema[] = [
|
||||
@ -74,13 +74,13 @@ export const updateFormSchema: FormSchema[] = [
|
||||
label: '编号',
|
||||
field: 'id',
|
||||
show: false,
|
||||
component: 'Input'
|
||||
component: 'Input',
|
||||
},
|
||||
{
|
||||
label: '名字',
|
||||
field: 'name',
|
||||
required: true,
|
||||
component: 'Input'
|
||||
component: 'Input',
|
||||
},
|
||||
{
|
||||
label: '父级编号',
|
||||
@ -93,9 +93,9 @@ export const updateFormSchema: FormSchema[] = [
|
||||
parentLabel: '顶级示例分类',
|
||||
label: 'name',
|
||||
key: 'id',
|
||||
value: 'id'
|
||||
value: 'id',
|
||||
},
|
||||
handleTree: 'id'
|
||||
}
|
||||
}
|
||||
handleTree: 'id',
|
||||
},
|
||||
},
|
||||
]
|
||||
|
@ -1,4 +1,5 @@
|
||||
<script lang="ts" setup>
|
||||
import { nextTick } from 'vue'
|
||||
import Demo02CategoryModal from './Demo02CategoryModal.vue'
|
||||
import { columns, searchFormSchema } from './demo02Category.data'
|
||||
import { useI18n } from '@/hooks/web/useI18n'
|
||||
@ -8,7 +9,6 @@ import { BasicTable, TableAction, useTable } from '@/components/Table'
|
||||
import { deleteDemo02Category, exportDemo02Category, getDemo02CategoryPage } from '@/api/infra/demo/demo02'
|
||||
import { IconEnum } from '@/enums/appEnum'
|
||||
import { handleTree } from '@/utils/tree'
|
||||
import { nextTick } from 'vue'
|
||||
|
||||
defineOptions({ name: 'Demo02Category' })
|
||||
|
||||
@ -31,8 +31,8 @@ const [registerTable, { expandAll, collapseAll, getForm, reload }] = useTable({
|
||||
width: 140,
|
||||
title: t('common.action'),
|
||||
dataIndex: 'action',
|
||||
fixed: 'right'
|
||||
}
|
||||
fixed: 'right',
|
||||
},
|
||||
})
|
||||
|
||||
async function getList() {
|
||||
@ -60,7 +60,7 @@ async function handleExport() {
|
||||
async onOk() {
|
||||
await exportDemo02Category(getForm().getFieldsValue())
|
||||
createMessage.success(t('common.exportSuccessText'))
|
||||
}
|
||||
},
|
||||
})
|
||||
}
|
||||
|
||||
@ -70,18 +70,23 @@ async function handleDelete(record: Recordable) {
|
||||
reload()
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<BasicTable @register="registerTable" @fetch-success="onFetchSuccess">
|
||||
<template #toolbar>
|
||||
<a-button type="primary" v-auth="['infra:demo02-category:create']" :preIcon="IconEnum.ADD" @click="handleCreate">
|
||||
<a-button v-auth="['infra:demo02-category:create']" type="primary" :pre-icon="IconEnum.ADD" @click="handleCreate">
|
||||
{{ t('action.create') }}
|
||||
</a-button>
|
||||
<a-button v-auth="['infra:demo02-category:export']" :preIcon="IconEnum.EXPORT" @click="handleExport">
|
||||
<a-button v-auth="['infra:demo02-category:export']" :pre-icon="IconEnum.EXPORT" @click="handleExport">
|
||||
{{ t('action.export') }}
|
||||
</a-button>
|
||||
<a-button type="dashed" @click="expandAll">{{ t('component.tree.expandAll') }}</a-button>
|
||||
<a-button type="dashed" @click="collapseAll">{{ t('component.tree.unExpandAll') }}</a-button>
|
||||
<a-button type="dashed" @click="expandAll">
|
||||
{{ t('component.tree.expandAll') }}
|
||||
</a-button>
|
||||
<a-button type="dashed" @click="collapseAll">
|
||||
{{ t('component.tree.unExpandAll') }}
|
||||
</a-button>
|
||||
</template>
|
||||
<template #bodyCell="{ column, record }">
|
||||
<template v-if="column.key === 'action'">
|
||||
@ -91,7 +96,7 @@ async function handleDelete(record: Recordable) {
|
||||
icon: IconEnum.EDIT,
|
||||
label: t('action.edit'),
|
||||
auth: 'infra:demo02-category:update',
|
||||
onClick: handleEdit.bind(null, record)
|
||||
onClick: handleEdit.bind(null, record),
|
||||
},
|
||||
{
|
||||
icon: IconEnum.DELETE,
|
||||
@ -101,9 +106,9 @@ async function handleDelete(record: Recordable) {
|
||||
popConfirm: {
|
||||
title: t('common.delMessage'),
|
||||
placement: 'left',
|
||||
confirm: handleDelete.bind(null, record)
|
||||
}
|
||||
}
|
||||
confirm: handleDelete.bind(null, record),
|
||||
},
|
||||
},
|
||||
]"
|
||||
/>
|
||||
</template>
|
||||
|
@ -1,6 +1,7 @@
|
||||
<script setup lang="ts">
|
||||
import { DocAlert } from '@/components/DocAlert'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<DocAlert title="代码生成(主子表)" url="https://doc.iocoder.cn/new-feature/master-sub/" />
|
||||
@ -8,9 +9,9 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/infra/demo/demo03/erp/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/infra/demo/demo03/erp/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
</div>
|
||||
</template>
|
||||
</template>
|
||||
|
@ -1,6 +1,7 @@
|
||||
<script setup lang="ts">
|
||||
import { DocAlert } from '@/components/DocAlert'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<DocAlert title="代码生成(主子表)" url="https://doc.iocoder.cn/new-feature/master-sub/" />
|
||||
@ -8,9 +9,9 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/infra/demo/demo03/inner/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/infra/demo/demo03/inner/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
</div>
|
||||
</template>
|
||||
</template>
|
||||
|
@ -1,6 +1,7 @@
|
||||
<script setup lang="ts">
|
||||
import { DocAlert } from '@/components/DocAlert'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<DocAlert title="代码生成(主子表)" url="https://doc.iocoder.cn/new-feature/master-sub/" />
|
||||
@ -8,9 +9,9 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/infra/demo/demo03/normal/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/infra/demo/demo03/normal/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
</div>
|
||||
</template>
|
||||
</template>
|
||||
|
@ -32,7 +32,7 @@ onMounted(async () => {
|
||||
|
||||
<template>
|
||||
<div class="p-4">
|
||||
<div class="-mr-4 -ml-4 mb-4">
|
||||
<div class="mb-4 -ml-4 -mr-4">
|
||||
<DocAlert title="Redis 缓存" url="https://doc.iocoder.cn/redis-cache/" />
|
||||
<DocAlert title="本地缓存" url="https://doc.iocoder.cn/local-cache/" />
|
||||
</div>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/home/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/home/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/product/brand/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/product/brand/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/product/category/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/product/category/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/product/comment/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/product/comment/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/product/property/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/product/property/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/product/spu/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/product/spu/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/promotion/article/category/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/promotion/article/category/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/promotion/article/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/promotion/article/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/promotion/banner/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/promotion/banner/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/promotion/bargain/activity/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/promotion/bargain/activity/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/promotion/bargain/record/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/promotion/bargain/record/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/promotion/combination/activity/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/promotion/combination/activity/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/promotion/combination/activity/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/promotion/combination/activity/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/promotion/coupon/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/promotion/coupon/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/promotion/coupon/template/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/promotion/coupon/template/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/promotion/discountActivity/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/promotion/discountActivity/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,7 +9,7 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/promotion/diy/page/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/promotion/diy/page/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
|
@ -9,8 +9,8 @@ import { DocAlert } from '@/components/DocAlert'
|
||||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||||
该功能支持 Vue3 + element-plus 版本!
|
||||
</a-button>
|
||||
<br />
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/promotion/diy/template/index.vue">
|
||||
<br>
|
||||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/promotion/diy/template/index.vue">
|
||||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/promotion/diy/template/index.vue 代码,pull request 贡献给我们!
|
||||
</a-button>
|
||||
</div>
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user