改线上
parent
b1788762a7
commit
105ef2f6ae
|
@ -69,6 +69,12 @@ export function getOut(){
|
|||
method: "GET"
|
||||
})}
|
||||
|
||||
export function updateByordersState1(data){
|
||||
return request({
|
||||
url:"/market/orders/updateByordersState1",
|
||||
method: "POST",
|
||||
data: data
|
||||
})}
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -9,15 +9,14 @@ export function selectList(data){
|
|||
}
|
||||
|
||||
|
||||
export function selectTypeList(data){
|
||||
export function selectTypeList(data) {
|
||||
return request({
|
||||
url:"/market/product/typeList",
|
||||
url: "/market/product/typeList",
|
||||
method: "POST",
|
||||
data: data
|
||||
})
|
||||
|
||||
|
||||
}export function selectproductspecification(data){
|
||||
}
|
||||
export function selectproductspecification(data){
|
||||
return request({
|
||||
url:"/market/product/specification",
|
||||
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 label="请求参数说明:">
|
||||
|
||||
|
||||
</el-form-item>
|
||||
|
||||
|
||||
|
||||
<el-form-item label="返回参数说明:">
|
||||
|
||||
</el-form-item>
|
||||
|
@ -349,7 +353,8 @@ export default {
|
|||
// 这里假设你有一个发起支付的方法,传入所选行的数据
|
||||
startPayment(this.selectedRow);
|
||||
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.dialogVisible1 = false;
|
||||
|
|
Loading…
Reference in New Issue