推线上
parent
050afe93a0
commit
3d6f27c171
|
@ -152,6 +152,7 @@ export default {
|
|||
}
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div>
|
||||
<div >
|
||||
<el-card class="box-card" style="width: 94%;transform: translateX(3%);margin-top: 30px">
|
||||
<div slot="header" class="clearfix">
|
||||
<span>筛选搜索</span>
|
||||
|
@ -165,6 +165,7 @@ import {
|
|||
} from '@/api/market/orders'
|
||||
import { diGui } from "@/api/market/orders";
|
||||
import axios from 'axios'
|
||||
import item from '@/layout/components/Sidebar/Item.vue'
|
||||
|
||||
|
||||
//这里可以导入其他文件(比如:组件,工具js,第三方插件js,json文件,图片文件等等),
|
||||
|
@ -218,7 +219,11 @@ export default {
|
|||
};
|
||||
},
|
||||
//计算属性 类似于data概念",
|
||||
computed: {},
|
||||
computed: {
|
||||
item() {
|
||||
return item
|
||||
}
|
||||
},
|
||||
//监控data中的数据变化",
|
||||
watch: {},
|
||||
//方法集合",
|
||||
|
@ -309,7 +314,7 @@ export default {
|
|||
|
||||
pay(row){
|
||||
console.log(row)
|
||||
window.open("http://localhost:9701/alipay/pay?productName="+row.productName +"&ordersNum="+row.ordersNum+"&ordersPrice="+row.ordersPrice)
|
||||
window.open("http://21.12.0.10/prod-api/market/alipay/pay?productName="+row.productName +"&ordersNum="+row.ordersNum+"&ordersPrice="+row.ordersPrice)
|
||||
this.$message.success('付款成功')
|
||||
updateByordersState1(ordersForm).then(response=>{
|
||||
alert(response.msg)
|
||||
|
@ -331,6 +336,7 @@ export default {
|
|||
this.$router.push({path:"/reclaim/index"})
|
||||
}
|
||||
|
||||
|
||||
// getOut(){
|
||||
// axios.get('/market/orders/getOutAll').
|
||||
// then(response =>{
|
||||
|
|
|
@ -190,10 +190,10 @@ export default {
|
|||
insertmoney(moneyForm){
|
||||
if (moneyForm.pay==1){
|
||||
if (moneyForm.resource!=''){
|
||||
window.open("http://21.12.0.10:80/alipay/pay?ordersPrice="+moneyForm.resource)
|
||||
window.open("http://localhost:9701/alipay/pay?ordersPrice="+moneyForm.resource)
|
||||
this.$message.success('付款成功')
|
||||
}else {
|
||||
window.open("http://21.12.0.10:80/alipay/pay?ordersPrice="+moneyForm.resource)
|
||||
window.open("http://localhost:9701/alipay/pay?ordersPrice="+moneyForm.resource)
|
||||
this.$message.success('付款成功')
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue