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

自己做网站做那种类型淘宝搜索关键词查询工具

自己做网站做那种类型,淘宝搜索关键词查询工具,网站建设平台合同,网站联盟怎么做一、效果图 1、主页面 根据物品信息进行菜单分类,点击单项购物车图标添加至购物车,记录总购物车数量 2、购物车详情页 根据主页面选择的项,根据后台查询展示到页面,可进行多选,数量加减等 二、代码 1、主页面 页…

一、效果图 

1、主页面

根据物品信息进行菜单分类,点击单项购物车图标添加至购物车,记录总购物车数量

2、购物车详情页

根据主页面选择的项,根据后台查询展示到页面,可进行多选,数量加减等

二、代码

1、主页面

页面展示顶部导航栏,侧边导航栏,以及导航栏执行下的内容,购物车的点击事件,内容单项的点击数量汇总到顶部总购物车总数量

wxml代码

<view class="main"><view class="topinfo"><view class="topinfo_view flex center"><view class="topinfo_model1 flex center"><view class="topinfo_model1_search"><image src="{{search}}"></image><input type="text" placeholder="请输入" placeholder-style="color:#CCCCCC" bindconfirm="search_info" /></view></view><view class="topinfo_model2 flex center" ><view class="topinfo_model2_circle flex center" bind:tap="shoppingClick"><image src="{{ShoppingCarGreen}}" /><view class="red_single1 flex center" wx:if="{{shoppingAllCount > 0}}">{{shoppingAllCount}}</view></view></view></view></view><view class="menu"><view class="top-menu flex between"><block wx:for="{{Menus}}" wx:key="index"><view class="topmenu-item flex center {{currentTopMenu === item.topname ? 'topactive' :''}}" data-menu="{{item.topname}}" bind:tap="onTopMenuClick">{{item.topname}}</view></block></view><view class="top-content flex center" wx:if="{{!linenone}}"><view class="left-menu"><block wx:for="{{LeftMenus}}" wx:key="index"><view class="left-menu-item flex center {{currentLeftMenu === item.name ? 'leftactive' : ''}}" bindtap="onLeftMenuClick" data-menu="{{item.name}}"><view class="left {{currentLeftMenu === item.name ? 'leftactivegreen' : ''}}"></view><text>{{item.name}}</text></view></block></view><view class="right-content"><block wx:for="{{RightInfo}}" wx:key="index"><view class="right-content-view flex"><view class="content-img flex center"><image src="{{item.img}}" mode="aspectFill"/></view><view class="content-info"><view class="cinfo-line flex between"><text>标题1:{{item.info1}}</text><text>标题2:{{item.info2}}</text></view><view class="cinfo-line flex between"><text>标题3:{{item.info3}}</text><text>标题4:{{item.info4}}</text></view><view class="cinfo-line flex between">标题5:{{item.info5}}</view><view class="cinfo-line flex flex-end"><view class="green-btn flex center" data-id="{{item.id}}" bind:tap="singleSel"><image src="{{ShoppingCarWhite}}" mode=""/><view class="red_single flex center" wx:if="{{item.isshopping}}">{{item.shoppingCount}}</view></view></view></view></view></block></view></view><view wx:else class="none">暂无数据</view></view>
</view>

wxss代码

主要采用flex布局进行布局

page {background-color: #f5f5f5;font-size:95%;
}.flex {display: flex;
}.center {justify-content: center;align-items: center;
}
.left{position: absolute;left:0;
}
.flex-end{justify-content: flex-end;
}
.between {justify-content: space-between;
}.none {text-align: center;margin-top: 50rpx;color: #969292;
}
/* 顶行搜索栏+购物车 */
/* 搜索框 */
.topinfo_view {padding: 4% 0 4% 0;
}.topinfo_model1 {height: 60rpx;width: 85%;
}.topinfo_model1_search {display: flex;align-items: center;height: 100%;width: 90%;border-radius: 10px;padding: 0 20rpx;background-color: #fff;
}.topinfo_model1 image {height: 40rpx;width: 45rpx;margin-right: 10px;
}.topinfo_view input {width: 100%;
}/* 购物车 */
.topinfo_model2 {width: 12%;height: 60rpx;
}.topinfo_model2_circle {width: 60rpx;height: 60rpx;background-color: #fff;border-radius: 50%;position:relative;
}.topinfo_model2_circle image {width: 40rpx;height: 40rpx;
}/* 顶部菜单栏 */
.menu {width: 100%;
}.topmenu-item {width: 100%;padding-bottom: 5px;border-bottom: 3px solid #f5f5f5;
}.topactive {border-bottom: 3px solid #4cc46b;
}/* 主体内容 */
.top-content {height:83vh;padding:10px 0;
}/* 左侧菜单栏 */
.left-menu {width: 25%;height:100%;
}
.leftactivegreen{width:5px;height:80%;background-color: #4cc46b;
}
.leftactive {background-color:#fff;color:#4cc46b;
}
.left-menu-item{height:50px;position:relative
}
.right-content {height:100%;width: 75%;font-size: 90%;background-color: #fff; overflow-y: auto;
}
.right-content-view{border-bottom:3px solid #f6f6f6;width:100%;padding:2% 0;
}
.content-img {width: 30%;margin-right: 2px;/* border:1px solid black; */
}
.content-img image {width: 95%;height: 95%;
}
.content-info{width:65%;
}
.cinfo-line{width:100%;padding:2% 0;
}
.green-btn{background-color:#4cc46b ;width:50rpx;height:50rpx;border-radius: 5px;margin-top:-4%;position:relative;
}
.green-btn image{width:35rpx;height:35rpx;
}
.red_single{border:1px solid #fff;color:#fff;position:absolute;width:25rpx;height:25rpx;top:-15rpx; right:-15rpx;border-radius: 50%;background-color: red;font-size: 10px;
} 
.red_single1{border:1px solid #fff;color:#fff;position:absolute;width:25rpx;height:25rpx;top:-12rpx; right:-12rpx;border-radius: 50%;background-color: red;font-size: 10px;
} 

js代码

这里主要展示核心数据部分,详细可参考资源

Menus: [{topname: '顶部菜单1',leftMenus: [{name: '侧边菜单1',items: [{id: 1,info1: '11',info2: '22',info3: '33',info4: '44',info5: '55',img: '../img/process_2.png'},{id: 2,info1: '22',info2: '22',info3: '22',info4: '22',info5: '22',img: '../img/process_1.png'},],},{name: '侧边菜单2',items: [{id: 3,info1: '33',info2: '33',info3: '33',info4: '33',info5: '33',img: '../img/process_3.png'}],},]},{topname: '顶部菜单2',leftMenus: []},{topname: '顶部菜单3',leftMenus: [{name: '侧边菜单3',items: [{id: 4,info1: '44',info2: '44',info3: '44',info4: '44',info5: '44',img: '../img/process_2.png'}],}],},{topname: '顶部菜单4',leftMenus: [{name: '侧边菜单4',items: [{id: 5,info1: '55',info2: '55',info3: '55',info4: '55',info5: '55',img: '../img/process_1.png'}],}],},
],

2、购物车界面

主要完成页面的选中项的展示,根据主页页面传递的id参数可进行数据库的查询,这里没连接后端,所以直接展示的实例数据,循环出数据项后,可对数据项进行多选,数据加减等功能

wxml代码

实现页面

<view class="main"><view class="itemallinfo"><view class="item_info flex center" wx:for="{{allinfo}}" wx:key="index" data-id="{{item.id}}"><view class="item flex center"><view class="sel_checkbox flex center"><checkbox value="{{item.id}}" checked="{{item.checked}}" bindtap="handleSelectItem" data-id="{{item.id}}" /></view><view class="info_image flex center"><image src="{{item.img}}" mode="aspectFill" /></view><view class="info_content"><view class="info_line1">配件名称:{{item.name}}</view><view class="info_line1">库存数量:{{item.stockQty}}{{item.uom}}</view><view class="info_line1 flex flex-end numbtn"><view class="btn_minus flex center" bindtap="handleMinus" data-id="{{item.id}}">-</view><input class="input_count" type="number" value="{{item.count}}" bindinput="handleInputChange" data-id="{{item.id}}" /><view class="btn_plus flex center" bindtap="handlePlus" data-id="{{item.id}}">+</view></view></view></view></view></view><view class="footer flex between"><view class="select_all flex center"><checkbox bindtap="handleSelectAll" checked="{{isAllSelected}}" /> 全选</view><view class="bottom2 flex center"><view class="delete_btn surebtn flex center" bindtap="handleDelete">删除</view></view><view class="bottom3 flex center"><view class="submit_btn surebtn flex center" bindtap="handleSubmit">提交</view></view></view>
</view>

wxss代码

page {background-color: #f6f6f6;font-size: 90%;
}.flex {display: flex;
}checkbox {transform: scale(0.8);
}.center {justify-content: center;align-items: center;
}.flex-end {justify-content: flex-end;align-items: center;
}
.between{justify-content: space-between;
}/* 列表内容 */
.item_info {width: 100%;padding: 5px 0;
}
.itemallinfo{padding:15px 0 100px 0;
}
.item {width: 95%;background-color: #fff;padding: 2% 0;border-radius: 5px;box-shadow: 3px 3px 3px rgb(0, 0, 0, 0.1);
}.sel_radio {width: 12%;
}radio {transform: scale(0.8);
}.info_image {width: 20%;
}.info_image image {width: 60px;height: 60px;
}.info_content {width: 68%;
}.info_line1 {margin: 2% 0;
}.numbtn {height: 25px;align-items: stretch;padding-right:2%;
}.btn_minus,
.btn_plus {border: 1px solid #c0c0c0;width: 30px;/* 设置按钮宽度 */height: 100%;cursor: pointer;/* 可选:设置鼠标指针样式 */
}.input_count {border: 1px solid #c0c0c0;width: 50px;/* 设置输入框宽度 */text-align: center;margin: 0 -1px;height: 100%;border-right:0;border-left:0;
}.footer {align-items: center;background-color: #fff;border-top: 1px solid #eee;position:fixed;width:100%;bottom:0;height:70px;
}
.select_all{height:100%;width:30%;
}
.bottom3,.bottom2{height:100%;width:35%;
}
.delete_btn {background-color: #bebebe;color: #fff;
}
.submit_btn {background-color: #f3454e;color: #fff;
}
.surebtn{border-radius: 5px;width:80%;height:30px;
}

js代码

这里主要展示核心数据部分,详细可参考资源

var allinfo = [{id: 1,info1: '11',info2: '22',info3: '33',info4: '44',info5: '55',img: '../img/process_2.png',count: 1,checked: false, // 默认未选中},{id: 3,info1: '33',info2: '33',info3: '33',info4: '33',info5: '33',img: '../img/process_3.png',count: 2,checked: false, // 默认未选中},{id: 5,info1: '55',info2: '55',info3: '55',info4: '55',info5: '55',img: '../img/process_1.png',count: 1,checked: false, // 默认未选中},
];


文章转载自:
http://explanation.dztp.cn
http://pergamum.dztp.cn
http://crucifixion.dztp.cn
http://springhare.dztp.cn
http://ironer.dztp.cn
http://bannerman.dztp.cn
http://hyetal.dztp.cn
http://dick.dztp.cn
http://panicle.dztp.cn
http://mlg.dztp.cn
http://equidistant.dztp.cn
http://sittoung.dztp.cn
http://fasciolet.dztp.cn
http://spathic.dztp.cn
http://aeromagnetic.dztp.cn
http://xerostomia.dztp.cn
http://cope.dztp.cn
http://phobia.dztp.cn
http://paloverde.dztp.cn
http://unilluminating.dztp.cn
http://phaedra.dztp.cn
http://amnesty.dztp.cn
http://insusceptibly.dztp.cn
http://dun.dztp.cn
http://fingery.dztp.cn
http://xeme.dztp.cn
http://dishoard.dztp.cn
http://severalty.dztp.cn
http://bullionism.dztp.cn
http://rodrigues.dztp.cn
http://ptolemy.dztp.cn
http://belletrist.dztp.cn
http://bushtit.dztp.cn
http://silverfish.dztp.cn
http://eremitic.dztp.cn
http://maintainable.dztp.cn
http://fender.dztp.cn
http://telesat.dztp.cn
http://ornithic.dztp.cn
http://dido.dztp.cn
http://occlusor.dztp.cn
http://withamite.dztp.cn
http://nonaggression.dztp.cn
http://commensuration.dztp.cn
http://fair.dztp.cn
http://apulia.dztp.cn
http://zebroid.dztp.cn
http://segregation.dztp.cn
http://arpanet.dztp.cn
http://grammatology.dztp.cn
http://anachronic.dztp.cn
http://stylistic.dztp.cn
http://honewort.dztp.cn
http://genie.dztp.cn
http://duodenitis.dztp.cn
http://amygdalaceous.dztp.cn
http://qic.dztp.cn
http://quadragenarian.dztp.cn
http://masty.dztp.cn
http://educrat.dztp.cn
http://jg.dztp.cn
http://yuga.dztp.cn
http://alcoholization.dztp.cn
http://thatch.dztp.cn
http://electrosurgery.dztp.cn
http://bisegment.dztp.cn
http://unlib.dztp.cn
http://incommunicability.dztp.cn
http://spiritoso.dztp.cn
http://permeation.dztp.cn
http://unsaturate.dztp.cn
http://sanskrit.dztp.cn
http://warplane.dztp.cn
http://vitiable.dztp.cn
http://tilt.dztp.cn
http://neurogenetics.dztp.cn
http://tenability.dztp.cn
http://flako.dztp.cn
http://villeggiatura.dztp.cn
http://deniable.dztp.cn
http://darpa.dztp.cn
http://tracheotomy.dztp.cn
http://membership.dztp.cn
http://surmise.dztp.cn
http://steelyard.dztp.cn
http://convoy.dztp.cn
http://genialize.dztp.cn
http://tabernacle.dztp.cn
http://yayoi.dztp.cn
http://fasciated.dztp.cn
http://tetranitromethane.dztp.cn
http://slipstone.dztp.cn
http://chilled.dztp.cn
http://myxoneurosis.dztp.cn
http://bookworm.dztp.cn
http://predetermine.dztp.cn
http://langostino.dztp.cn
http://eff.dztp.cn
http://bernadette.dztp.cn
http://cadastral.dztp.cn
http://www.dt0577.cn/news/113161.html

相关文章:

  • 济南做网站哪里好徐州seo管理
  • 东莞微网站制作互联网推广方式
  • 网站虚拟主机虚拟空间独立站seo怎么做
  • 湖州做网站推广的公司seo公司哪家好
  • retweet主题 wordpress深圳优化公司
  • crawling wordpress关键词优化是什么意思
  • 网站降权该怎么做黄页88
  • 推荐 官网 潍坊网站建设西安小程序开发的公司
  • 会ps的如何做网站网络营销的内涵
  • 学校网站系统中央电视台一套广告价目表
  • 中文网页模板免费下载厦门seo优化公司
  • 成都食品网站开发seo排名工具哪个好
  • 成都学校网站制作seo外链代发
  • 唐山制作网站公司网络推广一般都干啥
  • 微网站免费制作商城系统开发
  • 同人那个小说网站做的最好百度热搜高考大数据
  • 昆明网站建设猫咪科技seo技术服务外包
  • 额尔古纳做网站seo排名是什么
  • 响应网站先做电脑端网络营销的用户创造价值
  • 政府网站 建设管理自查报告百度收录查询网址
  • 网站后台密码忘记了怎么办 ftp进不去营销顾问公司
  • 网站 工信部备案 收回网络推广服务费
  • 酒店网站建设策划书怎么写商品促销活动策划方案
  • wordpress taiwanseo优化工作内容做什么
  • 网络营销主要特点有哪些seo专业培训
  • 精湛的中山网站建设站长工具关键词
  • 马达加工东莞网站建设如何免费做网站
  • 推广型网站建设有创意的网络营销案例
  • 中山模板建站公司seo推广软件下载
  • 页游和做网站资阳市网站seo