zhengyiming
4 天以前 8feaba218a5ce22e92214e4c9082faf59b25c885
src/views/MaterialReview/MaterialReReviewList.vue
@@ -59,7 +59,9 @@
      <ProTableV2 v-bind="proTableProps" :columns="column" :operationBtns="operationBtns">
      </ProTableV2>
      <ParkBountyApplyRedoDialog v-bind="dialogProps" />
    </AppContainer>
    <OperateHistoryLogDialog v-bind="logDialogProps" />
  </LoadingLayout>
</template>
@@ -76,14 +78,21 @@
  QueryFilterItem,
  FieldDatePicker,
  FieldSelect,
  useFormDialog,
} from '@bole-core/components';
import { OrderInputType } from '@bole-core/core';
import { Message, OrderInputType } from '@bole-core/core';
import { format } from '@/utils';
import { BountyCheckStatusEnum, BountyCheckStatusEnumText, DataRangeEnumText } from '@/constants';
import * as parkBountyApplyServices from '@/services/api/ParkBountyApply';
import _ from 'lodash';
import { ModelValueType } from 'element-plus';
import { useAccess, useGlobalEventContext, useIndustrialParkDropDownList } from '@/hooks';
import {
  useAccess,
  useGlobalEventContext,
  useIndustrialParkDropDownList,
  useOpenLogDialog,
} from '@/hooks';
import ParkBountyApplyRedoDialog from './components/ParkBountyApplyRedoDialog.vue';
defineOptions({
  name: 'MaterialReviewList',
@@ -106,13 +115,14 @@
  },
  redoBtn: {
    emits: {
      onClick: (role) => goAudit(role),
      onClick: (role) => openDialog(role),
    },
    extraProps: {
      hide: (row: API.GetParkBountyApplyListOutput) =>
        row.outReCheckStatus !== BountyCheckStatusEnum.CheckPassed,
    },
  },
  logBtn: { emits: { onClick: (role) => openLogDialog(role.id) } },
};
const { checkSubModuleItemShow, column, operationBtns } = useAccess({
@@ -212,4 +222,34 @@
    },
  });
}
function openDialog(row: API.GetParkBountyApplyListOutput) {
  handleAdd({
    parkBountyApplyId: row.id,
  });
}
const { dialogProps, handleAdd, editForm } = useFormDialog({
  onConfirm: outcheckParkBountyApplyReRedoed,
  defaultFormParams: {
    reasonForWithdrawal: '',
    parkBountyApplyId: '',
  },
});
async function outcheckParkBountyApplyReRedoed() {
  try {
    let params: API.OutcheckParkBountyApplyRedoedInput = {
      parkBountyApplyId: editForm.parkBountyApplyId,
      reasonForWithdrawal: editForm.reasonForWithdrawal,
    };
    let res = await parkBountyApplyServices.outcheckParkBountyApplyReRedoed(params);
    if (res) {
      Message.successMessage('操作成功');
      getList(paginationState.pageIndex);
    }
  } catch (error) {}
}
const { openLogDialog, logDialogProps } = useOpenLogDialog();
</script>