+
{{ details.trunklineHandOrderDataInfo.handleVolume || 0 }}
m³
@@ -1842,15 +2017,51 @@ const initOpenOrderData = async () => {
/** 请求开单收入 */
const initOpenOrderIncome = async () => {
+ const _obj: any = {};
+ const _keyArr = [
+ 'totalFee',
+ 'monthFee',
+ 'dayFee',
+ 'monthTrunklineFee',
+ 'monthWarehouseFee',
+ 'monthDistributionFee',
+ 'monthBillladingFee',
+ 'monthInstallFee',
+ 'dayTrunklineFee',
+ 'dayWarehouseFee',
+ 'dayDistributionFee',
+ 'dayBillladingFee',
+ 'dayInstallFee',
+ ];
+ for (let i = 0; i < _keyArr.length; i++) {
+ const value = _keyArr[i];
+
+ _obj[value] = 0;
+ }
+ _obj.list = [];
+
try {
details.loadingObj.openOrderIncome = true;
const res = await postOpenOrderIncome({});
const { code, data } = res.data;
if (code !== 200) return;
- details.openOrderIncomeInfo = data || {};
+
+ for (let i = 0; i < data.length; i++) {
+ const value = data[i];
+
+ for (let i = 0; i < _keyArr.length; i++) {
+ const key = _keyArr[i];
+ value[key] = isNumber(value[key]) ? Number(value[key]) : 0;
+
+ _obj[key] = computeNumber(_obj[key], '+', value[key]).result;
+ }
+
+ _obj.list.push(value);
+ }
} catch (error) {
console.log('error :>> ', error);
} finally {
+ details.openOrderIncomeInfo = _obj;
details.loadingObj.openOrderIncome = false;
}
};
@@ -1887,15 +2098,37 @@ const initHandOrderData = async () => {
/** 请求干线发运数据 */
const initTrunklineHandOrderData = async () => {
+ const _obj: any = {};
+ const _keyArr = ['waybillNum', 'handleNum', 'handleWeight', 'handleVolume'];
+ for (let i = 0; i < _keyArr.length; i++) {
+ const value = _keyArr[i];
+
+ _obj[value] = 0;
+ }
+ _obj.list = [];
+
try {
details.loadingObj.trunklineHandOrderData = true;
const res = await postTrunklineHandOrderData({});
const { code, data } = res.data;
if (code !== 200) return;
- details.trunklineHandOrderDataInfo = data || {};
+
+ for (let i = 0; i < data.length; i++) {
+ const value = data[i];
+
+ for (let i = 0; i < _keyArr.length; i++) {
+ const key = _keyArr[i];
+ value[key] = isNumber(value[key]) ? Number(value[key]) : 0;
+
+ _obj[key] = computeNumber(_obj[key], '+', value[key]).result;
+ }
+
+ _obj.list.push(value);
+ }
} catch (error) {
console.log('error :>> ', error);
} finally {
+ details.trunklineHandOrderDataInfo = _obj;
details.loadingObj.trunklineHandOrderData = false;
}
};
@@ -2431,117 +2664,13 @@ type OptionObjType = { prop: string; tip: string };
// 定义两种颜色
const colors = ['#008CBA', '#808080']; // 蓝色和灰色
-// /** 获取百分比 */
-// const getProportion = (value: number, total: number) => {
-// if (total === 0) return '0%';
-// if (!isNumber(value)) return '0%';
-// return computeNumber(Number(value), '/', total).next('*', 100).result.toFixed(2) + '%';
-// };
+
/** 获取百分比 */
const getProportion = (value: number) => {
if (!isNumber(value)) return '0%';
return (value * 100).toFixed(2) + '%';
};
-// /** 显示图表 */
-// const handleShowEcharts = (data: any[], title: string, optionObj: OptionObjType) => {
-// console.log('data :>> ', data);
-// console.log('title :>> ', title);
-
-// console.log('optionObj :>> ', optionObj);
-
-// if (getObjType(data) !== 'array') return;
-
-// const _arr = [];
-
-// let _total = 0;
-
-// for (let i = 0; i < data.length; i++) {
-// const value = data[i];
-
-// value[optionObj.prop] = isNumber(value[optionObj.prop]) ? Number(value[optionObj.prop]) : 0;
-
-// _total = computeNumber(_total, '+', value[optionObj.prop]).result;
-// }
-
-// for (let i = 0; i < data.length; i++) {
-// const value = data[i];
-
-// let isContinue = false;
-
-// for (let j = 0; j < _arr.length; j++) {
-// const item = _arr[j];
-// if (item.value > value[optionObj.prop]) continue;
-
-// _arr.splice(j, 0, {
-// name: value.warehouseName + ' - ' + getProportion(value[optionObj.prop], _total),
-// value: value[optionObj.prop],
-// });
-// isContinue = true;
-// break;
-// }
-// if (isContinue) continue;
-
-// _arr.push({
-// name: value.warehouseName + ' - ' + getProportion(value[optionObj.prop], _total),
-// value: value[optionObj.prop],
-// });
-// }
-
-// nextTick(() => {
-// // 初始化Echarts
-// const chartDom = document.getElementById('echartBox');
-// const myChart = echarts.init(chartDom);
-
-// const option = {
-// title: {
-// text: title,
-// // subtext: 'Fake Data',
-// left: 'right',
-// },
-// tooltip: {
-// trigger: 'item',
-// },
-// legend: {
-// orient: 'vertical',
-// left: 'left',
-// },
-// series: [
-// {
-// name: optionObj.tip,
-// // 数据显示类型 -- 扇形
-// type: 'bar',
-// // radius: '50%',
-// // 数据
-// data: _arr,
-// // 激活样式
-// emphasis: {
-// itemStyle: {
-// shadowBlur: 10,
-// shadowOffsetX: 0,
-// shadowColor: 'rgba(0, 0, 0, 0.5)',
-// },
-// label: {
-// show: true,
-// fontSize: 20,
-// fontWeight: 'bold',
-// },
-// },
-// // 扇区显示
-// radius: ['30%', '70%'],
-// // avoidLabelOverlap: false,
-// // 扇区间隔
-// // padAngle: 2,
-// // 最小显示角度
-// // minShowLabelAngle: 5,
-// // 距离左侧的距离
-// left: '20%',
-// },
-// ],
-// };
-
-// option && myChart.setOption(option);
-// });
-// };
+
// 定义显示图表的函数,接受数据、标题、选项对象和图表类型(默认为饼图)
const handleShowEcharts = (
data: any[],
@@ -2721,6 +2850,11 @@ const handleDetails = async (type, title, optionObj: OptionObjType) => {
res = await postOpenOrderDataByWarehouseId({});
break;
+ // 开单收入
+ case 'openOrderIncomeInfo':
+ handleShowEcharts(details.openOrderIncomeInfo.list, title, optionObj);
+ break;
+
// 库位数据
case 'allocationDataColumn':
res = await postAllocationDataByWarehouseId({});
@@ -2731,6 +2865,10 @@ const handleDetails = async (type, title, optionObj: OptionObjType) => {
res = await postHandOrderDataByWarehouseId({});
break;
+ case 'trunklineHandOrderDataInfo':
+ handleShowEcharts(details.trunklineHandOrderDataInfo.list, title, optionObj);
+ break;
+
// 干线车次数据
case 'trunklineCarsDataColumn':
handleShowEcharts(details.trunklineCarsDataInfo.list, title, optionObj);
diff --git a/src/views/distribution/artery/AddVehicleStowage.vue b/src/views/distribution/artery/AddVehicleStowage.vue
index e7fb4bd8..2b8480bb 100644
--- a/src/views/distribution/artery/AddVehicleStowage.vue
+++ b/src/views/distribution/artery/AddVehicleStowage.vue
@@ -423,6 +423,7 @@
:columnList="details.columnList"
:tableData="details.data"
@inputTxt="inputsc"
+ @selectCheck="selectsc"
:loading="loadingObj.oldListLoading"
@selection="selectionChange"
:tableRowClassName="handleSetRowClassName"
@@ -815,6 +816,8 @@ import {
debounce,
handleClearTableQuery,
getObjType,
+ handleSelectQuery,
+ handleTranslationDataSeclect,
} from '@/utils/util';
import {
columnList,
@@ -1155,6 +1158,7 @@ const initOriginWarehouseOrder = debounce(async (params = {}) => {
const { code, data } = res.data;
if (code !== 200) return;
details.data = data.records;
+ handleTranslationDataSeclect(details.data, details.columnList);
details.page.total = data.total;
} catch (error) {
console.log('error :>> ', error);
@@ -1560,12 +1564,7 @@ const btnsc = () => {};
/** 表格表头下拉框选择 */
const selectsc = (index, row) => {
- details.query[row.prop] = index;
- if (!index && index !== 0) delete details.query[row.prop];
- if (row.prop === 'certificateTypeName') {
- details.query['certificateType'] = index;
- if (!index) delete details.query['certificateType'];
- }
+ handleSelectQuery(index, row, details.query);
initOriginWarehouseOrder();
};
diff --git a/src/views/distribution/artery/VehicleNodeImgs.vue b/src/views/distribution/artery/VehicleNodeImgs.vue
index 0195d700..21d9f4d8 100644
--- a/src/views/distribution/artery/VehicleNodeImgs.vue
+++ b/src/views/distribution/artery/VehicleNodeImgs.vue
@@ -6,33 +6,24 @@
-
-
handleCheckNode(item, index)"
>
- 龙泉仓
+ {{ item.nodeName }}
+
+
+
+
@@ -43,10 +34,20 @@
-
发车前图片
+
+
装车前图片
+
+
handleEdit('beforeLoad', beforeLoadImgArr, '装车前图片')"
+ >
+ 编辑
+
+
{{ item.title }}
@@ -61,24 +62,146 @@
:max-scale="7"
:min-scale="0.2"
:preview-src-list="item.imgArr.map(val => val.url)"
- :initial-index="index"
+ :initial-index="i"
fit="cover"
/>
-
发车前图片
-
-
+
+
发车前图片
+
+
handleEdit('boforeStart', boforeStartImgArr, '发车前图片')"
+ >
+ 编辑
+
+
+
{{ item.title }}
-
发车前图片
-
+
+
+
+
卸车前图片
+
+
handleEdit('beforeUnload', beforeUnloadImgArr, '卸车前图片')"
+ >
+ 编辑
+
+
+
+
{{ item.title }}
+
+
+
+
+
+
+
+
+
+
+
+
{{ item.title }}
+
+
+
+
+
+
item.imgArr.splice(i, 1)">
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/distribution/artery/VehicleStowage.vue b/src/views/distribution/artery/VehicleStowage.vue
index d50fb84d..e72b972a 100644
--- a/src/views/distribution/artery/VehicleStowage.vue
+++ b/src/views/distribution/artery/VehicleStowage.vue
@@ -1617,6 +1617,16 @@ const searchOrder = async () => {
details.loadingObj.searchOrder = false;
}
};
+
+const handleShowVehicleImgs = ({ row }) => {
+ $router.push({
+ path: '/distribution/artery/VehicleNodeImgs',
+ query: {
+ name: `${row.carsNo} - 节点图片`,
+ loadId: row.id,
+ },
+ });
+};
diff --git a/src/views/reportforms/SalesDepartmentIncomeReport.vue b/src/views/reportforms/SalesDepartmentIncomeReport.vue
index 0fce5108..d4409464 100644
--- a/src/views/reportforms/SalesDepartmentIncomeReport.vue
+++ b/src/views/reportforms/SalesDepartmentIncomeReport.vue
@@ -55,7 +55,7 @@
/>
-
+
+
+
+ 通知总数: {{ announcements.length }}
+
+
公告栏
+
+
+
+
+
+
+
标题:{{ item.title }}
+
时间:{{ item.releaseTime }}
+
+
+
+
+
+
+
+
+ 时间: {{ currentAnnouncement.releaseTime }}
+ 分类:{{ currentAnnouncement.categoryName }}
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/wel/index.vue b/src/views/wel/index.vue
index bb0ec2e7..56153314 100644
--- a/src/views/wel/index.vue
+++ b/src/views/wel/index.vue
@@ -1,5 +1,8 @@
+
+
+
@@ -11,9 +14,17 @@
-
+