增加了 插件调试模式的 两个菜单接口的本地代理,以免不必要的跨域

This commit is contained in:
hawk86104 2025-03-02 09:21:37 +08:00
parent de6a80ac4b
commit e8442aa1a1
4 changed files with 57 additions and 55 deletions

View File

@ -4,7 +4,7 @@
* @Autor: 地虎降天龙
* @Date: 2023-10-16 10:53:09
* @LastEditors: 地虎降天龙
* @LastEditTime: 2025-03-02 08:57:12
* @LastEditTime: 2025-03-02 09:11:47
*/
// import { resolve } from 'path';
import { join } from 'path'
@ -97,13 +97,6 @@ export default defineBuildConfig({
},
server: {
host: '0.0.0.0',
// proxy: { // 开发代理服务器配置
// '/api': {
// target: 'https://www.icegl.cn/',
// changeOrigin: true,
// rewrite: (path) => path.replace(/^\/api/, ''),
// },
// },
},
},
alias: { PLS: join(__dirname, './src/plugins') },

View File

@ -4,7 +4,7 @@
* @Autor: 地虎降天龙
* @Date: 2023-10-16 10:53:09
* @LastEditors: 地虎降天龙
* @LastEditTime: 2024-08-14 10:58:20
* @LastEditTime: 2025-03-02 09:12:55
*/
import { defineBuildConfig } from '@fesjs/fes'
import addExtraScriptPlugin from './src/common/addExtraScriptPlugin'
@ -88,5 +88,14 @@ export default defineBuildConfig({
},
viteOption: {
plugins: [addExtraScriptPlugin()],
server: {
proxy: { // 开发代理服务器配置
'/api': {
target: 'https://www.icegl.cn/',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, ''),
},
},
},
},
})

View File

@ -4,7 +4,7 @@
* @Autor: 地虎降天龙
* @Date: 2023-10-16 10:53:09
* @LastEditors: 地虎降天龙
* @LastEditTime: 2024-11-15 11:14:40
* @LastEditTime: 2025-03-02 09:19:51
*/
// 放工具函数
import { request } from '@fesjs/fes'
@ -57,7 +57,7 @@ export const getPluginsConfig = () => {
}
// 警告函数
function showWarning () {
function showWarning() {
FMessage.warning?.({
content: '官网已经更新的插件功能请git 更新代码!',
colorful: true,
@ -100,7 +100,7 @@ const formatMenu = (online, local) => {
export const getOnlinePluginConfig = (plConfig) => {
request(
'https://www.icegl.cn/addons/tvt/index/getRelaseMenuList',
`${process.env.NODE_ENV === 'development' ? 'api' : 'https://www.icegl.cn'}/addons/tvt/index/getRelaseMenuList`,
{},
{
method: 'get',
@ -116,11 +116,11 @@ export const getOnlinePluginConfig = (plConfig) => {
}
// 通过名称查找预览配置
function findPreviewByName (previews, name) {
function findPreviewByName(previews, name) {
return previews.find((preview) => preview.name === name)
}
// 在子配置中查找预览配置
function findChildPreviewByName (children, childName, previewName) {
function findChildPreviewByName(children, childName, previewName) {
const child = children.find((chi) => chi.name === childName)
if (child && child.preview) {
return child.preview.find((preview) => preview.name === previewName)

View File

@ -4,54 +4,54 @@
* @Autor: 地虎降天龙
* @Date: 2023-10-21 15:34:19
* @LastEditors: 地虎降天龙
* @LastEditTime: 2024-08-14 09:41:19
* @LastEditTime: 2025-03-02 09:20:26
*/
import { reactive } from 'vue'
import { access, request } from '@fesjs/fes'
export default function userModel () {
const user = reactive({ userName: '' })
export default function userModel() {
const user = reactive({ userName: '' })
const signin = () => {
const { setRole } = access
user.userName = ''
setRole('admin')
}
const signin = () => {
const { setRole } = access
user.userName = ''
setRole('admin')
}
const signout = () => {
}
const signout = () => {}
const menuSetup = reactive([])
const menuSetup = reactive([])
const getMenu = () => {
request(
'https://www.icegl.cn/addons/tvt/index/getMenuSetup', {},
{
method: 'get',
},
)
.then((res) => {
const arrObject = {}
res.code.menuSetup.forEach(item => {
const { m1text, m2text } = item
if (!arrObject[m1text]) {
arrObject[m1text] = {}
}
arrObject[m1text][m2text] = item
})
menuSetup.value = arrObject
})
.catch((err) => {
// 处理异常
console.log(err, '请连接网络,获得样例的更新')
})
}
const getMenu = () => {
request(
`${process.env.NODE_ENV === 'development' ? 'api' : 'https://www.icegl.cn'}/addons/tvt/index/getMenuSetup`,
{},
{
method: 'get',
},
)
.then((res) => {
const arrObject = {}
res.code.menuSetup.forEach((item) => {
const { m1text, m2text } = item
if (!arrObject[m1text]) {
arrObject[m1text] = {}
}
arrObject[m1text][m2text] = item
})
menuSetup.value = arrObject
})
.catch((err) => {
// 处理异常
console.log(err, '请连接网络,获得样例的更新')
})
}
return {
user,
signin,
signout,
menuSetup,
getMenu
}
return {
user,
signin,
signout,
menuSetup,
getMenu,
}
}