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