Commit 8c7a3f86 authored by 黄奎's avatar 黄奎

页面修改

parent de8a1c21
...@@ -69,9 +69,10 @@ ...@@ -69,9 +69,10 @@
height: 80px; height: 80px;
position: relative; position: relative;
} }
.stage_value .q-field__native span{
width:100%; .stage_value .q-field__native span {
overflow:hidden; width: 100%;
overflow: hidden;
} }
</style> </style>
<template> <template>
...@@ -440,13 +441,14 @@ ...@@ -440,13 +441,14 @@
QQ: "", QQ: "",
WeChatNo: "" WeChatNo: ""
}, },
NeedData: [],//客户需求列表 NeedData: [], //客户需求列表
noEdit: false,//是否可以修改编辑客户信息 noEdit: false, //是否可以修改编辑客户信息
isHaveOrder: false, //学员是否有订单 isHaveOrder: false, //学员是否有订单
userInfo: {}, //当前登录人员 userInfo: {}, //当前登录人员
}; };
}, },
created() { created() {
console.log("HHKHK")
this.userInfo = this.getLocalStorage(); this.userInfo = this.getLocalStorage();
this.getStuStageList(); this.getStuStageList();
this.getBasicList(); this.getBasicList();
...@@ -468,7 +470,7 @@ ...@@ -468,7 +470,7 @@
if (this.saveObj.noEdit && this.saveObj.noEdit == true) { if (this.saveObj.noEdit && this.saveObj.noEdit == true) {
this.noEdit = true; this.noEdit = true;
} }
} }
}, },
watch: { watch: {
...@@ -490,6 +492,8 @@ ...@@ -490,6 +492,8 @@
} }
if (item.CreateBy == this.userInfo.Id || isHaveAuth) { if (item.CreateBy == this.userInfo.Id || isHaveAuth) {
return true; return true;
} else if (item.StuId == 0) {
return true;
} else { } else {
return false; return false;
} }
...@@ -763,7 +767,7 @@ ...@@ -763,7 +767,7 @@
this.customObj.WeChatNo = tempDate.WeChatNo; this.customObj.WeChatNo = tempDate.WeChatNo;
this.customObj.StuNeeds = tempDate.StuNeeds; this.customObj.StuNeeds = tempDate.StuNeeds;
this.customObj.StuTel = tempDate.StuTel; this.customObj.StuTel = tempDate.StuTel;
//有订单 //有订单
if (tempDate.OrderCount && tempDate.OrderCount > 0) { if (tempDate.OrderCount && tempDate.OrderCount > 0) {
this.isHaveOrder = true; this.isHaveOrder = true;
} }
......
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