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

网站建设 域名网站建设的条件是什么

网站建设 域名,网站建设的条件是什么,网站建设公司哪里有,如何来构建一个成交型网站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.zqtcl.cn/news/176649/

相关文章:

  • 月付购物网站建站方维网络科技有限公司
  • 广东外贸网站建设企业手写代码网站
  • 信誉好的菏泽网站建设自己做网站一定要实名吗
  • 头像网站模板长春建工集团官网
  • 微信网站建设费用网站建设评价标准
  • 济宁市建设工程招投标网站购物网站建设图标大全
  • 婚恋网站制作网站建设服务案例
  • 学校 网站建设 报销discuz做网站赚钱经历
  • 上海做高端网站制小吃加盟招商方案
  • 焦作市建设工程网站网站开发遵循的原则
  • 网站搜索引擎优化主要方法分子信标探针在线设计网站
  • 湘潭做网站 定制磐石网络建设规划许可证公示网站
  • seo查询 站长工具热门行业
  • 广州网站设计与制作公司windows优化大师官方下载
  • 找公司做网站要注意什么网站优化方法页面
  • 贵州省都匀市网站建设it培训机构培训排名
  • 网站开发的技术栈网页设计1920尺寸
  • 在中国可以做国外的域名网站吗中国建设银行人力资源网站
  • 中石化第四建设公司 网站电商app开发价格表
  • dhru商城网站建设免费英文网站建设
  • 公司建设网站的 计划书深圳华强北电子商城
  • 宁波网站建设有限公司大圣网站建设
  • wish网站应该怎么做网站的html代码在哪
  • 哪个网站可以做体育主播站长工具seo综合查询怎么去掉
  • 哪个网站做logo设计师公司做网站需要什么资料
  • 想自己做衣服上哪个网站学网站设计网上培训学校
  • 做餐饮的网站云匠网可能会遇到哪些问题
  • 制作网页网站的软件是网络科技公司怎么注册
  • 如何做百度推广网站价格网如何查产品价格
  • 织梦移动网站后缀找生意项目