|
@@ -17,6 +17,7 @@ import { performanceActivate, performanceContractedApply } from '@/services/prot
|
|
|
import { BuyOrSell } from '@/common/constants/enumCommon';
|
|
import { BuyOrSell } from '@/common/constants/enumCommon';
|
|
|
import { handlePerformancePlanStep } from '../setup';
|
|
import { handlePerformancePlanStep } from '../setup';
|
|
|
import { Modal } from 'ant-design-vue';
|
|
import { Modal } from 'ant-design-vue';
|
|
|
|
|
+import Long from "long";
|
|
|
|
|
|
|
|
export default defineComponent({
|
|
export default defineComponent({
|
|
|
name: ModalEnum.performance_information_buy_performance_settlement,
|
|
name: ModalEnum.performance_information_buy_performance_settlement,
|
|
@@ -45,7 +46,7 @@ export default defineComponent({
|
|
|
function submit() {
|
|
function submit() {
|
|
|
// 激活接口 (就是交收)
|
|
// 激活接口 (就是交收)
|
|
|
const paramReq: PerformanceActivateReq = {
|
|
const paramReq: PerformanceActivateReq = {
|
|
|
- PerformancePlanID: Number(props.selectedRow.performanceplanid), // uint64 履约计划ID
|
|
|
|
|
|
|
+ PerformancePlanID: Long.fromString(props.selectedRow.performanceplanid), // uint64 履约计划ID
|
|
|
ApplyAccountID: getSelectedAccountId(), // uint64 发起方账号ID
|
|
ApplyAccountID: getSelectedAccountId(), // uint64 发起方账号ID
|
|
|
};
|
|
};
|
|
|
requestResultLoadingAndInfo(performanceActivate, paramReq, loading, ['交收成功', '交收失败:']).then(() => {
|
|
requestResultLoadingAndInfo(performanceActivate, paramReq, loading, ['交收成功', '交收失败:']).then(() => {
|