From 3c71cc74e6dd5f1015329c64e11e8ec1cd7a97c1 Mon Sep 17 00:00:00 2001 From: inleft <inleft@qq.com> Date: Wed, 31 Aug 2022 18:11:16 +0800 Subject: [PATCH] 新增编辑页 日志列表接口 --- src/components/fixed/header.vue | 90 +++++++++++++++++++++++++++++++-------------- 1 files changed, 62 insertions(+), 28 deletions(-) diff --git a/src/components/fixed/header.vue b/src/components/fixed/header.vue index 8011ac1..3c7566f 100644 --- a/src/components/fixed/header.vue +++ b/src/components/fixed/header.vue @@ -1,20 +1,20 @@ <template> <a-row type="flex" justify="start"> <a-col v-bind="showSmall"> - <router-link to="/main1">Home »</router-link> - </a-col> - <a-col v-bind="showSmall"> - <router-link to="/main2">乐谱搜索 »</router-link> - </a-col> - <a-col v-bind="showSmall"> - <router-link to="/main3">我的网盘 »</router-link> - </a-col> - <a-col v-bind="showSmall"> - <router-link to="/main4">友人帐 »</router-link> + <div class="menu"> + <router-link to="/">Home</router-link> + <router-link to="/comment">碎碎念</router-link> + <router-link to="/link">友人帐</router-link> + <router-link to="/platform">月台</router-link> + <router-link to="/login">登录</router-link> + <router-link to="/edit" v-if="showHidenButton">编辑</router-link> + <!-- <router-link to="/comment">测试页</router-link> --> + </div> </a-col> <a-col v-bind="showMain"> - <a-auto-complete ref="mySearch" v-bind="search" @select="onSelect" @search="onSearch" @change="onChange"> - <a-input @keydown.enter="onSelect"> + <a-auto-complete v-model="search.value" :data-source="search.dataSource" ref="mySearch" v-bind="search" + @select="onSelect" @search="onSearch" @change="onChange"> + <a-input> <a-icon slot="suffix" type="search" class="certain-category-icon" /> </a-input> </a-auto-complete> @@ -25,8 +25,15 @@ </template> <script> + import myConstant from "../../config/myConstant.js" export default { mounted() { + let tempVisitorData = localStorage.getItem(myConstant.visitorDataKey); + if (tempVisitorData != null && JSON.parse(tempVisitorData).nickName == myConstant.userName) { + //this.$message.info("认证成功..") + this.showHidenButton = true + } + let self = this; let code = 0; let code2 = 0; @@ -66,28 +73,40 @@ }, data() { return { + showHidenButton: false, search: { - placeholder: "ctrl+shift+f/enter", - allowClear: true, + //placeholder: "ctrl+shift+f/enter", + placeholder: "搜索框未营业..", + // allowClear: true, // autoFocus: true, backfill: true, + value: '', dataSource: [], }, showSmall: { - xs: 6, - sm: 4, - md: 4, - lg: 4, - xl: 4, - xxl: 4, + xs: 24, + sm: 18, + md: 18, + lg: 18, + xl: 18, + xxl: 18, }, showMain: { xs: 0, - sm: 0, - md: 2, - lg: 2, - xl: 2, - xxl: 2, + sm: 6, + md: 6, + lg: { + span: 3, + offset: 3 + }, + xl: { + span: 3, + offset: 3 + }, + xxl: { + span: 3, + offset: 3 + }, } } @@ -103,12 +122,13 @@ console.log(e); }, onSearch(searchText) { - this.dataSource = !searchText ? [] : [searchText, searchText.repeat(2), searchText.repeat(3)]; + this.search.dataSource = !searchText ? [] : [searchText, searchText.repeat(2), searchText.repeat(3)]; console.log("补全.."); }, onSelect(value) { - console.log('回车', value); - this.$message.info("回车") + // console.log('回车', value); + this.$message.info("这个功能会等到内容足够多的时候再打开..") + // this.$message.info("回车,内容为" + value) }, onChange(value) { console.log('修改', value); @@ -120,3 +140,17 @@ }, } </script> +<style lang="less" scoped> + .menu { + -moz-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + -khtml-user-select: none; + user-select: none; + + a { + margin-left: 10px; + } + + } +</style> -- Gitblit v1.9.1