Files
oa-vue/index.html
赵忠林 a540b1fcb0 feat(house): 添加房源类型筛选功能
- 在 houseInfo 组件中新增 type 参数用于筛选房源类型
- 更新 houseInfoEdit 组件以支持传递和显示房源类型
- 修改接口模型增加 type 字段定义
- 调整页面布局及样式以适应新字段展示需求
- 配置开发环境 API 地址并更新相关组件请求路径
- 引入路由监听实现动态类型查询
- 优化表格行键值确保唯一性
- 更新系统设置中微信相关的域名配置为本地地址
- 修改文件上传接口地址为本地服务
- 调整项目库组件中的 ID 键名以匹配后端返回结构
- 移除冗余的表单字段声明提升代码整洁度
- 更新
2025-12-10 16:40:59 +08:00

74 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>网宿软件</title>
<style>
.ele-admin-loading {
width: 36px;
font-size: 0;
display: inline-block;
transform: rotate(45deg);
animation: loadingRotate 1.2s infinite linear;
position: relative;
top: calc(50% - 18px);
left: calc(50% - 18px);
}
.ele-admin-loading span {
width: 10px;
height: 10px;
margin: 4px;
border-radius: 50%;
background: #1890ff;
display: inline-block;
opacity: 0.9;
}
.ele-admin-logo-auto.ele-admin-layout .ele-admin-logo{
padding: 0 12px 0 12px !important;
}
.ele-admin-loading span:nth-child(2) {
opacity: 0.7;
}
.ele-admin-loading span:nth-child(3) {
opacity: 0.5;
}
.ele-admin-loading span:nth-child(4) {
opacity: 0.3;
}
@keyframes loadingRotate {
to {
transform: rotate(405deg);
}
}
#app > .ele-admin-loading {
position: fixed;
}
</style>
</head>
<body>
<div id="app">
<div class="ele-admin-loading">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
<script
async
defer
id="sqlbot-assistant-float-script-7400549959767953408"
src="https://sql-bot.websoft.top/assistant.js?id=7400549959767953408"></script>
</body>
</html>