Commit fbce144c by 潘际乾

trnrel的reprow操作

parent 84dc1f82
import Api from "~/service/Api"
import { rejrow } from "~/service/business/trnrel"
import { rejrow, reprow } from "~/service/business/trnrel"
import Utils from "~/utils/index"
export default {
async onSeaown() {
......@@ -238,7 +238,7 @@ export default {
let params = { selDst: selDst, selIds: selIds };
let rtnmsg = await this.executeRule("reprow", params)
let rtnmsg = await reprow(this.wrapper(params))
if (rtnmsg.respCode == SUCCESS) {
let errorMsg = "";
......
......@@ -2,4 +2,8 @@ import Api from "~/service/Api"
export function rejrow(data) {
return Api.post('/business/trnrel/rejrow', data)
}
export function reprow(data) {
return Api.post('/business/trnrel/reprow', data)
}
\ No newline at end of file
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