Commit 7c89cffb by cocomilk2012

update

parent a2319300
Showing with 4 additions and 4 deletions
...@@ -36,11 +36,11 @@ ...@@ -36,11 +36,11 @@
position="bottom" position="bottom"
:style="popupStyle" :style="popupStyle"
> >
<div class="close-box"> <div class="close-box" @click="expand_click">
<img src="../assets/images/ic_unfold@2x.png" /> <img src="../assets/images/ic_unfold@2x.png" />
</div> </div>
<div class="green-bg"> <div class="green-bg">
<div class="fe-list-box" @click="expand_click"> <div class="fe-list-box">
<div class="fe-list-title"> <div class="fe-list-title">
<h3>任务记录</h3> <h3>任务记录</h3>
</div> </div>
...@@ -117,7 +117,7 @@ export default class FlexEmployee extends Vue { ...@@ -117,7 +117,7 @@ export default class FlexEmployee extends Vue {
get popupStyle() { get popupStyle() {
if (this.expand) { if (this.expand) {
return { height: "66%" }; return { height: "63%" };
} else { } else {
return { height: "86%" }; return { height: "86%" };
} }
...@@ -147,7 +147,6 @@ export default class FlexEmployee extends Vue { ...@@ -147,7 +147,6 @@ export default class FlexEmployee extends Vue {
this.name = localStorage.getItem("name") as string; this.name = localStorage.getItem("name") as string;
this.birthday = localStorage.getItem("birthday") as string; this.birthday = localStorage.getItem("birthday") as string;
const idNo = window.atob(decodeURI(String(this.$route.query.id_no))); const idNo = window.atob(decodeURI(String(this.$route.query.id_no)));
console.log("idNo=", idNo);
let params = { let params = {
idNo: idNo //371327198511175134 idNo: idNo //371327198511175134
}; };
...@@ -334,6 +333,7 @@ export default class FlexEmployee extends Vue { ...@@ -334,6 +333,7 @@ export default class FlexEmployee extends Vue {
width: 100%; width: 100%;
height: 24px; height: 24px;
padding-top: 10px; padding-top: 10px;
padding-bottom: 10px;
cursor: pointer; cursor: pointer;
} }
.close-box img { .close-box img {
......
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 sign in to comment