作者 xiaoqiu

完成模版创建

... ... @@ -8,4 +8,4 @@ VITE_APP_ENV = 'development'
VITE_APP_BASE_API = '/dev-api'
# 开打新的tab的url前缀
VITE_APP_TAB_URL_PREFIX = http://bxhd.crgx.net
VITE_APP_TAB_URL_PREFIX = 'http://bxhd.crgx.net'
... ...
... ... @@ -11,4 +11,4 @@ VITE_APP_BASE_API = '/prod-api'
VITE_BUILD_COMPRESS = gzip
# 开打新的tab的url前缀
VITE_APP_TAB_URL_PREFIX = http://bxhd.crgx.net
\ No newline at end of file
VITE_APP_TAB_URL_PREFIX = 'http://bxhd.crgx.net'
\ No newline at end of file
... ...
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1726716988128" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2443" xmlns:xlink="http://www.w3.org/1999/xlink" width="128" height="128"><path d="M955.541327 521.603729c-2.495844 3.162016-6.212492 4.703115-10.095939 4.618181l0 0L840.02643 526.22191l0 418.273339c0 8.209986-6.658653 14.951527-14.925944 14.951527L615.762737 959.446775c-8.237615 0-14.923898-6.741541-14.923898-14.951527l0-298.692846L421.407214 645.802402l0 298.692846c0 8.209986-6.686283 14.951527-14.924921 14.951527l-209.337749 0c-4.106528 0-7.850805-1.719154-10.5421-4.439102-2.716878-2.689249-4.381797-6.436596-4.381797-10.512425L182.220646 526.222933 77.494467 526.222933l0-0.026606c-3.799536-0.028653-7.628748-1.582031-10.568706-4.591575-5.715165-5.963829-5.825682-15.300474 0-21.139459l433.738565-432.767448c5.852288-5.838985 15.313777-5.838985 21.165042 0l433.711959 432.767448C961.394638 506.304278 960.646602 515.098571 955.541327 521.603729zM511.234055 99.336426 113.837186 495.90237l83.307358-0.056282 0 0.596588c2.081405 0 4.050246 0.416486 5.826705 1.151219 5.380544 2.288113 9.153474 7.586792 9.153474 13.772678l0 418.176125 179.37739 0L391.502114 630.878504c0-8.267291 6.713912-14.94027 14.980179-14.94027l209.281467 0c8.267291 0 14.983249 6.67298 14.983249 14.94027l0 298.664194 179.403996 0L810.151006 511.366573c0-6.185886 3.744277-11.485589 9.126868-13.772678 1.77339-0.734734 3.773953-1.151219 5.822612-1.151219l0-1.067308 82.948177-0.082888L511.234055 99.336426z" fill="#ffffff" p-id="2444"></path></svg>
\ No newline at end of file
... ...
import { createWebHistory, createRouter } from 'vue-router'
import { createWebHashHistory, createRouter } from 'vue-router'
/* Layout */
import Layout from '@/layout'
... ... @@ -161,7 +161,7 @@ export const dynamicRoutes = [
]
const router = createRouter({
history: createWebHistory(),
history: createWebHashHistory(import.meta.env.BASE_URL),
routes: constantRoutes,
scrollBehavior(to, from, savedPosition) {
if (savedPosition) {
... ...
<template>
<div>审核名单</div>
</template>
<script>
export default {};
</script>
<style></style>
... ...
<template>
<div>承保公司名单</div>
</template>
<script>
export default {};
</script>
<style></style>
... ...
<template>
<div>配置规则</div>
</template>
<script>
export default {};
</script>
<style></style>
... ...
<template>
<div>已作废</div>
</template>
<script>
export default {};
</script>
<style></style>
... ...
<template>
<div>已完结</div>
</template>
<script>
export default {};
</script>
<style></style>
... ...
<template>
<div>进行中</div>
</template>
<script>
export default {};
</script>
<style></style>
... ...
<template>
<div>待处理</div>
</template>
<script>
export default {};
</script>
<style></style>
... ...
<template>
<div>已处理</div>
</template>
<script>
export default {};
</script>
<style></style>
... ...
<template>
<div>保单报表</div>
</template>
<script>
export default {};
</script>
<style></style>
... ...
... ... @@ -10,7 +10,7 @@ export default defineConfig(({ mode, command }) => {
// 部署生产环境和开发环境下的URL。
// 默认情况下,vite 会假设你的应用是被部署在一个域名的根路径上
// 例如 https://www.ruoyi.vip/。如果应用被部署在一个子路径上,你就需要用这个选项指定这个子路径。例如,如果你的应用被部署在 https://www.ruoyi.vip/admin/,则设置 baseUrl 为 /admin/。
base: VITE_APP_ENV === 'production' ? '/' : '/',
base: VITE_APP_ENV === 'production' ? './' : './',
plugins: createVitePlugins(env, command === 'build'),
resolve: {
// https://cn.vitejs.dev/config/#resolve-alias
... ...