diff --git a/src/components/DesignForm/app/index.vue b/src/components/DesignForm/app/index.vue index 1e8e721f1..b594b32c6 100644 --- a/src/components/DesignForm/app/index.vue +++ b/src/components/DesignForm/app/index.vue @@ -195,7 +195,7 @@ const resetFields = (formEl: FormInstance | undefined) => { @ 功能: 功能按钮动作 */ const setUpClick = (val:string,id:string) =>{ - console.log("功能按钮动作",val,"----id----->",props.versionid,"-----formId---->",props.versiontitle) + // console.log("功能按钮动作",val,"----id----->",props.versionid,"-----formId---->",props.versiontitle) if(val.key == "newAdd"){ drawerWith.value = container.value?.clientWidth openTaskDrawer.value = true @@ -212,7 +212,7 @@ const setUpClick = (val:string,id:string) =>{ } softDeletion(sendData) .then((data)=>{ - console.log('cancel!',data) + // console.log('cancel!',data) ElNotification({ title: '温馨提示!', message: data.mag, @@ -237,16 +237,16 @@ const setUpClick = (val:string,id:string) =>{ const selectionChange = (row: any) => { state.selectionChecked = row emits('selectionChange', row) - console.log('selectionChange', row) + // console.log('selectionChange', row) idList.value.length = 0 - console.log('idList.value-1-->', idList.value) + // console.log('idList.value-1-->', idList.value) if(row && row.length>0){ row.forEach((item:any) => { - console.log('item', item.masters_key) + // console.log('item', item.masters_key) idList.value.push(item.masters_key.toString()) }) } - console.log('idList.value--->', idList.value) + // console.log('idList.value--->', idList.value) } /** @ 作者: 秦东 @@ -268,7 +268,7 @@ const columnsFilter = computed(() => { @ 功能: 翻页操作 */ const handleSizeChange = (page: number) => { - console.log("翻页操作",page) + // console.log("翻页操作",page) state.pageSize = page getListData(1) } @@ -324,20 +324,20 @@ const getPageData = () => { pagesize:state.pageSize, searchData:json2string(props.searchData) } - console.log("获取列表详细信息",sendData) + // console.log("获取列表详细信息",sendData) switch(viewType.value){ case 2: nextTick(()=>{ - console.log("获取列表详细信息-------555---------->",calendarPageRef.value) + // console.log("获取列表详细信息-------555---------->",calendarPageRef.value) calendarPageRef.value.calendarSearchData(sendData) }) // calendarPageRef.value.calendarSearchData() break; case 3: nextTick(()=>{ - console.log("获取列表详细信息-------222---------->",timeAxisRef.value) + // console.log("获取列表详细信息-------222---------->",timeAxisRef.value) timeAxisRef.value.searchTimeList(sendData,1) }) @@ -350,7 +350,7 @@ const getPageData = () => { state.loading = true; gainFormPageListCont(sendData) .then((data)=>{ - console.log("获取列表详细信息----------------->",data) + // console.log("获取列表详细信息----------------->",data) //liwenxuan 关联表单数据获取 start let dataList = data @@ -371,7 +371,7 @@ const getPageData = () => { asfQueryParamsItem.field = asfDetails[j].field let asfToSelectIds = [] - console.log(data.data.list) + // console.log(data.data.list) for(let i = 0;i{ + console.log("视图数据提交---》",props.viewPage); getPageData() nextTick(()=>{ drawerWith.value = container.value?.clientWidth @@ -626,7 +627,7 @@ const confirmEvent = (val:any) => { } softDeletion(sendData) .then((data)=>{ - console.log('cancel!',data) + // console.log('cancel!',data) ElNotification({ title: '系统提示!', message: data.mag?data.mag:"删除成功", @@ -663,7 +664,7 @@ const lookPageInfo = (val:any) => { */ const editInfo = (val:any) => { - console.log('修改数据!',val) + // console.log('修改数据!',val) operState.value = 5; tablePageClass.value = 2; pageInfoCont.value = val @@ -688,7 +689,7 @@ const submitApproval = (val:any) => { @ 功能: 撤回申请 */ const withdrawApplication = (val:any) => { - console.log("撤回申请", val); + // console.log("撤回申请", val); let sendInfo = { // id: val.masters_key, id: val.runFlowId @@ -737,7 +738,7 @@ const tabsView = (val:any,types:number) => { viewType.value = types val.isClick = true viewLayout.value = val - console.log("切换视图展示方式",val) + // console.log("切换视图展示方式",val) switch(types){ case 2: props.viewPage.list.isClick = false @@ -788,7 +789,6 @@ const tabsView = (val:any,types:number) => {