Commit e77d0b19 by Joey

fix(@gms/gms-plugin-billexpand): 工会按钮,接口传billdata

parent b76b7936
......@@ -120,7 +120,11 @@ export default {
saveBill(bill, param).then(() => {
GMS.$http.post(
`/rbc/bill/action/zgh/change/work/${param.define}/bill.Basic.accept`,
{ approvalComments: comments }
{
approvalComments: comments,
data: bill.getBuillData(),
detailData: [],
}
).then(
function (response) {
console.log('response', response)
......
......@@ -60,7 +60,11 @@ export default {
saveBill(bill, param).then(() => {
GMS.$http.post(
`/rbc/bill/action/zgh/change/work/${param.define}/bill.Basic.reject`,
{ approvalComments: comments },
{
approvalComments: comments,
data: bill.getBuillData(),
detailData: [],
},
).then(
function (response) {
if (response.status == 200 || response.statusText == 'OK') {
......
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