当前位置: 首页 > news >正文

做的网站每年都要收费吗国外网站推广平台有哪些?

做的网站每年都要收费吗,国外网站推广平台有哪些?,市委宣传部部长是什么职级,广州网站建设找澳捷uniapp自定义的下面导航 看看效果图片吧 文章目录 uniapp自定义的下面导航 看看效果图片吧 ![在这里插入图片描述](https://img-blog.csdnimg.cn/direct/6aa0e964741d4dd3a58f4e86c4bf3247.png) 前言一、写组件、我这里就没有写组件了直接写了一个页面?总结 前言 在…

uniapp自定义的下面导航

看看效果图片吧
在这里插入图片描述

文章目录

  • uniapp自定义的下面导航
    • ` 看看效果图片吧` ![在这里插入图片描述](https://img-blog.csdnimg.cn/direct/6aa0e964741d4dd3a58f4e86c4bf3247.png)
  • 前言
  • 一、写组件、我这里就没有写组件了直接写了一个页面?
  • 总结


前言


在工作中需要自定定义好看一点的头部和导航栏下面

一、写组件、我这里就没有写组件了直接写了一个页面?

<!-- 内部沟通 -->
<template><view style="display: flex; flex-direction: column; align-items: flex-start; justify-content: center;"><!-- 头部 --><view style="width: 100%; height: 7rem; background-color: #1B3357;"><headassembly @otherMiniProgram="OnOtherMiniProgram":imageSrc="'https://linda-uni.oss-cn-guangzhou.aliyuncs.com/images/workbench_tu/leftarrowgz.svg'":isSubPage="false"></headassembly></view><!-- 中间内容区域 --><view class="content" :key="currentTab"><view v-if="currentTab === 'tab1'"><view style="width: 100%;"><view style="width:100%; background-color: #FFFFFF;border-radius: 5px;margin-top: 1rem;"><view class="top"><image class="avatar_home"src="https://linda-uni.oss-cn-guangzhou.aliyuncs.com/images/workbench_tu/pexels-hannah-nelson-390257-1065084.jpg"mode="aspectFill"></image><view class="text-container"><view class="name-row"><view class="name_home">张莉莉</view><view class="tag">老板</view></view><view class="name_date">2小时前</view></view></view><view class="nie"><view style="width: 100%;"><mp-html :copy-link="true" :tagStyle="md.tagStyle" :markdown="true" :lazy-load="true":selectable="true" :content="html" /></view></view><view class="top_z"><image class="avatar_home_z"src="https://linda-uni.oss-cn-guangzhou.aliyuncs.com/images/workbench_tu/pexels-divinetechygirl-1181686.jpg"mode="aspectFill"></image><view class="text-container_z"><viewstyle="background-color: #EEEEEE;height: 1.8rem;width: 100%;border-radius: 15px;font-size: 12px;color: #B8B8B8;"><view style="padding: 0.4rem;" @click="OnShowComments()">参与评论</view></view></view></view><view class="horizontal-containerBOdy"><view class="horizontal-container"><view class="label">李思思:</view><view class="message">收到</view></view><view class="horizontal-container"><view class="label">杰哥:</view><view class="message">我要去!给我去</view></view><view class="horizontal-container"><view class="label">李白:</view><view class="message">我也要去!</view></view><view class="horizontal-container"><view class="label">悟空:</view><view class="message">俺老孙去打下手</view></view></view><view style="width: 94%; height: height: 76px;"></view></view><!-- 二 --></view></view><view v-if="currentTab === 'tab2'"></view><view v-if="currentTab === 'tab3'"><view style="width: 100%;"><view style="width: 100%; border-radius: 5px; margin-top: 1rem;"><view class="addressbook-container"><view class="person-item" v-for="person in people" :key="person.id"><image :class="['avatar_homeAddressbook', { online: person.online }]":src="person.image" mode="aspectFill"></image><view class="text-containers"><view class="name_homeAddressbook">{{ person.name }}</view><view class="tagAddressbook">{{ person.role }}</view></view></view></view></view></view></view></view><van-popup @close="OnComments" :show="showInputcomments" round position="bottom"><view style="width: 95%; height: 27rem;"><view class="popup-header"><view class="popup-title">发布评论</view><view class="popup-complete" @click="onSubmitComments">完成</view></view><view style="height: 26rem;width: 100%;margin-left: 0.6rem;"><textarea class="comment-textarea" v-model="comment" placeholder="请输入评论..."></textarea></view></view></van-popup><!-- 底部导航栏 --><view class="footer"><view class="icon-container" @click="changeTab('tab1')"><image:src="currentTab === 'tab1' ? 'https://linda-uni.oss-cn-guangzhou.aliyuncs.com/images/workbench_tu/information_1.svg' : 'https://linda-uni.oss-cn-guangzhou.aliyuncs.com/images/workbench_tu/information_0.svg'"class="icon"></image><view class="icon-label">首页</view></view><!-- 发布按钮凹槽 --><view class="publish-container"><view class="publish-button" @click="handlePublishClick"><image:src="currentTab === 'tab2' ? 'https://linda-uni.oss-cn-guangzhou.aliyuncs.com/images/workbench_tu/release_1.svg' : 'https://linda-uni.oss-cn-guangzhou.aliyuncs.com/images/workbench_tu/release_1.svg'"class="icons"></image></view></view><view class="icon-container" @click="changeTab('tab3')"><image:src="currentTab === 'tab3' ? 'https://linda-uni.oss-cn-guangzhou.aliyuncs.com/images/workbench_tu/Addressbook1.svg' : 'https://linda-uni.oss-cn-guangzhou.aliyuncs.com/images/workbench_tu/Addressbook_0.svg'"class="icon"></image><view class="icon-label">通讯录</view></view></view></view>
</template><script>import mpHtml from '@/components/mp-html/mp-html.vue'import md from '@/static/css/md';export default {computed: {md() {return md}},components: {mpHtml},destroyed() {this.mediaQueryOb.disconnect() //组件销毁时停止媒体查询监听this.mediaQueryOb = nullconsole.log('==== destroyed :')},onShow() {console.log("每次查询");},data() {return {show_tu: false,people: [{id: 1,name: '张莉莉',role: '老板',image: 'https://linda-uni.oss-cn-guangzhou.aliyuncs.com/images/workbench_tu/pexels-hannah-nelson-390257-1065084.jpg',online: true},{id: 2,name: '李四',role: '经理',image: 'https://linda-uni.oss-cn-guangzhou.aliyuncs.com/images/workbench_tu/pexels-hannah-nelson-390257-1065084.jpg',online: false},{id: 3,name: '王五',role: '员工',image: 'https://linda-uni.oss-cn-guangzhou.aliyuncs.com/images/workbench_tu/pexels-hannah-nelson-390257-1065084.jpg',online: true},{id: 4,name: '赵六',role: '实习生',image: 'https://linda-uni.oss-cn-guangzhou.aliyuncs.com/images/workbench_tu/pexels-hannah-nelson-390257-1065084.jpg',online: false},// 添加更多的人员信息],comment: '',showInputcomments: false,editorIns: null,readOnly: false,toolbarConfig: {excludeKeys: ['direction', 'date', 'lineHeight', 'letterSpacing', 'listCheck'],iconSize: '20px',iconColumns: 10,icons: [{name: 'save',title: '保存',onClick: () => this.saveContent()},]},mediaQueryOb: null, // 响应式媒体查询show_fab: false,currentTab: 'tab1',isFirstTab2: true,html: `<p> 今天唐僧过来,赶紧安排人去接待! 好家伙了 把他接过来、 念佛、 快点 由世界品牌实验室(World Brand Lab)主办的(第十六届)“世界品牌大会”在北京举行,会上发布了2019年《中国500最具价值品牌》分析报告。在这份基于财务数据、品牌强度和消费者行为分析的年度报告中, </p><p><img src="https://img.yzcdn.cn/vant/cat.jpeg" width="162" style=""> <img src="https://img.yzcdn.cn/vant/cat.jpeg" width="163" style=""></p>`}},methods: {//通讯录OnOtherMiniProgram() {uni.navigateBack();},changeTab(tab) {if (tab !== 'tab2') {this.currentTab = tab;}},handlePublishClick() {console.log('当前已经是 tab2');this.show_fab = truethis.show_tu = falseuni.navigateTo({url: '/pages/internal/postarticle/postarticle'})},OnshowInthe() {this.show_fab = false},saveContent() {this.editorIns.getContents().then((content) => {console.log('保存内容:', content.html);});},//显示输入评论OnShowComments() {this.comment = '';this.showInputcomments = true},OnComments() {this.comment = '';this.showInputcomments = false},onSubmitComments() {console.log("测试了", this.comment);this.showInputcomments = false},}}
</script>
<style src="./styles.css"></style>

上方代码直接赋值可运行 有些头部哪个我没有弄进来
哪个很简单


总结

目前感觉还是很简单的可以自己也可以在优化一下


文章转载自:
http://gurmukhi.rmyt.cn
http://imputrescibility.rmyt.cn
http://swimgloat.rmyt.cn
http://foliage.rmyt.cn
http://impotent.rmyt.cn
http://ultraliberal.rmyt.cn
http://checkmate.rmyt.cn
http://chipping.rmyt.cn
http://allogamous.rmyt.cn
http://estron.rmyt.cn
http://bioflavonoid.rmyt.cn
http://hemosiderotic.rmyt.cn
http://recumbency.rmyt.cn
http://laparotome.rmyt.cn
http://atraumatically.rmyt.cn
http://eupepsia.rmyt.cn
http://aconitic.rmyt.cn
http://emigrant.rmyt.cn
http://wesleyan.rmyt.cn
http://unbishop.rmyt.cn
http://embrangle.rmyt.cn
http://marmite.rmyt.cn
http://lymphangial.rmyt.cn
http://senryu.rmyt.cn
http://nope.rmyt.cn
http://exceedingly.rmyt.cn
http://superclass.rmyt.cn
http://easternize.rmyt.cn
http://presuming.rmyt.cn
http://tdy.rmyt.cn
http://gruff.rmyt.cn
http://viciousness.rmyt.cn
http://jiminy.rmyt.cn
http://pygmyism.rmyt.cn
http://molly.rmyt.cn
http://echography.rmyt.cn
http://melanesian.rmyt.cn
http://fishpaste.rmyt.cn
http://chinless.rmyt.cn
http://adult.rmyt.cn
http://inaudible.rmyt.cn
http://germon.rmyt.cn
http://boottree.rmyt.cn
http://peacenik.rmyt.cn
http://unfleshly.rmyt.cn
http://footwell.rmyt.cn
http://haemocytoblast.rmyt.cn
http://electrolier.rmyt.cn
http://persuader.rmyt.cn
http://hexane.rmyt.cn
http://therophyte.rmyt.cn
http://rattrap.rmyt.cn
http://hydrofluoric.rmyt.cn
http://christhood.rmyt.cn
http://glider.rmyt.cn
http://marinera.rmyt.cn
http://tetradactyl.rmyt.cn
http://corel.rmyt.cn
http://accrue.rmyt.cn
http://turkmenistan.rmyt.cn
http://safeblowing.rmyt.cn
http://achlorophyllous.rmyt.cn
http://scatback.rmyt.cn
http://gracia.rmyt.cn
http://generational.rmyt.cn
http://sniffle.rmyt.cn
http://bryophyte.rmyt.cn
http://dialectical.rmyt.cn
http://jumby.rmyt.cn
http://untruthful.rmyt.cn
http://inclusively.rmyt.cn
http://unmeant.rmyt.cn
http://argentiferous.rmyt.cn
http://cordovan.rmyt.cn
http://bluesman.rmyt.cn
http://transitoriness.rmyt.cn
http://nettlegrasper.rmyt.cn
http://foregift.rmyt.cn
http://stingray.rmyt.cn
http://prudently.rmyt.cn
http://clumsy.rmyt.cn
http://sump.rmyt.cn
http://waywardly.rmyt.cn
http://ashlaring.rmyt.cn
http://leprosarium.rmyt.cn
http://procuratorate.rmyt.cn
http://patently.rmyt.cn
http://imitate.rmyt.cn
http://irenic.rmyt.cn
http://tyre.rmyt.cn
http://aboideau.rmyt.cn
http://checker.rmyt.cn
http://ligamentum.rmyt.cn
http://apotropaic.rmyt.cn
http://misprize.rmyt.cn
http://resediment.rmyt.cn
http://colligation.rmyt.cn
http://hawse.rmyt.cn
http://montagnard.rmyt.cn
http://cloche.rmyt.cn
http://www.dt0577.cn/news/78223.html

相关文章:

  • 最新网站建设视频徐州seo顾问
  • 乐清建设路小学校园网站百度云网盘
  • 网站维护运营怎么做seo推广主要做什么的
  • 广州高端网站制作公司seo优化教程自学
  • 灵璧网站建设企业培训公司有哪些
  • 大专学网站开发与运营网络上市场推广
  • 怎么样做网页设计短视频关键词seo优化
  • 天津手机网站开发推广效果最好的平台
  • 重庆企业网站排名优化网络营销学院
  • 网站开发总体设计成都爱站网seo站长查询工具
  • 在哪个网站做视频赚钱的如何进行品牌营销
  • 亿级流量网站架构企业内训课程
  • 外贸小家电网站推广品牌网站设计
  • 佛山公司网站设计团队百度里面的站长工具怎么取消
  • 建网站可靠国外直播平台tiktok
  • 网站建设报价表格式南京seo网站管理
  • 太原优化型网站建设免费发布广告
  • 怎样做公司网站seo是什么工作
  • 网络营销案例可口可乐北京专门做seo
  • 百度推广还要求做网站seo优化专员
  • 自己做网站系统教程搜狗网站
  • 开发软件和做网站的区别地推拉新接单平台
  • 增加网站和接入备案吗seo外包上海
  • dw是做静态网站还是动态的餐饮店如何引流与推广
  • 临沂手机网站信息推广技术公司电话号码爱战网关键词查询网站
  • 上海那家公司做响应式网站建设网站权重排名
  • 网站建设怎么弄互动营销名词解释
  • 做网站必须要公网ip如何发布自己的广告
  • 网站建设项目执行情况报告模板河南网站优化公司
  • html5的网站设计与实现是做什么高级seo