Răsfoiți Sursa

feat:删除打印

AmandaG 1 an în urmă
părinte
comite
4f4086b863

+ 0 - 2
src/components/MoreFilters/src/MoreFilters.vue

@@ -352,7 +352,6 @@ const changeAutoSelectvessel = (val: any) => {
   changeAutoSelect(InputForm.value, val, 'InputForm', 'transportation', 'vessel')
 }
 const changeAutoSelectvoyage = (val: any) => {
-  console.log(val)
   // changeAutoSelect(InputForm.value, val, 'InputForm', 'transportation', 'voyage')
   MoreFiltersObj.voyage = val
   MoreFiltersObj2.voyage = val
@@ -452,7 +451,6 @@ const changeAutoSelectPlacesAddType = (index: any, val: any) => {
 }
 const isError = ref(false)
 const changeAutoSelectVal = (val: any, value: any, boolaen: any) => {
-  console.log(boolaen, value)
   if (boolaen || value == true) {
     isError.value = true
   } else {

+ 0 - 4
src/views/Dashboard/src/DashboardView.vue

@@ -359,7 +359,6 @@ const ClickParams = (val: any) => {
   const reportList: any = {}
   // ETD to ETA(DAYS)点击跳转
   if (val == 'ETD to ETA (Days)') {
-    console.log(pie_chart_ETD.value)
     $api
       .ClickEtdToEta({
         _reportRef: pie_chart_ETD.value[0].paramsdata.name,
@@ -427,7 +426,6 @@ const ClickParams = (val: any) => {
   }
   // KPIDeparture点击跳转
   else if (val == 'KPI0') {
-    console.log(pie_chart_kpi_departure.value)
     $api
       .ClickKPIDeparture({
         _reportRef: pie_chart_kpi_departure.value[0].paramsdata.name
@@ -472,7 +470,6 @@ const ClickParams = (val: any) => {
   else if (val == 'Top 10 Origin') {
     let array: any = []
     array.push(seller_chart_top10_origin.value[0].paramsdata)
-    console.log(array)
     $api
       .ClickTop10({
         _reportRef: array,
@@ -498,7 +495,6 @@ const ClickParams = (val: any) => {
   else if (val == 'Top 10 Destination') {
     let array: any = []
     array.push(seller_chart_top10_destination.value[0].paramsdata)
-    console.log(array)
     $api
       .ClickTop10({
         _reportRef: array,

+ 0 - 1
src/views/Dashboard/src/components/TopMap.vue

@@ -75,7 +75,6 @@ const GetTop10ODEcharts = () => {
   $api.GetTop10ODEcharts({}).then((res: any) => {
     if (res.code === 200) {
       MapDataList.value = res.data.toporiginMap
-      console.log(MapDataList.value)
     }
   })
 }

+ 0 - 3
src/views/OperationLog/src/components/BookingTable/src/BookingTable.vue

@@ -91,7 +91,6 @@ const getTableData = async (isInit: boolean, isPageChange?: boolean) => {
     })
     .then((res: any) => {
       if (res.code === 200) {
-        console.log(res.data)
         bookingTable.value.data = res.data.searchData
         pageInfo.value.total = Number(res.data.rc)
       }
@@ -101,7 +100,6 @@ const getTableData = async (isInit: boolean, isPageChange?: boolean) => {
   })
 }
 const SearchOperationLog = (val: any) => {
-  console.log(val)
   searchdata = val
   tableLoading.value = true
   $api
@@ -113,7 +111,6 @@ const SearchOperationLog = (val: any) => {
     })
     .then((res: any) => {
       if (res.code === 200) {
-        console.log(res.data)
         bookingTable.value.data = res.data.searchData
         pageInfo.value.total = Number(res.data.rc)
         tableLoading.value = false

+ 0 - 2
src/views/Tracking/src/TrackingView.vue

@@ -126,7 +126,6 @@ const DateRangeSearch = (val: any, value: any) => {
 }
 //MoreFiltersSearch
 const MoreFiltersSearch = (val: any, value: any) => {
-  console.log(value)
   filterData.morefiltersData = []
   for (const key in val) {
     let str = `${key}:${val[key]}`
@@ -260,7 +259,6 @@ const Gettrackingdata = () => {
     })
     .then((res: any) => {
       if (res.code === 200) {
-        console.log(res.data)
         TransportListItem.value = res.data.TransportList
         TagsList.value = res.data.tagsList
       }