Commit f4efef4b authored by lanbaoming's avatar lanbaoming

2024-05-07待办保活

parent d3eb5c5f
...@@ -92,7 +92,7 @@ ...@@ -92,7 +92,7 @@
import {getTodoTaskPage} from '@/api/bpm/task' import {getTodoTaskPage} from '@/api/bpm/task'
import { cancelProcessInstance } from "@/api/bpm/processInstance"; import { cancelProcessInstance } from "@/api/bpm/processInstance";
export default { export default {
name: "Todo", name: "BpmTaskTodo",
components: {}, components: {},
data() { data() {
return { return {
......
This diff is collapsed.
...@@ -328,6 +328,7 @@ ...@@ -328,6 +328,7 @@
<el-table-column label="控货总V值" align="center" prop="khSumV" /> <el-table-column label="控货总V值" align="center" prop="khSumV" />
<el-table-column label="控货占比" align="center" prop="khSumZb" /> <el-table-column label="控货占比" align="center" prop="khSumZb" />
<!--2024-05-06和张工确认这几个参数无取数逻辑,暂时隐藏--> <!--2024-05-06和张工确认这几个参数无取数逻辑,暂时隐藏-->
<!--
<el-table-column <el-table-column
label="是否首次成交" label="是否首次成交"
v-show="false" v-show="false"
...@@ -343,7 +344,7 @@ ...@@ -343,7 +344,7 @@
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ parseTime(scope.row.firstDate) }}</span> <span>{{ parseTime(scope.row.firstDate) }}</span>
</template> </template>
</el-table-column> </el-table-column>-->
<!--2024-05-06和张工确认这几个参数无取数逻辑,暂时隐藏--> <!--2024-05-06和张工确认这几个参数无取数逻辑,暂时隐藏-->
<el-table-column label="提货率" align="center" prop="thL" /> <el-table-column label="提货率" align="center" prop="thL" />
<el-table-column label="客户业绩类型" align="center" prop="cusYjType" /> <el-table-column label="客户业绩类型" align="center" prop="cusYjType" />
...@@ -538,7 +539,9 @@ export default { ...@@ -538,7 +539,9 @@ export default {
watch: { watch: {
$route(to) { $route(to) {
//lanbm 2024-05-06 解决重新进入参数不刷新的问题 //lanbm 2024-05-06 解决重新进入参数不刷新的问题
if (this.$route.name == "客户分析") { //this.$route.name == "客户分析" 用name做逻辑判断,有时候菜单名称会变化
//"/report/customer_analysis" lanbm 2024-05-07 调整为根据path做逻辑判断
if (this.$route.path== "/report/customer_analysis") {
this.doLoadData(); this.doLoadData();
} }
}, },
...@@ -765,6 +768,24 @@ export default { ...@@ -765,6 +768,24 @@ export default {
return strDate; return strDate;
}, },
test() { test() {
//当前路径
let sP=this.$route.path;
alert(sP);
//当前参数
let sPar= this.$route.params;
alert(sPar);
//路由名称
let sRoute=this.$route.name;
alert(sRoute);
//路由查询参数
let sQ=this.$route.query;
alert(sQ.toString());
//路由匹配项
let sM=this.$route.matched;
alert(sM.toString());
return;
this.DeptEx.id = this.objEcwReportPermission.deptId; this.DeptEx.id = this.objEcwReportPermission.deptId;
listServiceUser(this.DeptEx).then((response) => { listServiceUser(this.DeptEx).then((response) => {
let json1 = JSON.stringify(response.data); let json1 = JSON.stringify(response.data);
...@@ -772,8 +793,6 @@ export default { ...@@ -772,8 +793,6 @@ export default {
return; return;
}); });
return;
let json1 = JSON.stringify(this.deptOptions); let json1 = JSON.stringify(this.deptOptions);
alert(json1); alert(json1);
return; return;
......
...@@ -63,7 +63,8 @@ ...@@ -63,7 +63,8 @@
<el-button <el-button
type="primary" type="primary"
plain plain
icon="el-icon-plus" v-show="false" icon="el-icon-plus"
v-show="false"
size="mini" size="mini"
@click="TestFun" @click="TestFun"
> >
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment