|
|
@ -54,7 +54,7 @@ |
|
|
|
<el-table-column label="操作" fixed="right" min-width="30px"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<div class="flex"> |
|
|
|
<el-button @click="paySetting(scope.row)" type="text">设置</el-button> |
|
|
|
<el-button @click="paySetting(scope.row,payTypeAlipay)" type="text">设置</el-button> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
@ -109,7 +109,7 @@ |
|
|
|
<el-table-column label="操作" fixed="right" min-width="30px"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<div class="flex"> |
|
|
|
<el-button @click="paySetting(scope.row)" type="text">设置</el-button> |
|
|
|
<el-button @click="paySetting(scope.row,payTypeWeixin)" type="text">设置</el-button> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
@ -161,7 +161,7 @@ |
|
|
|
<el-table-column label="操作" fixed="right" min-width="30px"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<div class="flex"> |
|
|
|
<el-button @click="paySetting(scope.row)" type="text">设置</el-button> |
|
|
|
<el-button @click="paySetting(scope.row,payTypeTaoBao)" type="text">设置</el-button> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
@ -214,7 +214,7 @@ |
|
|
|
<el-table-column label="操作" fixed="right" min-width="30px"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<div class="flex"> |
|
|
|
<el-button @click="paySetting(scope.row)" type="text">设置</el-button> |
|
|
|
<el-button @click="paySetting(scope.row,payTypePdd)" type="text">设置</el-button> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
@ -266,7 +266,7 @@ |
|
|
|
<el-table-column label="操作" fixed="right" min-width="30px"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<div class="flex"> |
|
|
|
<el-button @click="paySetting(scope.row)" type="text">设置</el-button> |
|
|
|
<el-button @click="paySetting(scope.row,payTypeJingdong)" type="text">设置</el-button> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
@ -699,8 +699,8 @@ export default { |
|
|
|
handleClick(tab, event) { |
|
|
|
console.log(tab, event); |
|
|
|
}, |
|
|
|
paySetting(row) { |
|
|
|
window.open('/agent/payInfoSetting?payid='+row.payid, '_blank'); |
|
|
|
paySetting(row,payType) { |
|
|
|
window.open('/agent/payInfoSetting?payid='+row.payid + '&payType=' + payType, '_blank'); |
|
|
|
} |
|
|
|
}, |
|
|
|
|
|
|
|