Commit 69026c87 authored by 薄玉虎's avatar 薄玉虎

风险模块详情页

parent 38c4edca
...@@ -94,6 +94,14 @@ export function postriskBook(url,data) { ...@@ -94,6 +94,14 @@ export function postriskBook(url,data) {
}) })
} }
// 风险详情
export function riskDetail(url,data) {
return request({
url: url,
method: 'post',
data
})
}
/*接口对接1 START*/ /*接口对接1 START*/
......
...@@ -122,7 +122,12 @@ export default { ...@@ -122,7 +122,12 @@ export default {
// 详情 // 详情
goDetail(data) { goDetail(data) {
console.log(data); console.log(data);
this.$router.push("/affirm-detail"); this.$router.push({
name: "risk-big-detail",
params: {
id: data.taskId
}
});
this.showIndex = null; this.showIndex = null;
}, },
// 确认 // 确认
......
...@@ -118,7 +118,7 @@ export default { ...@@ -118,7 +118,7 @@ export default {
clearInterval(this.Loop); clearInterval(this.Loop);
}, },
// 详情 // 重新上报
goDetail(data) { goDetail(data) {
console.log(data); console.log(data);
this.$router.push({ this.$router.push({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment