master
lion 3 years ago
parent 18aff53b82
commit 536cb020f2

@ -99,6 +99,9 @@
<i class="el-icon-caret-bottom" /> <i class="el-icon-caret-bottom" />
</div> </div>
<el-dropdown-menu slot="dropdown" class="user-dropdown"> <el-dropdown-menu slot="dropdown" class="user-dropdown">
<el-dropdown-item disabled>
<span style="color:#bf617c">{{userName}}</span>
</el-dropdown-item>
<router-link to="/"> <router-link to="/">
<el-dropdown-item> 系统首页 </el-dropdown-item> <el-dropdown-item> 系统首页 </el-dropdown-item>
</router-link> </router-link>
@ -145,6 +148,7 @@ export default {
//isLoading:false, //isLoading:false,
noticeData: [], noticeData: [],
messageStatus: 2, messageStatus: 2,
userName:"",
// columns:[ // columns:[
// { // {
// width: 160, // width: 160,
@ -245,6 +249,7 @@ export default {
}, },
mounted() { mounted() {
this.getNotice(); this.getNotice();
this.userName = this.$store.state.user?.name
}, },
}; };
</script> </script>

@ -344,6 +344,12 @@
label: "区域", label: "区域",
width: 110 width: 110
}, },
{
prop: "member.address",
label: "地址",
width: 160,
align:'left'
},
{ {
prop: "member.due_date", prop: "member.due_date",
label: "预产期", label: "预产期",
@ -531,7 +537,7 @@
this.select.end_updated = e[1]+' 23:59:59'; this.select.end_updated = e[1]+' 23:59:59';
}else{ }else{
this.select.start_updated = "" this.select.start_updated = ""
this.select.start_updated = "" this.select.end_updated = ""
} }
}, },
changePayDate(e) { changePayDate(e) {

Loading…
Cancel
Save