| | |
| | | <!-- <a-button @click="showDrawer2"> |
| | | 抽屉2 |
| | | </a-button> --> |
| | | |
| | | <a-button @click="showMessage"> |
| | | <a-badge status="success"> |
| | | 消息 |
| | |
| | | <a-icon :type="iconType" /> |
| | | </transition> |
| | | </a-button> |
| | | |
| | | <a-button @click="addLink" v-if="showHidenButton"> |
| | | 加链 |
| | | <a-icon type="smile" /> |
| | | </a-button> |
| | | |
| | | <!-- <a-button> |
| | | 工具 |
| | |
| | | </template> |
| | | |
| | | <script> |
| | | import myConstant from "../../config/myConstant.js" |
| | | |
| | | export default { |
| | | data() { |
| | | return { |
| | | iconType: "arrows-alt", |
| | | screen: false, |
| | | screenModel: "拉伸" |
| | | screenModel: "拉伸", |
| | | showHidenButton: false, |
| | | } |
| | | }, |
| | | mounted() { |
| | | let tempVisitorData = localStorage.getItem(myConstant.visitorDataKey); |
| | | if (tempVisitorData != null && JSON.parse(tempVisitorData).nickName == myConstant.userName) { |
| | | //this.$message.info("认证成功..") |
| | | this.showHidenButton = true |
| | | } |
| | | }, |
| | | methods: { |
| | | addLink() { |
| | | this.$emit('addLink') |
| | | }, |
| | | showMessage() { |
| | | this.$emit('showMessage') |
| | | }, |