|
|
@ -27,7 +27,7 @@ const getAllObj = ref({}); |
|
|
|
// 搜索对象 |
|
|
|
const getObj = ref({ |
|
|
|
pageNum: 1, |
|
|
|
pageSize: 10, |
|
|
|
pageSize: 50, |
|
|
|
}); |
|
|
|
|
|
|
|
// 支付方式选项 |
|
|
@ -72,11 +72,11 @@ const get = async function (val) { |
|
|
|
} |
|
|
|
console.log("搜索参数", getObj.value); |
|
|
|
// 发送POST请求 |
|
|
|
const result = await API.post("http://192.168.8.93:10010/detail", { |
|
|
|
const result = await API.post("http://192.168.8.93:10010/detailY", { |
|
|
|
...getObj.value, |
|
|
|
detail: { ...detail.value }, |
|
|
|
}); |
|
|
|
const result2 = await API.post("http://192.168.8.93:10010/detail", { |
|
|
|
const result2 = await API.post("http://192.168.8.93:10010/detailY", { |
|
|
|
...getAllObj.value, |
|
|
|
detail: { ...detail.value }, |
|
|
|
}); |
|
|
|