feat: 添加投标项目查看器的Ionic移动端应用
新增基于Ionic + Vue 3 + TypeScript + Tailwind CSS的移动端应用,适配Android平台。主要功能包括AI推荐项目展示、爬虫信息统计、置顶项目管理和下拉刷新功能。同时更新前后端API端口配置为3300。
This commit is contained in:
@@ -25,6 +25,8 @@ async function bootstrap() {
|
||||
const httpAdapter = app.getHttpAdapter();
|
||||
httpAdapter.getInstance().set('trust proxy', true);
|
||||
|
||||
await app.listen(process.env.PORT ?? 3000);
|
||||
const host = process.env.HOST ?? '0.0.0.0';
|
||||
const port = process.env.PORT ? parseInt(process.env.PORT, 10) : 3000;
|
||||
await app.listen(port, host);
|
||||
}
|
||||
void bootstrap();
|
||||
|
||||
@@ -19,8 +19,8 @@ async function updateSource() {
|
||||
getRepositoryToken(BidItem),
|
||||
);
|
||||
|
||||
const oldSource = '北京电力交易平台';
|
||||
const newSource = '北京京能电子商务平台';
|
||||
const oldSource = '电能e招采平台';
|
||||
const newSource = '电能e招采平台(国电投)';
|
||||
|
||||
logger.log(`开始更新 source 字段: "${oldSource}" -> "${newSource}"`);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user