Commit 04e219f8 by WH

infbrd前后端联调修改

parent f6932325
...@@ -77,9 +77,11 @@ export default { ...@@ -77,9 +77,11 @@ export default {
async details(row) { async details(row) {
const params = { const params = {
//根据xx字段 查询详情表的数据 //根据xx字段 查询详情表的数据
inr:row.inr,
userId:row.ownusr,
ownref: row.ownref, ownref: row.ownref,
}; };
const res = await Api.post('/service/infbrd/getDetailByOwnref', params); const res = await Api.post('/service/infbrd/getDetail', params);
if (res.respCode === SUCCESS) { if (res.respCode === SUCCESS) {
this.trnData.data = res.data; this.trnData.data = res.data;
} }
......
...@@ -96,6 +96,7 @@ ...@@ -96,6 +96,7 @@
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="8"> <c-col :span="8">
<el-form-item <el-form-item
style="width: 100%" style="width: 100%"
...@@ -138,6 +139,7 @@ ...@@ -138,6 +139,7 @@
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="8"> <c-col :span="8">
<el-form-item label="当事人角色" style="width: 100%"> <el-form-item label="当事人角色" style="width: 100%">
<c-select <c-select
...@@ -170,6 +172,7 @@ ...@@ -170,6 +172,7 @@
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="8"> <c-col :span="8">
<el-form-item <el-form-item
style="width: 100%" style="width: 100%"
...@@ -219,6 +222,7 @@ ...@@ -219,6 +222,7 @@
</c-select> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="8"> <c-col :span="8">
<el-form-item <el-form-item
style="width: 100%" style="width: 100%"
...@@ -491,10 +495,6 @@ export default { ...@@ -491,10 +495,6 @@ export default {
label: "货物类型", label: "货物类型",
prop: "stagod", prop: "stagod",
}, },
// {
// label: '操作',
// prop: 'ownref'
// },
], ],
data: [], data: [],
}, },
...@@ -506,6 +506,52 @@ export default { ...@@ -506,6 +506,52 @@ export default {
initdialog: false, initdialog: false,
handlerDataList: [], handlerDataList: [],
btnRouteMap: [
{
label: '寄单',
route: '/business-new/brtsnd'
},
{
label: '改单/二次到单',
route: '/business-new/brtdck'
},
{
label: '拒付/不符点处理',
route: '/business-new/brtdcr'
},
{
label:'接收不符点',
route:'/business-new/brtacp'
},
{
label:'承兑',
route:'/business-new/brtudp'
},
{
label:'展期',
route:'/business-new/brteus'
},
{
label:'付汇',
route:'/business-new/brtset'
},
{
label:'提货担保修改',
route:'/business-new/brtame'
},
{
label:'提货担保注销',
route:'/business-new/brtcsg'
},
{
label:'单据偿还垫款',
route:'/business-new/brtlat'
},
{
label:'单据注销',
route:'/business-new/brtcan'
},
],
currentHandleRow: {}, currentHandleRow: {},
}; };
}, },
......
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