|
@@ -462,22 +462,23 @@ function initializeData() {
|
|
|
return
|
|
|
}
|
|
|
|
|
|
- const { id, taskName, priority, taskType, customId, customName, businessOpportunityId, businessOpportunityName, orderId, orderName, clueId, clueNme, contactsId, contactsName
|
|
|
+ const { id, taskName, priority, taskType, customId, customName, businessOpportunityId, businessName, orderId, orderName, clueId, clueName, contactsId, contactsName
|
|
|
, taskExecutors, isRepeat, repeatType, repeatDesignSameday, endType, repeatEndCount, repeatEndDate, repeatDesignDay, executorId, startDate, endDate } = row
|
|
|
vantFormVal.value = {
|
|
|
id, taskName, priority, taskType, customId, businessOpportunityId, orderId, clueId, contactsId, executorId, repeatType, repeatDesignSameday, endType, repeatEndCount, repeatEndDate, startDate, endDate,
|
|
|
isRepeat: isRepeat == 1 ? true : false,
|
|
|
executorIdName: taskExecutors || [],
|
|
|
contactsIdName: contactsName,
|
|
|
- clueIdNme: clueNme,
|
|
|
+ clueIdName: clueName,
|
|
|
orderIdName: orderName,
|
|
|
customIdName: customName,
|
|
|
- businessOpportunityIdName: businessOpportunityName,
|
|
|
+ businessOpportunityIdName: businessName,
|
|
|
priorityName: fixedFieldPriority.find(item => item.value == priority)?.label || '',
|
|
|
taskTypeName: fixedFieldTaskType.find(item => item.value == taskType)?.label || '',
|
|
|
repeatTypeName: fixedFieldRepetitiveType.find(item => item.value == repeatType)?.label || ''
|
|
|
}
|
|
|
-
|
|
|
+ console.log(vantFormVal.value, '<========= vantFormVal.value')
|
|
|
+ console.log(row, '<========= vantFormVal.value')
|
|
|
const list = repeatDesignDay && repeatDesignDay.split(',') || []
|
|
|
customeDate.value = (list || []).map(item => {
|
|
|
return {
|