Compare commits
No commits in common. "9008f87354e37234323bfb9c18090fc333655cd6" and "1b9ca7a80774a8a69328b4cf3de7ec009358fe61" have entirely different histories.
9008f87354
...
1b9ca7a807
@ -1,32 +0,0 @@
|
|||||||
|
|
||||||
import React from 'react';
|
|
||||||
import FormPage from '../../components/FormPage'
|
|
||||||
import { ConfirmButton } from '@woowalker/feui'
|
|
||||||
import { initQueryFilter } from "../../utils/common";
|
|
||||||
import { message } from "antd/lib/index";
|
|
||||||
import moment from 'moment';
|
|
||||||
|
|
||||||
//销售订单
|
|
||||||
export default {
|
|
||||||
btnImport: (params) => {
|
|
||||||
var selectRows = params.getSelectedRecords()
|
|
||||||
if (selectRows == null || selectRows.length < 1) {
|
|
||||||
message.success("请勾选法律法规信息后再同步!");
|
|
||||||
}
|
|
||||||
var data = {
|
|
||||||
ListModel: selectRows
|
|
||||||
}
|
|
||||||
params.dispatch({
|
|
||||||
type: 'app/getDataByPost',
|
|
||||||
payload: data,
|
|
||||||
url: "SE/SETest/SyncToLocal",
|
|
||||||
onComplete: (ret) => {
|
|
||||||
if (ret) {
|
|
||||||
message.success("同步成功!");
|
|
||||||
params.clearSelectedRowKeys()
|
|
||||||
params.props.data.close()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue
Block a user