diff --git a/src/api/yh/dashboard.js b/src/api/yh/dashboard.js
new file mode 100644
index 0000000..3dbe699
--- /dev/null
+++ b/src/api/yh/dashboard.js
@@ -0,0 +1,10 @@
+import request from '@/utils/request.js'
+
+// 获取员工产量统计
+export function dashboardUserProd(params) {
+ return request({
+ url: "/yh/dashboard/userProd",
+ method: 'get',
+ params
+ })
+}
\ No newline at end of file
diff --git a/src/components/Business/Price/PriceNewDrawer.vue b/src/components/Business/Price/PriceNewDrawer.vue
index c08b77c..d9fcf72 100644
--- a/src/components/Business/Price/PriceNewDrawer.vue
+++ b/src/components/Business/Price/PriceNewDrawer.vue
@@ -51,7 +51,7 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
搜索
重置
@@ -65,6 +95,18 @@
+
+
+
+ 总产量:
+ {{ statistics.totalNum || 0 }}
+
+
+ 总工资:
+ {{ statistics.totalPrice || 0 }} 元
+
+
+
@@ -162,6 +204,8 @@ import {
} from "@/api/yh/reportUserProd";
import {$listConfig, $showColumns, $showSearch} from '@/utils/mixins';
import FormCol from "@/components/FormCol/index.vue";
+import DeptTreeSelect from '@/components/Business/Dept/DeptTreeSelect.vue';
+import {dashboardUserProd} from '@/api/yh/dashboard.js';
// 默认排序字段
const defaultSort = {
@@ -173,7 +217,7 @@ export default {
name: "ReportUserProd",
mixins: [$showColumns, $listConfig, $showSearch],
dicts: ['report_status'],
- components: {FormCol},
+ components: {FormCol, DeptTreeSelect},
props: {
query: {
type: Object,
@@ -247,7 +291,9 @@ export default {
num: [
{ required: true, message: "产量不能为空", trigger: "blur" }
]
- }
+ },
+ // 统计数据
+ statistics: {},
};
},
created() {
@@ -259,8 +305,14 @@ export default {
this.initSearchColumns();
this.initColumns();
this.getList();
+ this.getStatistics();
},
methods: {
+ getStatistics() {
+ dashboardUserProd(this.queryParams).then(res => {
+ this.statistics = res.data;
+ })
+ },
/** 当排序按钮被点击时触发 **/
onSortChange(column) {
if (column.order == null) {
@@ -300,6 +352,7 @@ export default {
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
+ this.getStatistics();
},
/** 重置按钮操作 */
resetQuery() {
@@ -367,3 +420,37 @@ export default {
}
};
+
+
diff --git a/vue.config.js b/vue.config.js
index 1ad2881..8d3b276 100644
--- a/vue.config.js
+++ b/vue.config.js
@@ -127,5 +127,10 @@ module.exports = {
})
config.optimization.runtimeChunk('single')
})
+
+ config.plugin('html').tap(args => {
+ args[0].version = new Date().getTime()
+ return args
+ })
}
}