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