1.报事报修接口联调

This commit is contained in:
2025-08-08 11:31:41 +08:00
parent c560b34bf1
commit f3b45139e4
15 changed files with 1232 additions and 766 deletions

View File

@@ -24,6 +24,7 @@ const config = {
}
// 设置后台接口服务的基础地址
config.baseUrl = 'http://tc.cqsznc.com:7080/api';
// config.baseUrl = 'http://tc.cqsznc.com:7080/api';
config.baseUrl = 'http://3deb348c.r28.cpolar.top';
export default config;

View File

@@ -22,6 +22,11 @@ const install = (Vue, vm) => {
//报事报修
getOrderList:(params = {})=>vm.$u.get(config.adminPath+'/property/workOrders/list',params),
getOrdersType:(params = {})=>vm.$u.get(config.adminPath+'/property/workOrdersType/list',params),
getRepairTypes:(params = {})=>vm.$u.get(config.adminPath+'/property/workOrdersType/queryList',params),
addOrder:(params = {})=>vm.$u.post(config.adminPath+'/property/workOrders',params),
addOrder2:(params = {})=>vm.$u.post(config.adminPath+'/property/mobile/workOrders',params),
updateOrder:(params = {})=>vm.$u.put(config.adminPath+'/property/workOrders',params),
//会议列表
getMeetings:(params = {})=>vm.$u.get(config.adminPath+'/property/roomBooking/list',params),