改线上
parent
b1788762a7
commit
105ef2f6ae
|
@ -69,6 +69,12 @@ export function getOut(){
|
||||||
method: "GET"
|
method: "GET"
|
||||||
})}
|
})}
|
||||||
|
|
||||||
|
export function updateByordersState1(data){
|
||||||
|
return request({
|
||||||
|
url:"/market/orders/updateByordersState1",
|
||||||
|
method: "POST",
|
||||||
|
data: data
|
||||||
|
})}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -15,9 +15,8 @@ export function selectTypeList(data){
|
||||||
method: "POST",
|
method: "POST",
|
||||||
data: data
|
data: data
|
||||||
})
|
})
|
||||||
|
}
|
||||||
|
export function selectproductspecification(data){
|
||||||
}export function selectproductspecification(data){
|
|
||||||
return request({
|
return request({
|
||||||
url:"/market/product/specification",
|
url:"/market/product/specification",
|
||||||
method: "POST",
|
method: "POST",
|
||||||
|
@ -25,5 +24,26 @@ export function selectTypeList(data){
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function ifbuy(data){
|
||||||
|
return request({
|
||||||
|
url:"/market/product/ifbuy",
|
||||||
|
method: "POST",
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
export function ifbuy(data){
|
||||||
|
return request({
|
||||||
|
url:"/market/product/ifbuy",
|
||||||
|
method: "POST",
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export function showByproductId(productId){
|
||||||
|
return request({
|
||||||
|
url:"/market/product/showByproductId="+productId,
|
||||||
|
method: "GET"
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
|
@ -45,7 +45,11 @@
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="请求参数说明:">
|
<el-form-item label="请求参数说明:">
|
||||||
|
|
||||||
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<el-form-item label="返回参数说明:">
|
<el-form-item label="返回参数说明:">
|
||||||
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
@ -349,7 +353,8 @@ export default {
|
||||||
// 这里假设你有一个发起支付的方法,传入所选行的数据
|
// 这里假设你有一个发起支付的方法,传入所选行的数据
|
||||||
startPayment(this.selectedRow);
|
startPayment(this.selectedRow);
|
||||||
console.log(row)
|
console.log(row)
|
||||||
window.open("http://localhost:9701/alipay/pay?middlePrice="+row.middlePrice)
|
window.open("http://localhost:9701 " +
|
||||||
|
"/alipay/pay?middlePrice="+row.middlePrice)
|
||||||
this.$message.success('付款成功')
|
this.$message.success('付款成功')
|
||||||
|
|
||||||
this.dialogVisible1 = false;
|
this.dialogVisible1 = false;
|
||||||
|
|
Loading…
Reference in New Issue