|
@@ -5,15 +5,13 @@ import { tansParams, blobValidate } from "@/utils/ruoyi";
|
|
import cache from "@/plugins/cache";
|
|
import cache from "@/plugins/cache";
|
|
import { Notification, MessageBox, Message, Loading } from "element-ui";
|
|
import { Notification, MessageBox, Message, Loading } from "element-ui";
|
|
import { saveAs } from "file-saver";
|
|
import { saveAs } from "file-saver";
|
|
-import { getToken } from "@/utils/auth";
|
|
|
|
axios.defaults.headers["Content-Type"] = "application/json;charset=utf-8";
|
|
axios.defaults.headers["Content-Type"] = "application/json;charset=utf-8";
|
|
-
|
|
|
|
// 是否显示重新登录
|
|
// 是否显示重新登录
|
|
export let isReloginShow = false;
|
|
export let isReloginShow = false;
|
|
// 创建axios实例
|
|
// 创建axios实例
|
|
const request = axios.create({
|
|
const request = axios.create({
|
|
// axios中请求配置有baseURL选项,表示请求URL公共部分
|
|
// axios中请求配置有baseURL选项,表示请求URL公共部分
|
|
- baseURL: window.axiosURI,
|
|
|
|
|
|
+ baseURL: window.ZTaxiosURI,
|
|
//baseURL: "http://192.168.100.252:8080",
|
|
//baseURL: "http://192.168.100.252:8080",
|
|
// 超时
|
|
// 超时
|
|
timeout: 100000,
|
|
timeout: 100000,
|
|
@@ -22,8 +20,6 @@ const request = axios.create({
|
|
// request拦截器
|
|
// request拦截器
|
|
request.interceptors.request.use(
|
|
request.interceptors.request.use(
|
|
(config) => {
|
|
(config) => {
|
|
- //代码防止重复提交会导致浏览器内存溢出,因此没在这添加判断
|
|
|
|
- config.headers['Authorization'] = 'Bearer ' + getToken() // 让每个请求携带自定义token 请根据实际情况自行修改
|
|
|
|
// 是否需要防止数据重复提交
|
|
// 是否需要防止数据重复提交
|
|
const isRepeatSubmit = (config.headers || {}).repeatSubmit === false;
|
|
const isRepeatSubmit = (config.headers || {}).repeatSubmit === false;
|
|
// get请求映射params参数
|
|
// get请求映射params参数
|
|
@@ -165,7 +161,7 @@ request.interceptors.response.use(
|
|
*/
|
|
*/
|
|
export async function getJZDJWord(data) {
|
|
export async function getJZDJWord(data) {
|
|
let response = await request({
|
|
let response = await request({
|
|
- url: "/model/exportWord/exportWord4",
|
|
|
|
|
|
+ url: "/sanya/exportWord/exportWord4",
|
|
method: "post",
|
|
method: "post",
|
|
responseType: "blob",
|
|
responseType: "blob",
|
|
data: data,
|
|
data: data,
|
|
@@ -200,7 +196,7 @@ export async function getJZDJWord(data) {
|
|
*/
|
|
*/
|
|
export async function getZDBCWord(data) {
|
|
export async function getZDBCWord(data) {
|
|
let response = await request({
|
|
let response = await request({
|
|
- url: "/model/exportWord/exportWord3",
|
|
|
|
|
|
+ url: "/sanya/exportWord/exportWord3",
|
|
method: "post",
|
|
method: "post",
|
|
responseType: "blob",
|
|
responseType: "blob",
|
|
data: data,
|
|
data: data,
|
|
@@ -232,7 +228,7 @@ export async function getZDBCWord(data) {
|
|
// 查询项目信息列表
|
|
// 查询项目信息列表
|
|
export async function listProjectinformation(query) {
|
|
export async function listProjectinformation(query) {
|
|
return await request({
|
|
return await request({
|
|
- url: "/model/projectinformation/list",
|
|
|
|
|
|
+ url: "/sanya/projectinformation/list",
|
|
method: "get",
|
|
method: "get",
|
|
params: query,
|
|
params: query,
|
|
});
|
|
});
|
|
@@ -241,7 +237,7 @@ export async function listProjectinformation(query) {
|
|
// 查询项目信息详细
|
|
// 查询项目信息详细
|
|
export async function getProjectinformation(id) {
|
|
export async function getProjectinformation(id) {
|
|
return await request({
|
|
return await request({
|
|
- url: "/model/projectinformation/" + id,
|
|
|
|
|
|
+ url: "/sanya/projectinformation/" + id,
|
|
method: "get",
|
|
method: "get",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -249,7 +245,7 @@ export async function getProjectinformation(id) {
|
|
// 新增项目信息
|
|
// 新增项目信息
|
|
export async function addProjectinformation(data) {
|
|
export async function addProjectinformation(data) {
|
|
return await request({
|
|
return await request({
|
|
- url: "/model/projectinformation",
|
|
|
|
|
|
+ url: "/sanya/projectinformation",
|
|
method: "post",
|
|
method: "post",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -258,7 +254,7 @@ export async function addProjectinformation(data) {
|
|
// 修改项目信息
|
|
// 修改项目信息
|
|
export async function updateProjectinformation(data) {
|
|
export async function updateProjectinformation(data) {
|
|
return await request({
|
|
return await request({
|
|
- url: "/model/projectinformation",
|
|
|
|
|
|
+ url: "/sanya/projectinformation",
|
|
method: "put",
|
|
method: "put",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -267,7 +263,7 @@ export async function updateProjectinformation(data) {
|
|
// 删除项目信息
|
|
// 删除项目信息
|
|
export async function delProjectinformation(id) {
|
|
export async function delProjectinformation(id) {
|
|
return await request({
|
|
return await request({
|
|
- url: "/model/projectinformation/" + id,
|
|
|
|
|
|
+ url: "/sanya/projectinformation/" + id,
|
|
method: "delete",
|
|
method: "delete",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -275,7 +271,7 @@ export async function delProjectinformation(id) {
|
|
// 查询报建模型列表
|
|
// 查询报建模型列表
|
|
export async function listConstructionmodel(query) {
|
|
export async function listConstructionmodel(query) {
|
|
return await request({
|
|
return await request({
|
|
- url: "/model/constructionmodel/list",
|
|
|
|
|
|
+ url: "/sanya/constructionmodel/list",
|
|
method: "get",
|
|
method: "get",
|
|
params: query,
|
|
params: query,
|
|
});
|
|
});
|
|
@@ -284,7 +280,7 @@ export async function listConstructionmodel(query) {
|
|
// 查询报建模型详细
|
|
// 查询报建模型详细
|
|
export async function getConstructionmodel(id) {
|
|
export async function getConstructionmodel(id) {
|
|
return await request({
|
|
return await request({
|
|
- url: "/model/constructionmodel/" + id,
|
|
|
|
|
|
+ url: "/sanya/constructionmodel/" + id,
|
|
method: "get",
|
|
method: "get",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -292,7 +288,7 @@ export async function getConstructionmodel(id) {
|
|
// 新增报建模型
|
|
// 新增报建模型
|
|
export async function addConstructionmodel(data) {
|
|
export async function addConstructionmodel(data) {
|
|
return await request({
|
|
return await request({
|
|
- url: "/model/constructionmodel",
|
|
|
|
|
|
+ url: "/sanya/constructionmodel",
|
|
method: "post",
|
|
method: "post",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -301,7 +297,7 @@ export async function addConstructionmodel(data) {
|
|
// 修改报建模型
|
|
// 修改报建模型
|
|
export async function updateConstructionmodel(data) {
|
|
export async function updateConstructionmodel(data) {
|
|
return await request({
|
|
return await request({
|
|
- url: "/model/constructionmodel",
|
|
|
|
|
|
+ url: "/sanya/constructionmodel",
|
|
method: "put",
|
|
method: "put",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -310,7 +306,7 @@ export async function updateConstructionmodel(data) {
|
|
// 删除报建模型
|
|
// 删除报建模型
|
|
export async function delConstructionmodel(id) {
|
|
export async function delConstructionmodel(id) {
|
|
return await request({
|
|
return await request({
|
|
- url: "/model/constructionmodel/" + id,
|
|
|
|
|
|
+ url: "/sanya/constructionmodel/" + id,
|
|
method: "delete",
|
|
method: "delete",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -318,7 +314,7 @@ export async function delConstructionmodel(id) {
|
|
// 查询项目模型指标人工核算值详细
|
|
// 查询项目模型指标人工核算值详细
|
|
export async function getZtProjectModelZb(id) {
|
|
export async function getZtProjectModelZb(id) {
|
|
return await request({
|
|
return await request({
|
|
- url: "/model/ZtProjectModelZb/" + id,
|
|
|
|
|
|
+ url: "/sanya/ZtProjectModelZb/" + id,
|
|
method: "get",
|
|
method: "get",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -326,7 +322,7 @@ export async function getZtProjectModelZb(id) {
|
|
// 新增项目模型指标人工核算值
|
|
// 新增项目模型指标人工核算值
|
|
export async function addZtProjectModelZb(data) {
|
|
export async function addZtProjectModelZb(data) {
|
|
return await request({
|
|
return await request({
|
|
- url: "/model/ZtProjectModelZb",
|
|
|
|
|
|
+ url: "/sanya/ZtProjectModelZb",
|
|
method: "post",
|
|
method: "post",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -335,7 +331,7 @@ export async function addZtProjectModelZb(data) {
|
|
// 修改项目模型指标人工核算值
|
|
// 修改项目模型指标人工核算值
|
|
export async function updateZtProjectModelZb(data) {
|
|
export async function updateZtProjectModelZb(data) {
|
|
return await request({
|
|
return await request({
|
|
- url: "/model/ZtProjectModelZb",
|
|
|
|
|
|
+ url: "/sanya/ZtProjectModelZb",
|
|
method: "put",
|
|
method: "put",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -347,7 +343,7 @@ export async function updateZtProjectModelZb(data) {
|
|
// 基准地价分析
|
|
// 基准地价分析
|
|
export async function getAnalyseResult(data) {
|
|
export async function getAnalyseResult(data) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/jzdjanalyse/getAnalyseResult",
|
|
|
|
|
|
+ url: "/sanya/jzdjanalyse/getAnalyseResult",
|
|
method: "post",
|
|
method: "post",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -356,7 +352,7 @@ export async function getAnalyseResult(data) {
|
|
// 查询基准地价信息列表
|
|
// 查询基准地价信息列表
|
|
export async function listBenchmarkLandPrices(query) {
|
|
export async function listBenchmarkLandPrices(query) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/BenchmarkLandPrices/list",
|
|
|
|
|
|
+ url: "/sanya/BenchmarkLandPrices/list",
|
|
method: "get",
|
|
method: "get",
|
|
params: query,
|
|
params: query,
|
|
});
|
|
});
|
|
@@ -365,7 +361,7 @@ export async function listBenchmarkLandPrices(query) {
|
|
// 查询基准地价信息详细
|
|
// 查询基准地价信息详细
|
|
export async function getBenchmarkLandPrices(id) {
|
|
export async function getBenchmarkLandPrices(id) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/BenchmarkLandPrices/" + id,
|
|
|
|
|
|
+ url: "/sanya/BenchmarkLandPrices/" + id,
|
|
method: "get",
|
|
method: "get",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -373,7 +369,7 @@ export async function getBenchmarkLandPrices(id) {
|
|
// 新增基准地价信息
|
|
// 新增基准地价信息
|
|
export async function addBenchmarkLandPrices(data) {
|
|
export async function addBenchmarkLandPrices(data) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/BenchmarkLandPrices",
|
|
|
|
|
|
+ url: "/sanya/BenchmarkLandPrices",
|
|
method: "post",
|
|
method: "post",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -382,7 +378,7 @@ export async function addBenchmarkLandPrices(data) {
|
|
// 修改基准地价信息
|
|
// 修改基准地价信息
|
|
export async function updateBenchmarkLandPrices(data) {
|
|
export async function updateBenchmarkLandPrices(data) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/BenchmarkLandPrices",
|
|
|
|
|
|
+ url: "/sanya/BenchmarkLandPrices",
|
|
method: "put",
|
|
method: "put",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -391,14 +387,14 @@ export async function updateBenchmarkLandPrices(data) {
|
|
// 删除基准地价信息
|
|
// 删除基准地价信息
|
|
export async function delBenchmarkLandPrices(id) {
|
|
export async function delBenchmarkLandPrices(id) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/BenchmarkLandPrices/" + id,
|
|
|
|
|
|
+ url: "/sanya/BenchmarkLandPrices/" + id,
|
|
method: "delete",
|
|
method: "delete",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
// 查询基准地价分析结果列表
|
|
// 查询基准地价分析结果列表
|
|
export function listZtBenchmarkLandPriceResults(query) {
|
|
export function listZtBenchmarkLandPriceResults(query) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/ZtBenchmarkLandPriceResults/list",
|
|
|
|
|
|
+ url: "/sanya/ZtBenchmarkLandPriceResults/list",
|
|
method: "get",
|
|
method: "get",
|
|
params: query,
|
|
params: query,
|
|
});
|
|
});
|
|
@@ -407,7 +403,7 @@ export function listZtBenchmarkLandPriceResults(query) {
|
|
// 查询基准地价分析结果详细
|
|
// 查询基准地价分析结果详细
|
|
export function getZtBenchmarkLandPriceResults(id) {
|
|
export function getZtBenchmarkLandPriceResults(id) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/ZtBenchmarkLandPriceResults/" + id,
|
|
|
|
|
|
+ url: "/sanya/ZtBenchmarkLandPriceResults/" + id,
|
|
method: "get",
|
|
method: "get",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -415,7 +411,7 @@ export function getZtBenchmarkLandPriceResults(id) {
|
|
// 新增基准地价分析结果
|
|
// 新增基准地价分析结果
|
|
export function addZtBenchmarkLandPriceResults(data) {
|
|
export function addZtBenchmarkLandPriceResults(data) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/ZtBenchmarkLandPriceResults",
|
|
|
|
|
|
+ url: "/sanya/ZtBenchmarkLandPriceResults",
|
|
method: "post",
|
|
method: "post",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -424,7 +420,7 @@ export function addZtBenchmarkLandPriceResults(data) {
|
|
// 修改基准地价分析结果
|
|
// 修改基准地价分析结果
|
|
export function updateZtBenchmarkLandPriceResults(data) {
|
|
export function updateZtBenchmarkLandPriceResults(data) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/ZtBenchmarkLandPriceResults",
|
|
|
|
|
|
+ url: "/sanya/ZtBenchmarkLandPriceResults",
|
|
method: "put",
|
|
method: "put",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -433,7 +429,7 @@ export function updateZtBenchmarkLandPriceResults(data) {
|
|
// 删除基准地价分析结果
|
|
// 删除基准地价分析结果
|
|
export function delZtBenchmarkLandPriceResults(id) {
|
|
export function delZtBenchmarkLandPriceResults(id) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/ZtBenchmarkLandPriceResults/" + id,
|
|
|
|
|
|
+ url: "/sanya/ZtBenchmarkLandPriceResults/" + id,
|
|
method: "delete",
|
|
method: "delete",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -443,7 +439,7 @@ export function delZtBenchmarkLandPriceResults(id) {
|
|
// 01 征地补偿标准列表 list
|
|
// 01 征地补偿标准列表 list
|
|
export function getZdBcbzList(query) {
|
|
export function getZdBcbzList(query) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/zdbcbz/list",
|
|
|
|
|
|
+ url: "/sanya/zdbcbz/list",
|
|
method: "get",
|
|
method: "get",
|
|
params: query,
|
|
params: query,
|
|
});
|
|
});
|
|
@@ -451,14 +447,14 @@ export function getZdBcbzList(query) {
|
|
// 征地 补偿标准 getbyid
|
|
// 征地 补偿标准 getbyid
|
|
export function getZdBcbzById(id) {
|
|
export function getZdBcbzById(id) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/zdbcbz/getInfo/" + id,
|
|
|
|
|
|
+ url: "/sanya/zdbcbz/" + id,
|
|
method: "get",
|
|
method: "get",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
//添加 征地 补偿标准 add
|
|
//添加 征地 补偿标准 add
|
|
export function addZdBcbz(data) {
|
|
export function addZdBcbz(data) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/zdbcbz/",
|
|
|
|
|
|
+ url: "/sanya/zdbcbz/",
|
|
method: "post",
|
|
method: "post",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -466,7 +462,7 @@ export function addZdBcbz(data) {
|
|
// 更新 征地 补偿标准 update
|
|
// 更新 征地 补偿标准 update
|
|
export function updateZdBcbz(data) {
|
|
export function updateZdBcbz(data) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/zdbcbz/",
|
|
|
|
|
|
+ url: "/sanya/zdbcbz/",
|
|
method: "put",
|
|
method: "put",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -474,7 +470,7 @@ export function updateZdBcbz(data) {
|
|
// 删除 征地 补偿标准 delbyid
|
|
// 删除 征地 补偿标准 delbyid
|
|
export function delZdBcbz(id) {
|
|
export function delZdBcbz(id) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/zdbcbz/" + id,
|
|
|
|
|
|
+ url: "/sanya/zdbcbz/" + id,
|
|
method: "delete",
|
|
method: "delete",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -482,7 +478,7 @@ export function delZdBcbz(id) {
|
|
// 02 青苗 补偿标准列表 list
|
|
// 02 青苗 补偿标准列表 list
|
|
export function getQmbcbzList(query) {
|
|
export function getQmbcbzList(query) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/qmbcbz/list",
|
|
|
|
|
|
+ url: "/sanya/qmbcbz/list",
|
|
method: "get",
|
|
method: "get",
|
|
params: query,
|
|
params: query,
|
|
});
|
|
});
|
|
@@ -490,14 +486,14 @@ export function getQmbcbzList(query) {
|
|
// 青苗 补偿标准 getbyid
|
|
// 青苗 补偿标准 getbyid
|
|
export function getQmbcbzById(id) {
|
|
export function getQmbcbzById(id) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/qmbcbz/" + id,
|
|
|
|
|
|
+ url: "/sanya/qmbcbz/" + id,
|
|
method: "get",
|
|
method: "get",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
//添加 青苗 补偿标准 add
|
|
//添加 青苗 补偿标准 add
|
|
export function addQmbcbz(data) {
|
|
export function addQmbcbz(data) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/qmbcbz",
|
|
|
|
|
|
+ url: "/sanya/qmbcbz",
|
|
method: "post",
|
|
method: "post",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -505,7 +501,7 @@ export function addQmbcbz(data) {
|
|
// 更新 青苗 补偿标准 update
|
|
// 更新 青苗 补偿标准 update
|
|
export function updateQmbcbz(data) {
|
|
export function updateQmbcbz(data) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/qmbcbz",
|
|
|
|
|
|
+ url: "/sanya/qmbcbz",
|
|
method: "put",
|
|
method: "put",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -513,7 +509,7 @@ export function updateQmbcbz(data) {
|
|
// 删除 青苗 补偿标准 delbyid
|
|
// 删除 青苗 补偿标准 delbyid
|
|
export function delQmbcbz(id) {
|
|
export function delQmbcbz(id) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/qmbcbz/" + id,
|
|
|
|
|
|
+ url: "/sanya/qmbcbz/" + id,
|
|
method: "delete",
|
|
method: "delete",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -521,7 +517,7 @@ export function delQmbcbz(id) {
|
|
// 03 拆迁 补偿标准列表 list
|
|
// 03 拆迁 补偿标准列表 list
|
|
export function getCqBcbzList(query) {
|
|
export function getCqBcbzList(query) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/cqbczd/list",
|
|
|
|
|
|
+ url: "/sanya/cqbczd/list",
|
|
method: "get",
|
|
method: "get",
|
|
params: query,
|
|
params: query,
|
|
});
|
|
});
|
|
@@ -529,14 +525,14 @@ export function getCqBcbzList(query) {
|
|
// 拆迁 补偿标准 getbyid
|
|
// 拆迁 补偿标准 getbyid
|
|
export function getCqBcbzById(id) {
|
|
export function getCqBcbzById(id) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/cqbcbz/" + id,
|
|
|
|
|
|
+ url: "/sanya/cqbczd/" + id,
|
|
method: "get",
|
|
method: "get",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
//添加 拆迁 补偿标准 add
|
|
//添加 拆迁 补偿标准 add
|
|
export function addCqBcbz(data) {
|
|
export function addCqBcbz(data) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/cqbcbz",
|
|
|
|
|
|
+ url: "/sanya/cqbczd",
|
|
method: "post",
|
|
method: "post",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -544,22 +540,22 @@ export function addCqBcbz(data) {
|
|
// 更新 拆迁 补偿标准 update
|
|
// 更新 拆迁 补偿标准 update
|
|
export function updateCqBcbz(data) {
|
|
export function updateCqBcbz(data) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/cqbcbz",
|
|
|
|
- method: "post",
|
|
|
|
|
|
+ url: "/sanya/cqbczd",
|
|
|
|
+ method: "put",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
}
|
|
}
|
|
// 删除 拆迁 补偿标准 delbyid
|
|
// 删除 拆迁 补偿标准 delbyid
|
|
-export function delCqBcbz(id) {
|
|
|
|
|
|
+export function delCqBcbz(ids) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/cqbcbz/" + id,
|
|
|
|
|
|
+ url: "/sanya/cqbczd/" + ids,
|
|
method: "delete",
|
|
method: "delete",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
// 03-1 拆迁 补偿标准项 list
|
|
// 03-1 拆迁 补偿标准项 list
|
|
export function getCqBcbzItemList(query) {
|
|
export function getCqBcbzItemList(query) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/cqbcbzitem/list",
|
|
|
|
|
|
+ url: "/sanya/cqbcbzitem/list",
|
|
method: "get",
|
|
method: "get",
|
|
params: query,
|
|
params: query,
|
|
});
|
|
});
|
|
@@ -567,14 +563,14 @@ export function getCqBcbzItemList(query) {
|
|
// 拆迁 补偿标准项 getbyid
|
|
// 拆迁 补偿标准项 getbyid
|
|
export function getCqBcbzItemById(id) {
|
|
export function getCqBcbzItemById(id) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/cqbcbzitem/" + id,
|
|
|
|
|
|
+ url: "/sanya/cqbcbzitem/" + id,
|
|
method: "get",
|
|
method: "get",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
//添加 拆迁 补偿标准项 add
|
|
//添加 拆迁 补偿标准项 add
|
|
export function addCqBcbzItem(data) {
|
|
export function addCqBcbzItem(data) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/cqbcbzitem",
|
|
|
|
|
|
+ url: "/sanya/cqbcbzitem",
|
|
method: "post",
|
|
method: "post",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -582,15 +578,15 @@ export function addCqBcbzItem(data) {
|
|
// 更新 拆迁 补偿标准项 update
|
|
// 更新 拆迁 补偿标准项 update
|
|
export function updateCqBcbzItem(data) {
|
|
export function updateCqBcbzItem(data) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/cqbcbzitem",
|
|
|
|
|
|
+ url: "/sanya/cqbcbzitem",
|
|
method: "put",
|
|
method: "put",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
}
|
|
}
|
|
// 删除 拆迁 补偿标准项 delbyid
|
|
// 删除 拆迁 补偿标准项 delbyid
|
|
-export function delCqBcbzItem(id) {
|
|
|
|
|
|
+export function delCqBcbzItem(ids) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/cqbcbzitem/" + id,
|
|
|
|
|
|
+ url: "/sanya/cqbcbzitem/" + ids,
|
|
method: "delete",
|
|
method: "delete",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -598,7 +594,7 @@ export function delCqBcbzItem(id) {
|
|
// 04 拆迁 分析结果 列表 list
|
|
// 04 拆迁 分析结果 列表 list
|
|
export function getCqResultList(query) {
|
|
export function getCqResultList(query) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/cqresult/list",
|
|
|
|
|
|
+ url: "/sanya/cqresult/list",
|
|
method: "get",
|
|
method: "get",
|
|
params: query,
|
|
params: query,
|
|
});
|
|
});
|
|
@@ -606,14 +602,14 @@ export function getCqResultList(query) {
|
|
// 拆迁 分析结果 getbyid
|
|
// 拆迁 分析结果 getbyid
|
|
export function getCqResultById(id) {
|
|
export function getCqResultById(id) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/cqresult/" + id,
|
|
|
|
|
|
+ url: "/sanya/cqresult/" + id,
|
|
method: "get",
|
|
method: "get",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
//添加 拆迁 分析结果 add
|
|
//添加 拆迁 分析结果 add
|
|
export function addCqResult(data) {
|
|
export function addCqResult(data) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/cqresult",
|
|
|
|
|
|
+ url: "/sanya/cqresult",
|
|
method: "post",
|
|
method: "post",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -621,7 +617,7 @@ export function addCqResult(data) {
|
|
// 更新 拆迁 分析结果 update
|
|
// 更新 拆迁 分析结果 update
|
|
export function updateCqResult(data) {
|
|
export function updateCqResult(data) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/cqresult",
|
|
|
|
|
|
+ url: "/sanya/cqresult",
|
|
method: "post",
|
|
method: "post",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -629,7 +625,7 @@ export function updateCqResult(data) {
|
|
// 删除 拆迁 分析结果 delbyid
|
|
// 删除 拆迁 分析结果 delbyid
|
|
export function delCqResult(id) {
|
|
export function delCqResult(id) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/cqresult/" + id,
|
|
|
|
|
|
+ url: "/sanya/cqresult/" + id,
|
|
method: "delete",
|
|
method: "delete",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -637,7 +633,7 @@ export function delCqResult(id) {
|
|
// 05 征地 分析结果 列表 list
|
|
// 05 征地 分析结果 列表 list
|
|
export function getZdResultList(query) {
|
|
export function getZdResultList(query) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/zdresult/list",
|
|
|
|
|
|
+ url: "/sanya/zdresult/list",
|
|
method: "get",
|
|
method: "get",
|
|
params: query,
|
|
params: query,
|
|
});
|
|
});
|
|
@@ -645,14 +641,14 @@ export function getZdResultList(query) {
|
|
// 征地 分析结果 getbyid
|
|
// 征地 分析结果 getbyid
|
|
export function getZdResultById(id) {
|
|
export function getZdResultById(id) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/zdresult/" + id,
|
|
|
|
|
|
+ url: "/sanya/zdresult/" + id,
|
|
method: "get",
|
|
method: "get",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
//添加 征地 分析结果 add
|
|
//添加 征地 分析结果 add
|
|
export function addZdResult(data) {
|
|
export function addZdResult(data) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/zdresult",
|
|
|
|
|
|
+ url: "/sanya/zdresult",
|
|
method: "post",
|
|
method: "post",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -660,7 +656,7 @@ export function addZdResult(data) {
|
|
// 更新 征地 分析结果 update
|
|
// 更新 征地 分析结果 update
|
|
export function updateZdResult(data) {
|
|
export function updateZdResult(data) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/zdresult",
|
|
|
|
|
|
+ url: "/sanya/zdresult",
|
|
method: "post",
|
|
method: "post",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -668,7 +664,7 @@ export function updateZdResult(data) {
|
|
// 删除 征地 分析结果 delbyid
|
|
// 删除 征地 分析结果 delbyid
|
|
export function delZdResult(id) {
|
|
export function delZdResult(id) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/zdresult/" + id,
|
|
|
|
|
|
+ url: "/sanya/zdresult/" + id,
|
|
method: "delete",
|
|
method: "delete",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -676,7 +672,7 @@ export function delZdResult(id) {
|
|
// 06 青苗 分析结果 列表 list
|
|
// 06 青苗 分析结果 列表 list
|
|
export function getQmResultList(query) {
|
|
export function getQmResultList(query) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/qmresult/list",
|
|
|
|
|
|
+ url: "/sanya/qmresult/list",
|
|
method: "get",
|
|
method: "get",
|
|
params: query,
|
|
params: query,
|
|
});
|
|
});
|
|
@@ -684,14 +680,14 @@ export function getQmResultList(query) {
|
|
// 青苗 分析结果 getbyid
|
|
// 青苗 分析结果 getbyid
|
|
export function getQmResultById(id) {
|
|
export function getQmResultById(id) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/qmresult/" + id,
|
|
|
|
|
|
+ url: "/sanya/qmresult/" + id,
|
|
method: "get",
|
|
method: "get",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
//添加 青苗 分析结果 add
|
|
//添加 青苗 分析结果 add
|
|
export function addQmResult(data) {
|
|
export function addQmResult(data) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/qmresult",
|
|
|
|
|
|
+ url: "/sanya/qmresult",
|
|
method: "post",
|
|
method: "post",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -699,7 +695,7 @@ export function addQmResult(data) {
|
|
// 更新 青苗 分析结果 update
|
|
// 更新 青苗 分析结果 update
|
|
export function updateQmResult(data) {
|
|
export function updateQmResult(data) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/qmresult",
|
|
|
|
|
|
+ url: "/sanya/qmresult",
|
|
method: "post",
|
|
method: "post",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -707,14 +703,14 @@ export function updateQmResult(data) {
|
|
// 删除 青苗 分析结果 delbyid
|
|
// 删除 青苗 分析结果 delbyid
|
|
export function delQmResult(id) {
|
|
export function delQmResult(id) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/qmresult/" + id,
|
|
|
|
|
|
+ url: "/sanya/qmresult/" + id,
|
|
method: "delete",
|
|
method: "delete",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
// 07 征收补偿项目 列表 list
|
|
// 07 征收补偿项目 列表 list
|
|
export function getZdProjectList(query) {
|
|
export function getZdProjectList(query) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/zdproject/list",
|
|
|
|
|
|
+ url: "/sanya/zdproject/list",
|
|
method: "get",
|
|
method: "get",
|
|
params: query,
|
|
params: query,
|
|
});
|
|
});
|
|
@@ -722,14 +718,14 @@ export function getZdProjectList(query) {
|
|
// 征收补偿项目 getbyid
|
|
// 征收补偿项目 getbyid
|
|
export function getZdProjectById(id) {
|
|
export function getZdProjectById(id) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/zdproject/" + id,
|
|
|
|
|
|
+ url: "/sanya/zdproject/" + id,
|
|
method: "get",
|
|
method: "get",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
//添加 征收补偿项目 add
|
|
//添加 征收补偿项目 add
|
|
export function addZdProject(data) {
|
|
export function addZdProject(data) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/zdproject",
|
|
|
|
|
|
+ url: "/sanya/zdproject",
|
|
method: "post",
|
|
method: "post",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -737,7 +733,7 @@ export function addZdProject(data) {
|
|
// 更新 征收补偿项目 update
|
|
// 更新 征收补偿项目 update
|
|
export function updateZdProject(data) {
|
|
export function updateZdProject(data) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/zdproject",
|
|
|
|
|
|
+ url: "/sanya/zdproject",
|
|
method: "post",
|
|
method: "post",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -745,13 +741,13 @@ export function updateZdProject(data) {
|
|
// 删除 征收补偿项目 delbyid
|
|
// 删除 征收补偿项目 delbyid
|
|
export function delZdProject(id) {
|
|
export function delZdProject(id) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/zdproject/" + id,
|
|
|
|
|
|
+ url: "/sanya/zdproject/" + id,
|
|
method: "delete",
|
|
method: "delete",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
export async function expotZDBCWord(data) {
|
|
export async function expotZDBCWord(data) {
|
|
let response = await request({
|
|
let response = await request({
|
|
- url: "/model/zdproject/exportWord",
|
|
|
|
|
|
+ url: "/sanya/zdproject/exportWord",
|
|
method: "post",
|
|
method: "post",
|
|
responseType: "blob",
|
|
responseType: "blob",
|
|
data: data,
|
|
data: data,
|
|
@@ -785,7 +781,7 @@ export async function expotZDBCWord(data) {
|
|
// 08 权属 分析结果 列表 list
|
|
// 08 权属 分析结果 列表 list
|
|
export function getQsResultList(query) {
|
|
export function getQsResultList(query) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/qsresult/list",
|
|
|
|
|
|
+ url: "/sanya/qsresult/list",
|
|
method: "get",
|
|
method: "get",
|
|
params: query,
|
|
params: query,
|
|
});
|
|
});
|
|
@@ -793,14 +789,14 @@ export function getQsResultList(query) {
|
|
// 权属 分析结果 getbyid
|
|
// 权属 分析结果 getbyid
|
|
export function getQsResultById(id) {
|
|
export function getQsResultById(id) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/qsresult/" + id,
|
|
|
|
|
|
+ url: "/sanya/qsresult/" + id,
|
|
method: "get",
|
|
method: "get",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
//添加 权属 分析结果 add
|
|
//添加 权属 分析结果 add
|
|
export function addQsResult(data) {
|
|
export function addQsResult(data) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/qsresult",
|
|
|
|
|
|
+ url: "/sanya/qsresult",
|
|
method: "post",
|
|
method: "post",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -808,7 +804,7 @@ export function addQsResult(data) {
|
|
// 更新 权属 分析结果 update
|
|
// 更新 权属 分析结果 update
|
|
export function updateQsResult(data) {
|
|
export function updateQsResult(data) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/qsresult",
|
|
|
|
|
|
+ url: "/sanya/qsresult",
|
|
method: "post",
|
|
method: "post",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -816,7 +812,7 @@ export function updateQsResult(data) {
|
|
// 删除 权属 分析结果 delbyid
|
|
// 删除 权属 分析结果 delbyid
|
|
export function delQsResult(id) {
|
|
export function delQsResult(id) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/qsresult/" + id,
|
|
|
|
|
|
+ url: "/sanya/qsresult/" + id,
|
|
method: "delete",
|
|
method: "delete",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -827,7 +823,7 @@ export function delQsResult(id) {
|
|
// 查询夜景灯光列列表
|
|
// 查询夜景灯光列列表
|
|
export function listZtLightList(query) {
|
|
export function listZtLightList(query) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/ZtLightList/list",
|
|
|
|
|
|
+ url: "/sanya/ZtLightList/list",
|
|
method: "get",
|
|
method: "get",
|
|
params: query,
|
|
params: query,
|
|
});
|
|
});
|
|
@@ -836,7 +832,7 @@ export function listZtLightList(query) {
|
|
// 查询夜景灯光列详细
|
|
// 查询夜景灯光列详细
|
|
export function getZtLightList(id) {
|
|
export function getZtLightList(id) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/ZtLightList/" + id,
|
|
|
|
|
|
+ url: "/sanya/ZtLightList/" + id,
|
|
method: "get",
|
|
method: "get",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -844,7 +840,7 @@ export function getZtLightList(id) {
|
|
// 新增夜景灯光列
|
|
// 新增夜景灯光列
|
|
export function addZtLightList(data) {
|
|
export function addZtLightList(data) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/ZtLightList",
|
|
|
|
|
|
+ url: "/sanya/ZtLightList",
|
|
method: "post",
|
|
method: "post",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -853,7 +849,7 @@ export function addZtLightList(data) {
|
|
// 修改夜景灯光列
|
|
// 修改夜景灯光列
|
|
export function updateZtLightList(data) {
|
|
export function updateZtLightList(data) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/ZtLightList",
|
|
|
|
|
|
+ url: "/sanya/ZtLightList",
|
|
method: "put",
|
|
method: "put",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -862,7 +858,7 @@ export function updateZtLightList(data) {
|
|
// 删除夜景灯光列
|
|
// 删除夜景灯光列
|
|
export function delZtLightList(id) {
|
|
export function delZtLightList(id) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/ZtLightList/" + id,
|
|
|
|
|
|
+ url: "/sanya/ZtLightList/" + id,
|
|
method: "delete",
|
|
method: "delete",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -873,7 +869,7 @@ export function delZtLightList(id) {
|
|
// 查询广告项目信息列表
|
|
// 查询广告项目信息列表
|
|
export function listZtBillboardInfoList(query) {
|
|
export function listZtBillboardInfoList(query) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/ZtBillboardInfoList/list",
|
|
|
|
|
|
+ url: "/sanya/ZtBillboardInfoList/list",
|
|
method: "get",
|
|
method: "get",
|
|
params: query,
|
|
params: query,
|
|
});
|
|
});
|
|
@@ -882,7 +878,7 @@ export function listZtBillboardInfoList(query) {
|
|
// 查询广告项目信息详细
|
|
// 查询广告项目信息详细
|
|
export function getZtBillboardInfoList(id) {
|
|
export function getZtBillboardInfoList(id) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/ZtBillboardInfoList/" + id,
|
|
|
|
|
|
+ url: "/sanya/ZtBillboardInfoList/" + id,
|
|
method: "get",
|
|
method: "get",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -890,7 +886,7 @@ export function getZtBillboardInfoList(id) {
|
|
// 新增广告项目信息
|
|
// 新增广告项目信息
|
|
export function addZtBillboardInfoList(data) {
|
|
export function addZtBillboardInfoList(data) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/ZtBillboardInfoList",
|
|
|
|
|
|
+ url: "/sanya/ZtBillboardInfoList",
|
|
method: "post",
|
|
method: "post",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -899,7 +895,7 @@ export function addZtBillboardInfoList(data) {
|
|
// 修改广告项目信息
|
|
// 修改广告项目信息
|
|
export function updateZtBillboardInfoList(data) {
|
|
export function updateZtBillboardInfoList(data) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/ZtBillboardInfoList",
|
|
|
|
|
|
+ url: "/sanya/ZtBillboardInfoList",
|
|
method: "put",
|
|
method: "put",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -908,7 +904,7 @@ export function updateZtBillboardInfoList(data) {
|
|
// 删除广告项目信息
|
|
// 删除广告项目信息
|
|
export function delZtBillboardInfoList(id) {
|
|
export function delZtBillboardInfoList(id) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/ZtBillboardInfoList/" + id,
|
|
|
|
|
|
+ url: "/sanya/ZtBillboardInfoList/" + id,
|
|
method: "delete",
|
|
method: "delete",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -916,7 +912,7 @@ export function delZtBillboardInfoList(id) {
|
|
// 查询广告模型信息列表
|
|
// 查询广告模型信息列表
|
|
export function listBillboardModelList(query) {
|
|
export function listBillboardModelList(query) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/billboardModelList/list",
|
|
|
|
|
|
+ url: "/sanya/billboardModelList/list",
|
|
method: "get",
|
|
method: "get",
|
|
params: query,
|
|
params: query,
|
|
});
|
|
});
|
|
@@ -925,7 +921,7 @@ export function listBillboardModelList(query) {
|
|
// 查询广告模型信息详细
|
|
// 查询广告模型信息详细
|
|
export function getBillboardModelList(id) {
|
|
export function getBillboardModelList(id) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/billboardModelList/" + id,
|
|
|
|
|
|
+ url: "/sanya/billboardModelList/" + id,
|
|
method: "get",
|
|
method: "get",
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -933,7 +929,7 @@ export function getBillboardModelList(id) {
|
|
// 新增广告模型信息
|
|
// 新增广告模型信息
|
|
export function addBillboardModelList(data) {
|
|
export function addBillboardModelList(data) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/billboardModelList",
|
|
|
|
|
|
+ url: "/sanya/billboardModelList",
|
|
method: "post",
|
|
method: "post",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -942,7 +938,7 @@ export function addBillboardModelList(data) {
|
|
// 批量新增广告模型信息
|
|
// 批量新增广告模型信息
|
|
export function addBillboardModelLists(data) {
|
|
export function addBillboardModelLists(data) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/billboardModelList/adds",
|
|
|
|
|
|
+ url: "/sanya/billboardModelList/adds",
|
|
method: "post",
|
|
method: "post",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -951,7 +947,7 @@ export function addBillboardModelLists(data) {
|
|
// 修改广告模型信息
|
|
// 修改广告模型信息
|
|
export function updateBillboardModelList(data) {
|
|
export function updateBillboardModelList(data) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/billboardModelList",
|
|
|
|
|
|
+ url: "/sanya/billboardModelList",
|
|
method: "put",
|
|
method: "put",
|
|
data: data,
|
|
data: data,
|
|
});
|
|
});
|
|
@@ -960,7 +956,7 @@ export function updateBillboardModelList(data) {
|
|
// 删除广告模型信息
|
|
// 删除广告模型信息
|
|
export function delBillboardModelList(id) {
|
|
export function delBillboardModelList(id) {
|
|
return request({
|
|
return request({
|
|
- url: "/model/billboardModelList/" + id,
|
|
|
|
|
|
+ url: "/sanya/billboardModelList/" + id,
|
|
method: "delete",
|
|
method: "delete",
|
|
});
|
|
});
|
|
}
|
|
}
|