feat: 车辆管理,原材料盘点,合同审核模块
This commit is contained in:
parent
8770ef36a7
commit
a3a0246c35
|
@ -1,20 +1,20 @@
|
|||
{
|
||||
"Vue3.3+defineOptions快速生成模板": {
|
||||
"scope": "vue",
|
||||
"prefix": "Vue3.3+",
|
||||
"prefix": "v3init",
|
||||
"body": [
|
||||
"<template>",
|
||||
"\t<div>test</div>",
|
||||
"</template>\n",
|
||||
"<script setup lang='ts'>",
|
||||
"defineOptions({",
|
||||
"\tname: '${TM_FILENAME_BASE}'",
|
||||
"})",
|
||||
"</script>\n",
|
||||
"<template>",
|
||||
"\t<div>test</div>",
|
||||
"</template>\n",
|
||||
"<style lang='less' scoped>\n",
|
||||
"</style>",
|
||||
"$2"
|
||||
"$2",
|
||||
],
|
||||
"description": "Vue3.3+defineOptions快速生成模板"
|
||||
}
|
||||
"description": "Vue3.3+defineOptions快速生成模板",
|
||||
},
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import { defineComponent } from 'vue';
|
||||
|
||||
import { GithubOutlined, CopyrightOutlined } from '@ant-design/icons-vue';
|
||||
import { CopyrightOutlined } from '@ant-design/icons-vue';
|
||||
import { Layout } from 'ant-design-vue';
|
||||
import styles from './index.module.less';
|
||||
|
||||
|
@ -13,22 +13,13 @@ export default defineComponent({
|
|||
return () => (
|
||||
<>
|
||||
<a-layout-footer class={styles.page_footer}>
|
||||
<div class={styles.page_footer_link}>
|
||||
<a href="https://github.com/vuejs/vue-next" target="_blank">
|
||||
vue 3.0
|
||||
</a>
|
||||
<a href="https://github.com/buqiyuan" target="_blank">
|
||||
<GithubOutlined />
|
||||
</a>
|
||||
<a href="https://github.com/vueComponent/ant-design-vue" target="_blank">
|
||||
{' '}
|
||||
ant-design-vue 2.0
|
||||
</a>
|
||||
</div>
|
||||
<div class={styles.copyright}>
|
||||
Copyright <CopyrightOutlined /> 2020
|
||||
<a href="https://buqiyuan.gitee.io" target="_blank">
|
||||
buqiyuan.gitee.io
|
||||
Copyright <CopyrightOutlined /> 2024
|
||||
<a
|
||||
href="http://www.sdkjjt.com/index.php?m=content&c=index&a=lists&catid=97"
|
||||
target="_blank"
|
||||
>
|
||||
华信智能科技
|
||||
</a>
|
||||
</div>
|
||||
</a-layout-footer>
|
||||
|
|
|
@ -0,0 +1,11 @@
|
|||
<template>
|
||||
<div>test</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
defineOptions({
|
||||
name: 'Contract',
|
||||
});
|
||||
</script>
|
||||
|
||||
<style lang="less" scoped></style>
|
|
@ -0,0 +1,11 @@
|
|||
<template>
|
||||
<div>Meterials Inventory</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
defineOptions({
|
||||
name: 'MeterialsInventory',
|
||||
});
|
||||
</script>
|
||||
|
||||
<style lang="less" scoped></style>
|
|
@ -0,0 +1,7 @@
|
|||
<template><div>车辆使用</div></template>
|
||||
<script setup lang="ts">
|
||||
defineOptions({
|
||||
name: 'VehicleUsage',
|
||||
});
|
||||
</script>
|
||||
<style scoped lang="less"></style>
|
|
@ -111,13 +111,11 @@ export default ({ command, mode }: ConfigEnv): UserConfig => {
|
|||
port: 8088,
|
||||
proxy: {
|
||||
'/api': {
|
||||
// target: 'https://nest-api.buqiyuan.site',
|
||||
target: 'http://127.0.0.1:7001',
|
||||
changeOrigin: true,
|
||||
rewrite: (path) => path.replace(/^\/api/, ''),
|
||||
},
|
||||
'/upload': {
|
||||
// target: 'hhttps://nest-api.buqiyuan.site/upload',
|
||||
target: 'http://127.0.0.1:7001/upload',
|
||||
changeOrigin: true,
|
||||
ws: true,
|
||||
|
|
Loading…
Reference in New Issue