chore: 批量更新 vtj 低代码引擎依赖

This commit is contained in:
wangxuefeng
2025-02-27 16:40:08 +08:00
parent 8e6d5887ac
commit 0c0ce0697f
7 changed files with 124 additions and 208 deletions

View File

@@ -16,17 +16,17 @@
"clean": "rimraf node_modules"
},
"dependencies": {
"@vtj/core": "^0.10.4",
"@vtj/designer": "0.10.4",
"@vtj/icons": "0.10.4",
"@vtj/local": "^0.10.4",
"@vtj/materials": "^0.10.4",
"@vtj/core": "^0.10.5",
"@vtj/designer": "0.10.5",
"@vtj/icons": "0.10.5",
"@vtj/local": "^0.10.5",
"@vtj/materials": "^0.10.5",
"@vtj/node": "0.10.1",
"@vtj/pro": "^0.10.4",
"@vtj/renderer": "^0.10.4",
"@vtj/ui": "^0.10.4",
"@vtj/utils": "0.10.4",
"@vtj/web": "^0.10.4",
"@vtj/pro": "^0.10.5",
"@vtj/renderer": "^0.10.5",
"@vtj/ui": "^0.10.5",
"@vtj/utils": "0.10.5",
"@vtj/web": "^0.10.5",
"element-plus": "^2.9.4",
"licia-es": "^1.46.0",
"vue": "~3.5.13",

View File

@@ -1,11 +0,0 @@
import { request } from '@/utils/request';
export type DictType = 'gender' | 'sell_status';
export async function getDictData(params: { type: DictType }) {
return request<LabelValueOptions>({
url: '/dict/data',
method: 'GET',
params,
});
}

View File

@@ -1,33 +0,0 @@
import { request } from '@/utils/request';
/**
* @description 获取王者荣耀英雄列表
*/
export function getWzryHeroList(query: API.PageParams) {
return request({
url: '/demo/wzry/hero_list',
method: 'get',
params: query,
});
}
/**
* @description 获取英雄联盟英雄列表
*/
export function getLolHeroList(query: API.PageParams) {
return request({
url: '/demo/lol/hero_list',
method: 'get',
params: query,
});
}
/**
* @description 获取英雄联盟英雄列表
*/
export function getLolHeroInfo({ id }) {
return request({
url: `/demo/lol/hero_info/${id}`,
method: 'get',
});
}

View File

@@ -1,14 +0,0 @@
import { request } from '@/utils/request';
interface DemoOptionsItem {
name: string;
id: string;
}
export async function optionsListApi(params?: Recordable) {
return request<DemoOptionsItem[]>({
url: '/select/getDemoOptions',
method: 'GET',
params,
});
}

View File

@@ -1,26 +0,0 @@
import { request } from '@/utils/request';
enum Api {
Login = '/boyanghu/iotree-service/platform/login',
}
/**
* @description: 登录接口参数
*/
export interface LoginParams {
phone: string;
password?: string;
code?: string;
type: number; // 0短信 1密码
}
/**
* @description: 用户登录
*/
export function loginApi(params: LoginParams) {
return request({
url: Api.Login,
method: 'POST',
data: params,
});
}

View File

@@ -16,10 +16,10 @@
"@iframe-resizer/child": "^5.3.3",
"@sy/low-code-shared": "workspace:*",
"@sy/web-vitals": "workspace:*",
"@vtj/core": "^0.10.4",
"@vtj/icons": "0.10.4",
"@vtj/materials": "^0.10.4",
"@vtj/renderer": "^0.10.4",
"@vtj/core": "^0.10.5",
"@vtj/icons": "0.10.5",
"@vtj/materials": "^0.10.5",
"@vtj/renderer": "^0.10.5",
"core-js": "^3.40.0",
"element-plus": "^2.9.4",
"licia-es": "^1.46.0",
@@ -31,7 +31,7 @@
"@farmfe/cli": "^1.0.4",
"@farmfe/core": "^1.6.6",
"@sy/vite-plugin-http2-proxy": "workspace:*",
"vite-plugin-mkcert": "^1.17.6",
"@vitejs/plugin-vue": "^5.2.1"
"@vitejs/plugin-vue": "^5.2.1",
"vite-plugin-mkcert": "^1.17.6"
}
}