|
@@ -210,6 +210,7 @@ const formLogDataList = ref([])
|
|
|
const getTheLogBusinessData = async (excelId, recordDate) => {
|
|
|
const {primaryKeyId} = menuItem.value
|
|
|
const { data } = await queryApi.getTheLogBusinessData({
|
|
|
+ contractId: contractId.value || '',
|
|
|
pkeyId: excelId,
|
|
|
nodePrimaryKeyId: primaryKeyId,
|
|
|
recordTime: recordDate,
|
|
@@ -413,6 +414,7 @@ const getBussPdfInfo = async () => {
|
|
|
previewLoading.value = true
|
|
|
const {primaryKeyId} = menuItem.value
|
|
|
const { error, code, data } = await queryApi.getBussPdfInfo({
|
|
|
+ contractId: contractId.value || '',
|
|
|
pkeyId: excelIdVal.value,
|
|
|
nodePrimaryKeyId: primaryKeyId,
|
|
|
recordTime: recordTime.value,
|
|
@@ -432,6 +434,7 @@ const getBussPdfInfo = async () => {
|
|
|
const queryCurrentLogSelectProcessList = async (dateVal) => {
|
|
|
const {primaryKeyId} = menuItem.value
|
|
|
const { error, code, data, msg } = await queryApi.queryCurrentLogSelectProcessList({
|
|
|
+ contractId: contractId.value || '',
|
|
|
nodePrimaryKeyId: primaryKeyId,
|
|
|
recordTime: dateVal,
|
|
|
theLogId: ""
|
|
@@ -487,6 +490,7 @@ const copyTimeSaveClick = async () => {
|
|
|
copyTimeLoading.value = true
|
|
|
const {primaryKeyId} = menuItem.value
|
|
|
const { error, code, data } = await queryApi.copyTheLogBusinessData({
|
|
|
+ contractId: contractId.value || '',
|
|
|
nodePrimaryKeyId: primaryKeyId,
|
|
|
currentTime: recordTime.value,
|
|
|
targetTime: copyTimeChoices.value
|