This commit is contained in:
weipengfei 2023-09-04 11:13:02 +08:00
parent 6a81e659ef
commit 720dbbc17b
5 changed files with 7 additions and 2 deletions

3
.env.work Normal file
View File

@ -0,0 +1,3 @@
NODE_ENV = 'work'
VITE_APP_BASE_URL = 'https://worker-task.lihaink.cn/'

BIN
dist.rar Normal file

Binary file not shown.

View File

@ -4,10 +4,12 @@
"license": "MIT",
"scripts": {
"dev": "vite",
"work": "vite --mode work",
"prod": "vite --mode production",
"preview": "vite preview --port 4173",
"build": "vite build && node scripts/release.mjs",
"build:prod": "vite build --mode production && node scripts/release.mjs",
"build:work": "vite build --mode production && node scripts/release.mjs",
"type-check": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
},

View File

@ -3,7 +3,7 @@ const config = {
title: "后台管理系统", //网站默认标题
version: "1.6.0", //版本号
baseUrl: `${
import.meta.env.VITE_APP_BASE_URL || "https://ceshi-worker-task.lihaink.cn"
import.meta.env.VITE_APP_BASE_URL
}/`, //请求接口域名
urlPrefix: "adminapi", //请求默认前缀
timeout: 10 * 1000, //请求超时时长

View File

@ -91,7 +91,7 @@
<el-button type="primary" link>
<router-link
:to="{
path: 'contract.contract/vehicle_detail',
path: 'vehicle_detail',
query: {
id: row.id,
},