feat(house): 添加房源卖价和总价功能并优化分享流程
- 在房源添加页面添加卖价(元/平)和总价(万)输入字段 - 实现卖价变动时总价自动计算功能 - 在房源详情页显示卖价和总价信息 - 调整物业费显示位置提升界面布局合理性 - 更新服务器配置地址从gxwebsoft.com到websoft.top - 替换必看好房标签为特价好房标签统一显示 - 修复房源详情页分享功能和海报生成流程 - 添加跟进记录页面和相应跳转功能 - 优化房源管理页面删除按钮显示逻辑 - 实现闪屏页跳过功能和登录状态记忆 - 添加房源海报生成组件支持分享推广 - 修复分享路径参数传递和用户信息存储
This commit is contained in:
@@ -8,22 +8,12 @@ module.exports = {
|
||||
// 应用秘钥
|
||||
appSecret: '1f1d186d98ea4620ac65afbf34940051',
|
||||
|
||||
// 开发环境
|
||||
// apiUrl: "http://127.0.0.1:9095/api",
|
||||
// socketUrl: 'ws://localhost:9190',
|
||||
// fileUrl: 'https://file.wsdns.cn',
|
||||
// apiUrl: "http://47.119.165.234:5483/api",
|
||||
|
||||
|
||||
// 测试环境
|
||||
// apiUrl: 'https://server.gxwebsoft.com/api',
|
||||
// socketUrl: 'wss://server.gxwebsoft.com',
|
||||
fileUrl: 'https://file.wsdns.cn',
|
||||
|
||||
// 生产环境
|
||||
serverUrl: 'https://server.gxwebsoft.com/api',
|
||||
serverUrl: 'https://server.websoft.top/api',
|
||||
apiUrl: 'https://cms-api.websoft.top/api',
|
||||
socketUrl: 'wss://server.gxwebsoft.com',
|
||||
socketUrl: 'wss://server.websoft.top',
|
||||
|
||||
// fileUrl: 'https://oss.jimeigroup.cn',
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ import http from './index.js';
|
||||
export const ServerTime = () => http.post('http://127.0.0.1:9090/hxz/v1/ServerTime')
|
||||
|
||||
export const QRCodeTransaction = (data) => http.post('http://127.0.0.1:9090/hxz/v1/QRCodeTransaction',data)
|
||||
export const QRCodeTransaction2 = (data) => http.post('https://server.gxwebsoft.com/hxz/v1/QRCodeTransaction',data)
|
||||
export const QRCodeTransaction2 = (data) => http.post('https://server.websoft.top/hxz/v1/QRCodeTransaction',data)
|
||||
export const TransactionInquiry = (data) => http.post('http://127.0.0.1:9090/hxz/v1/TransactionInquiry',data)
|
||||
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ import appConfig from '@/config.js'
|
||||
// export const uploadFile = (file) => http.upload(fileUrl + '/api/file/upload', file)
|
||||
|
||||
// 阿里云OSS
|
||||
export const uploadFile = (file) => http.upload('https://server.gxwebsoft.com/api/oss/upload', file)
|
||||
export const uploadFile = (file) => http.upload('https://server.websoft.top/api/oss/upload', file)
|
||||
// export const uploadFile = async ({filePath}) => {
|
||||
|
||||
// // 获取临时凭证
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import http from './index.js';
|
||||
|
||||
// 获取用户资料
|
||||
export const getUser = (params) => http.get('https://server.gxwebsoft.com/api/auth/user', {params})
|
||||
export const getUser = (params) => http.get('https://server.websoft.top/api/auth/user', {params})
|
||||
|
||||
// 修改用户资料
|
||||
export const updateUser = (data) => http.put('/system/user', data)
|
||||
|
||||
Reference in New Issue
Block a user