Commit 941fa711 authored by xiongjinke's avatar xiongjinke

修改

parent dfd34195
......@@ -49,7 +49,7 @@
<!-- 弹窗关联项目 -->
<el-drawer
title="添加合作情况"
size="45%"
size="50%"
:visible.sync="drawer"
:direction="direction"
:with-header="false"
......@@ -501,8 +501,25 @@ export default {
font-size: 14px;
color: rgba(35,35,35,0.4);
margin-left: 28px;
display: flex;
//flex: 1;
span{
color: rgba(35,35,35,0.8);
display: inline-block;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
cursor: pointer;
flex: 1;
}
&:nth-child(1){
max-width: 15%;
}
&:nth-child(2){
max-width: 30%;
}
&:nth-child(3){
max-width: 50%;
}
}
}
......
......@@ -50,7 +50,7 @@
<!-- 决策链条 -->
<DecisionMaking v-if="currentPath.pathName=='decisionMaking'" :customer-ids="customerId" :companyInfo="companyInfo" />
<!-- 跟进记录 -->
<Gjjl v-if="currentPath.pathName=='gjjl'" types="gjdt" :customer-ids="customerId" />
<Gjjl v-if="currentPath.pathName=='gjjl'" :isDisabled='false' types="gjdt" :customer-ids="customerId" />
</template>
</div>
......@@ -172,6 +172,16 @@ export default {
},
mounted() {
},
activated(){
if (this.$route.query.path) { // 获取跳转对应板块
this.currentPath.pathName = this.$route.query.path
}else{
this.currentPath.pathName = 'overview'
}
if (this.$route.query.customerId) { // 判断是否显示
this.customerId = this.$route.query.customerId
}
},
methods: {
showPartPage(e){
this.currentPath = e
......
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