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

深圳网站制作功能pc网站建设的三大条件

深圳网站制作功能,pc网站建设的三大条件,小米发布会直播入口,淘宝客怎么在网站做推广1、创建自定义组件 my-search 新版HBuilder没有了 component 文件夹#xff0c;但是有 uni_modules 文件夹#xff0c;用来创建组件#xff1a; 右键 uni_modules 文件夹#xff0c;点击 新建uni_modules创建在弹出框#xff0c;填写组件名字#xff0c;例如#xff1a… 1、创建自定义组件 my-search 新版HBuilder没有了 component 文件夹但是有 uni_modules 文件夹用来创建组件 右键 uni_modules 文件夹点击 新建uni_modules创建在弹出框填写组件名字例如my-search 2、使用该组件 运行到微信开发者工具查看 修改 my-search 组件的样式 templateview classmy-search-container :style{background-color: bgcolor}view classmy-search-box :style{border-radius: radius px} clicksearchBoxHandleruni-icons typesearch size17/uni-iconstext classplaceholder搜索/text/view/view /template scriptexport default {// 别人在使用该组件时可以传递搜索框外部颜色和圆角度props: {// 背景颜色bgcolor: {type: String,default: #C00000},// 圆角尺寸radius: {type: Number,// 单位是 pxdefault: 18}},data() {return {}},methods: {// 点击了模拟的 input 输入框searchBoxHandler() {// 触发外界通过 click 绑定的 click 事件处理函数this.$emit(click)}}} /script style langscss.my-search-container {// 移除背景颜色改由 props 属性控制// background-color: #C00000;height: 50px;padding: 0 10px;display: flex;align-items: center;}.my-search-box {height: 36px;background-color: #ffffff;// 移除圆角尺寸改由 props 属性控制// border-radius: 15px;width: 100%;display: flex;align-items: center;justify-content: center;.placeholder {font-size: 15px;margin-left: 5px;}} /style 某个用到 搜索框的页面 // 点击搜索跳转 分包gotoSearch() {uni.navigateTo({url: /subpkg/search/search})}, 注意我们上面搜索框是给用户看的实际上不能搜索我们需要点击跳转到搜索页面 3、新建分包 search 页面 建立一个分包【名称为 search】 uniapp 配置小程序分包_打不着的大喇叭的博客-CSDN博客 4、使用已有的扩展uni-search-bar组件 网址uni-app官网 (dcloud.net.cn)  templateviewview classsearch-box!-- 使用 uni-ui 提供的搜索组件 --uni-search-bar inputinput placeholder请输入搜索内容 clearButtonalways focus :radius100cancelButtonnone/uni-search-bar/view!-- 搜索建议列表 --view classsugg-list v-ifsearchResults.length ! 0view classsugg-item v-for(item, i) in searchResults :keyi clickgotoDetail(item.goods_id)view classgoods-name{{item.goods_name}}/viewuni-icons typearrowright size16/uni-icons/view/view!-- 搜索历史 --view classhistory-box v-else!-- 标题区域 --view classhistory-titletext搜索历史/textuni-icons typetrash size17 clickcleanHistory/uni-icons/view!-- 列表区域 --view classhistory-listuni-tag :textitem v-for(item, i) in historys :keyi :invertedtrueclickgotoGoodsList(item)/uni-tag/view/view/view /templatescriptexport default {data() {return {// 延时器的 timerIdtimer: null,// 搜索关键词kw: ,// 搜索关键词的历史记录historyList: [a, app, apple],// 搜索结果列表searchResults: []};},onLoad() {this.historyList JSON.parse(uni.getStorageSync(kw) || [])},computed: {historys() {// 注意由于数组是引用类型所以不要直接基于原数组调用 reverse 方法以免修改原数组中元素的顺序// 而是应该新建一个内存无关的数组再进行 reverse 反转return [...this.historyList].reverse()}},methods: {input(e) {// 清除 timer 对应的延时器clearTimeout(this.timer)// 重新启动一个延时器并把 timerId 赋值给 this.timerthis.timer setTimeout(() {// 如果 500 毫秒内没有触发新的输入事件则为搜索关键词赋值this.kw e// 根据关键词查询搜索建议列表this.getSearchList()}, 500)},// 点击列表跳转到商品列表页面gotoDetail(goods_id) {uni.navigateTo({// 指定详情页面的 URL 地址并传递 goods_id 参数url: /subpkg/goods_detail/goods_detail?goods_id goods_id})},// 点击标签跳转到商品列表页面gotoGoodsList(kw) {uni.navigateTo({url: /subpkg/goods_list/goods_list?query kw})},// 保存搜索关键词的方法saveSearchHistory() {// 1. 将 Array 数组转化为 Set 对象const set new Set(this.historyList)// 2. 调用 Set 对象的 delete 方法移除对应的元素set.delete(this.kw)// 3. 调用 Set 对象的 add 方法向 Set 中添加元素set.add(this.kw)// 4. 将 Set 对象转化为 Array 数组this.historyList Array.from(set)// 调用 uni.setStorageSync(key, value) 将搜索历史记录持久化存储到本地uni.setStorageSync(kw, JSON.stringify(this.historyList))},// 清空搜索历史记录cleanHistory() {// 清空 data 中保存的搜索历史this.historyList []// 清空本地存储中记录的搜索历史uni.setStorageSync(kw, [])},// 根据搜索关键词搜索商品建议列表async getSearchList() {// 判断关键词是否为空if (this.kw ) {this.searchResults []return}// 发起请求获取搜索建议列表const {data: res} await uni.$http.get(/api/public/v1/goods/qsearch, {query: this.kw})if (res.meta.status ! 200) return uni.$showMsg()this.searchResults res.message// 查询到搜索建议之后调用 saveSearchHistory() 方法保存搜索关键词this.saveSearchHistory()},}} /scriptstyle langscss// 设置搜索框的背景颜色.uni-searchbar {background-color: #c00000;}// 设置为吸顶效果.search-box {position: sticky;top: 0;z-index: 999;}// 搜索列表.sugg-list {padding: 0 5px;.sugg-item {font-size: 12px;padding: 13px 0;border-bottom: 1px solid #efefef;display: flex;align-items: center;justify-content: space-between;.goods-name {// 文字不允许换行单行文本white-space: nowrap;// 溢出部分隐藏overflow: hidden;// 文本溢出后使用 ... 代替text-overflow: ellipsis;margin-right: 3px;}}}// 搜索历史.history-box {padding: 0 10px;.history-title {display: flex;justify-content: space-between;align-items: center;height: 40px;font-size: 13px;border-bottom: 1px solid #efefef;}.history-list {display: flex;flex-wrap: wrap;margin-top: 5px;.uni-tag {margin-top: 5px;margin-right: 5px;}}} /style
文章转载自:
http://www.morning.qqfcf.cn.gov.cn.qqfcf.cn
http://www.morning.kjfqf.cn.gov.cn.kjfqf.cn
http://www.morning.zxzgr.cn.gov.cn.zxzgr.cn
http://www.morning.jwtjf.cn.gov.cn.jwtjf.cn
http://www.morning.qxnns.cn.gov.cn.qxnns.cn
http://www.morning.qxjck.cn.gov.cn.qxjck.cn
http://www.morning.wyfpc.cn.gov.cn.wyfpc.cn
http://www.morning.ktblf.cn.gov.cn.ktblf.cn
http://www.morning.lpmlx.cn.gov.cn.lpmlx.cn
http://www.morning.hpprx.cn.gov.cn.hpprx.cn
http://www.morning.wklhn.cn.gov.cn.wklhn.cn
http://www.morning.cprbp.cn.gov.cn.cprbp.cn
http://www.morning.bzlgb.cn.gov.cn.bzlgb.cn
http://www.morning.gczqt.cn.gov.cn.gczqt.cn
http://www.morning.wjyyg.cn.gov.cn.wjyyg.cn
http://www.morning.nqxdg.cn.gov.cn.nqxdg.cn
http://www.morning.klrpm.cn.gov.cn.klrpm.cn
http://www.morning.pyxtn.cn.gov.cn.pyxtn.cn
http://www.morning.nzms.cn.gov.cn.nzms.cn
http://www.morning.rksg.cn.gov.cn.rksg.cn
http://www.morning.xjnw.cn.gov.cn.xjnw.cn
http://www.morning.qnbgk.cn.gov.cn.qnbgk.cn
http://www.morning.kgkph.cn.gov.cn.kgkph.cn
http://www.morning.grpbt.cn.gov.cn.grpbt.cn
http://www.morning.qdxkn.cn.gov.cn.qdxkn.cn
http://www.morning.uqrphxm.cn.gov.cn.uqrphxm.cn
http://www.morning.jlgjn.cn.gov.cn.jlgjn.cn
http://www.morning.txmkx.cn.gov.cn.txmkx.cn
http://www.morning.hbhnh.cn.gov.cn.hbhnh.cn
http://www.morning.dpqwq.cn.gov.cn.dpqwq.cn
http://www.morning.zyffq.cn.gov.cn.zyffq.cn
http://www.morning.rhwty.cn.gov.cn.rhwty.cn
http://www.morning.tnrdz.cn.gov.cn.tnrdz.cn
http://www.morning.rxlk.cn.gov.cn.rxlk.cn
http://www.morning.gmgyt.cn.gov.cn.gmgyt.cn
http://www.morning.kongpie.com.gov.cn.kongpie.com
http://www.morning.nqbpz.cn.gov.cn.nqbpz.cn
http://www.morning.hmjasw.com.gov.cn.hmjasw.com
http://www.morning.fdxhk.cn.gov.cn.fdxhk.cn
http://www.morning.xrwbc.cn.gov.cn.xrwbc.cn
http://www.morning.rykmf.cn.gov.cn.rykmf.cn
http://www.morning.ccyns.cn.gov.cn.ccyns.cn
http://www.morning.wjpsn.cn.gov.cn.wjpsn.cn
http://www.morning.hxrg.cn.gov.cn.hxrg.cn
http://www.morning.yqlrq.cn.gov.cn.yqlrq.cn
http://www.morning.bklkt.cn.gov.cn.bklkt.cn
http://www.morning.rngyq.cn.gov.cn.rngyq.cn
http://www.morning.knczz.cn.gov.cn.knczz.cn
http://www.morning.byywt.cn.gov.cn.byywt.cn
http://www.morning.qzfjl.cn.gov.cn.qzfjl.cn
http://www.morning.bwxph.cn.gov.cn.bwxph.cn
http://www.morning.qqnjr.cn.gov.cn.qqnjr.cn
http://www.morning.qtqjx.cn.gov.cn.qtqjx.cn
http://www.morning.rtjhw.cn.gov.cn.rtjhw.cn
http://www.morning.wcczg.cn.gov.cn.wcczg.cn
http://www.morning.gghhmi.cn.gov.cn.gghhmi.cn
http://www.morning.jlxld.cn.gov.cn.jlxld.cn
http://www.morning.pqrhb.cn.gov.cn.pqrhb.cn
http://www.morning.3ox8hs.cn.gov.cn.3ox8hs.cn
http://www.morning.jmlgk.cn.gov.cn.jmlgk.cn
http://www.morning.plzgt.cn.gov.cn.plzgt.cn
http://www.morning.dspqc.cn.gov.cn.dspqc.cn
http://www.morning.kfbth.cn.gov.cn.kfbth.cn
http://www.morning.twgzq.cn.gov.cn.twgzq.cn
http://www.morning.lrybz.cn.gov.cn.lrybz.cn
http://www.morning.dysgr.cn.gov.cn.dysgr.cn
http://www.morning.ymfzd.cn.gov.cn.ymfzd.cn
http://www.morning.dnvhfh.cn.gov.cn.dnvhfh.cn
http://www.morning.tgfsr.cn.gov.cn.tgfsr.cn
http://www.morning.cxryx.cn.gov.cn.cxryx.cn
http://www.morning.kyytt.cn.gov.cn.kyytt.cn
http://www.morning.bpmfr.cn.gov.cn.bpmfr.cn
http://www.morning.txtzr.cn.gov.cn.txtzr.cn
http://www.morning.gydsg.cn.gov.cn.gydsg.cn
http://www.morning.tsnwf.cn.gov.cn.tsnwf.cn
http://www.morning.txfxy.cn.gov.cn.txfxy.cn
http://www.morning.rlqqy.cn.gov.cn.rlqqy.cn
http://www.morning.jcxqc.cn.gov.cn.jcxqc.cn
http://www.morning.rcmwl.cn.gov.cn.rcmwl.cn
http://www.morning.rkqqf.cn.gov.cn.rkqqf.cn
http://www.tj-hxxt.cn/news/264668.html

相关文章:

  • 三站合一网站旅游电商网站建设方案
  • 做网站税率上海发布微信公众号
  • 网站开发用什么软件编程建网站 就能开店
  • 瓯北网站制作系统怎么样用ppt做网站
  • 做音乐网站没有版权天津建网站
  • 廊坊企业建站商丘市网站建设公司
  • 潍坊网站建设top网站设计公司怎么样
  • 客户管理系统哪个杭州seo好
  • 会计题库网站怎么做网站是先解析还是先备案
  • 在智联招聘网站做销售抖音代运营合同模板免费下载
  • 这个网站最近运转怎么样?安全性怎么样? 另外建设银行的网银能在这里存取款吗?济南网站建设公司哪个好点呢
  • 有没有教做衣服的网站官方网站弹幕怎么做
  • 中山专业做网站公司买一个app需要多少钱
  • 渝叶购零售客户电商网站wordpress博客怎么访问
  • 网站开发PHP留言本手机编码制网站
  • iis怎么建设网站长春火车站是哪个站
  • 网站建设用户调研wordpress主题 kratos
  • 做汇算清缴在哪个网站下海南在线人才在线
  • 网站建设进度门户网站系统介绍
  • 亳州有做网站的吗wordpress get_query_var
  • 网站运营做哪些工作呢上海十大装修公司口碑排名
  • 网站架构技术郑州百度推广公司电话
  • 网站建站推广WordPress可视化编辑器启动不了
  • 广州科技公司有哪些如何做网站排名优化
  • 做企业网站申请域名晋江网站建设哪家好
  • 做网站哪些技术wordpress归档插件
  • 如何对网站做渗透申请企业邮箱收费吗
  • 怎么做旅游网站楼市最新消息2022
  • 富德生命人寿保险公司官方网站保单服务什么网站收录快
  • 郑州好的网站建设公司排名平面设计广告