diff --git a/pages/homeblock/zhinengselect/zhinengselect.js b/pages/homeblock/zhinengselect/zhinengselect.js index 569a0b9..4f0e92e 100644 --- a/pages/homeblock/zhinengselect/zhinengselect.js +++ b/pages/homeblock/zhinengselect/zhinengselect.js @@ -698,7 +698,6 @@ Page({ for (var i = 0; i < newnavarr.length; i++) { if (i == index) { newnavarr[i].sel = !newnavarr[i].sel; - if (type == 4) { if (newnavarr[i].sel == true) { console.log(999) @@ -717,8 +716,6 @@ Page({ pricechose: false, morechose: false, fenchose: false - - }) } }else if(type==2){ @@ -798,9 +795,6 @@ Page({ newnavarr[i].sel = false } } - - - this.setData({ navarr: newnavarr }) @@ -842,19 +836,25 @@ Page({ console.log(that.data.selectinfo) let middlevalue = ''; - - + let during = that.data.selectinfo.price[0].number; + let max = parseInt(that.data.selectinfo.price[0].max) + parseInt(that.data.selectinfo.price[0].number); + let duan = parseInt(max/during); + let per_val = (during/max*100).toFixed(2); + let tempData = []; + for(let i = 1; i<=duan ; i++){ + tempData.push(i) + } that.setData({ - leftMin: parseInt(that.data.selectinfo.price[0].realmin), rightMax: parseInt(that.data.selectinfo.price[0].realmax), - min: parseInt(that.data.selectinfo.price[0].min) - parseInt(that.data.selectinfo.price[0].number), max: parseInt(that.data.selectinfo.price[0].max) + parseInt(that.data.selectinfo.price[0].number), priceyuan: that.data.selectinfo.price[0].realmin + '元' + '-' + that.data.selectinfo.price[0].realmax + '元', pricevalue: that.data.selectinfo.price[0].realmin + '-' + that.data.selectinfo.price[0].realmax, - number: that.data.selectinfo.price[0].number + number: that.data.selectinfo.price[0].number, + during: tempData, + per_val:per_val }) console.log(909080807070) diff --git a/pages/homeblock/zhinengselect/zhinengselect.wxml b/pages/homeblock/zhinengselect/zhinengselect.wxml index 765bbbe..11a737a 100644 --- a/pages/homeblock/zhinengselect/zhinengselect.wxml +++ b/pages/homeblock/zhinengselect/zhinengselect.wxml @@ -26,24 +26,19 @@ <!-- 价格 --> <view class="register" wx:if="{{pricechose}}" bindtap="hideprice" catchtouchmove='true'> <view class="pregisterwrap"> - <view class="pyuan">{{priceyuan}}</view> - <view class="zy-slider" catchtap='pingbi'> <zy-slider id="zy-slider1" minValue="{{leftMin}}" maxValue="{{rightMax}}" min="{{min}}" max="{{max}}" blockColor="#0099FF" backgroundColor="#B0C4DE" selectedColor="#FF1493" bind:lowValueChange="lowValueChangeAction" bind:heighValueChange="heighValueChangeAction" /> <!-- style="left:{{ppleft}}rpx; width:{{ppvalue-ppleft}}rpx" --> - <view class="pp" style="width:95%;background:red;height:10rpx;margin:50rpx auto 0"> - <view class="ppitem"></view> - <view class="ppitem"></view> - <view class="ppitem"></view> - <view class="ppitem"></view> + <view class="pp" style="height:10rpx;margin:50rpx 0 0 5px"> + <block wx:for='{{during}}' wx:key=''> + <view style="width: {{per_val}}%" class="single_item"> + <view class="detail_num">{{item*number}}</view> + </view> + </block> </view> </view> - - - - </view> </view> @@ -51,12 +46,10 @@ <view class="register" wx:if="{{fenchose}}" bindtap="hidefen" catchtouchmove='true'> <view class="pregisterwrap"> <view class="pyuan">{{score}}</view> - <view class="zy-slider"> <zy-slider id="zy-slider1" minValue="{{fenleftMin}}" maxValue="{{fenrightMax}}" min="{{fenmin}}" max="{{fenmax}}" blockColor="#0099FF" backgroundColor="#B0C4DE" selectedColor="#FF1493" bind:lowValueChange="fenlowValueChangeAction" bind:heighValueChange="fenheighValueChangeAction" /> </view> - </view> </view> @@ -97,12 +90,7 @@ data-basic_sort="{{item.basic_sort}}" bind:heighValueChange="heighValueChangeAction1" data-parindex="{{par}}" /> </view> </view> - </view> - - - - </view> </view> <view class="shaisel"> @@ -125,8 +113,6 @@ <view class="nodataimg" wx:if="{{zhinenglist.length==0}}"> <image src="/img/wushuju.png"></image> </view> - - <block wx:else> <view class="searchitem" wx:for="{{zhinenglist}}" wx:key="" bindtap="jumpbrand" data-id="{{item.id}}"> <view class="searchitemleft"> @@ -146,9 +132,6 @@ </view> <view class="starimg" bindtap="collect" data-id="{{item.id}}"> - - - <image src="{{url}}aicon_10x.png" wx:if="{{item.is_favorite==1}}"></image> <image src="{{url}}aicon_09x.png" wx:else></image> </view> diff --git a/pages/homeblock/zhinengselect/zhinengselect.wxss b/pages/homeblock/zhinengselect/zhinengselect.wxss index a3edbd3..ff79cc6 100644 --- a/pages/homeblock/zhinengselect/zhinengselect.wxss +++ b/pages/homeblock/zhinengselect/zhinengselect.wxss @@ -324,6 +324,35 @@ page { width:1px; height:50rpx; background: green; - - +} +.single_item{ + height: 2px; + background: #f5f5f5; + position: relative; +} +.single_item::after{ + content:''; + height: 8px; + width: 2px; + background-color: #ccc; + right: 0; + position: absolute; + bottom: 0; +} +.single_item:last-child{ + opacity: 0 +} +.single_item:first-child{ + background: #FFF; +} +.single_item:last-child::after{ + height: 0; +} +.detail_num{ + color: #999; + font-size: 24rpx; + position: absolute; + top: -25px; + right: 0; + transform: translateX(50%); } \ No newline at end of file diff --git a/pages/myblock/jiudan/jiudan.js b/pages/myblock/jiudan/jiudan.js new file mode 100644 index 0000000..d1e2dd0 --- /dev/null +++ b/pages/myblock/jiudan/jiudan.js @@ -0,0 +1,66 @@ +// pages/myblock/jiudan/jiudan.js +Page({ + + /** + * 页面的初始数据 + */ + data: { + + }, + + /** + * 生命周期函数--监听页面加载 + */ + onLoad: function (options) { + + }, + + /** + * 生命周期函数--监听页面初次渲染完成 + */ + onReady: function () { + + }, + + /** + * 生命周期函数--监听页面显示 + */ + onShow: function () { + + }, + + /** + * 生命周期函数--监听页面隐藏 + */ + onHide: function () { + + }, + + /** + * 生命周期函数--监听页面卸载 + */ + onUnload: function () { + + }, + + /** + * 页面相关事件处理函数--监听用户下拉动作 + */ + onPullDownRefresh: function () { + + }, + + /** + * 页面上拉触底事件的处理函数 + */ + onReachBottom: function () { + + }, + + /** + * 用户点击右上角分享 + */ + onShareAppMessage: function () { + + } +}) \ No newline at end of file diff --git a/pages/myblock/jiudan/jiudan.json b/pages/myblock/jiudan/jiudan.json new file mode 100644 index 0000000..8835af0 --- /dev/null +++ b/pages/myblock/jiudan/jiudan.json @@ -0,0 +1,3 @@ +{ + "usingComponents": {} +} \ No newline at end of file diff --git a/pages/myblock/jiudan/jiudan.wxml b/pages/myblock/jiudan/jiudan.wxml new file mode 100644 index 0000000..d0d1317 --- /dev/null +++ b/pages/myblock/jiudan/jiudan.wxml @@ -0,0 +1,2 @@ +<!--pages/myblock/jiudan/jiudan.wxml--> +<text>pages/myblock/jiudan/jiudan.wxml</text> diff --git a/pages/myblock/jiudan/jiudan.wxss b/pages/myblock/jiudan/jiudan.wxss new file mode 100644 index 0000000..7bfd506 --- /dev/null +++ b/pages/myblock/jiudan/jiudan.wxss @@ -0,0 +1 @@ +/* pages/myblock/jiudan/jiudan.wxss */ \ No newline at end of file diff --git a/pages/myblock/xiugaimima/xiugaimima.js b/pages/myblock/xiugaimima/xiugaimima.js new file mode 100644 index 0000000..37cdaf0 --- /dev/null +++ b/pages/myblock/xiugaimima/xiugaimima.js @@ -0,0 +1,66 @@ +// pages/myblock/xiugaimima/xiugaimima.js +Page({ + + /** + * 页面的初始数据 + */ + data: { + + }, + + /** + * 生命周期函数--监听页面加载 + */ + onLoad: function (options) { + + }, + + /** + * 生命周期函数--监听页面初次渲染完成 + */ + onReady: function () { + + }, + + /** + * 生命周期函数--监听页面显示 + */ + onShow: function () { + + }, + + /** + * 生命周期函数--监听页面隐藏 + */ + onHide: function () { + + }, + + /** + * 生命周期函数--监听页面卸载 + */ + onUnload: function () { + + }, + + /** + * 页面相关事件处理函数--监听用户下拉动作 + */ + onPullDownRefresh: function () { + + }, + + /** + * 页面上拉触底事件的处理函数 + */ + onReachBottom: function () { + + }, + + /** + * 用户点击右上角分享 + */ + onShareAppMessage: function () { + + } +}) \ No newline at end of file diff --git a/pages/myblock/xiugaimima/xiugaimima.json b/pages/myblock/xiugaimima/xiugaimima.json new file mode 100644 index 0000000..8835af0 --- /dev/null +++ b/pages/myblock/xiugaimima/xiugaimima.json @@ -0,0 +1,3 @@ +{ + "usingComponents": {} +} \ No newline at end of file diff --git a/pages/myblock/xiugaimima/xiugaimima.wxml b/pages/myblock/xiugaimima/xiugaimima.wxml new file mode 100644 index 0000000..b15f907 --- /dev/null +++ b/pages/myblock/xiugaimima/xiugaimima.wxml @@ -0,0 +1,2 @@ +<!--pages/myblock/xiugaimima/xiugaimima.wxml--> +<text>pages/myblock/xiugaimima/xiugaimima.wxml</text> diff --git a/pages/myblock/xiugaimima/xiugaimima.wxss b/pages/myblock/xiugaimima/xiugaimima.wxss new file mode 100644 index 0000000..c89bd5f --- /dev/null +++ b/pages/myblock/xiugaimima/xiugaimima.wxss @@ -0,0 +1 @@ +/* pages/myblock/xiugaimima/xiugaimima.wxss */ \ No newline at end of file diff --git a/pages/myblock/yonghufankui/yonghufankui.js b/pages/myblock/yonghufankui/yonghufankui.js new file mode 100644 index 0000000..b306259 --- /dev/null +++ b/pages/myblock/yonghufankui/yonghufankui.js @@ -0,0 +1,66 @@ +// pages/myblock/yonghufankui/yonghufankui.js +Page({ + + /** + * 页面的初始数据 + */ + data: { + + }, + + /** + * 生命周期函数--监听页面加载 + */ + onLoad: function (options) { + + }, + + /** + * 生命周期函数--监听页面初次渲染完成 + */ + onReady: function () { + + }, + + /** + * 生命周期函数--监听页面显示 + */ + onShow: function () { + + }, + + /** + * 生命周期函数--监听页面隐藏 + */ + onHide: function () { + + }, + + /** + * 生命周期函数--监听页面卸载 + */ + onUnload: function () { + + }, + + /** + * 页面相关事件处理函数--监听用户下拉动作 + */ + onPullDownRefresh: function () { + + }, + + /** + * 页面上拉触底事件的处理函数 + */ + onReachBottom: function () { + + }, + + /** + * 用户点击右上角分享 + */ + onShareAppMessage: function () { + + } +}) \ No newline at end of file diff --git a/pages/myblock/yonghufankui/yonghufankui.json b/pages/myblock/yonghufankui/yonghufankui.json new file mode 100644 index 0000000..8835af0 --- /dev/null +++ b/pages/myblock/yonghufankui/yonghufankui.json @@ -0,0 +1,3 @@ +{ + "usingComponents": {} +} \ No newline at end of file diff --git a/pages/myblock/yonghufankui/yonghufankui.wxml b/pages/myblock/yonghufankui/yonghufankui.wxml new file mode 100644 index 0000000..4683e87 --- /dev/null +++ b/pages/myblock/yonghufankui/yonghufankui.wxml @@ -0,0 +1,2 @@ +<!--pages/myblock/yonghufankui/yonghufankui.wxml--> +<text>pages/myblock/yonghufankui/yonghufankui.wxml</text> diff --git a/pages/myblock/yonghufankui/yonghufankui.wxss b/pages/myblock/yonghufankui/yonghufankui.wxss new file mode 100644 index 0000000..b3e3550 --- /dev/null +++ b/pages/myblock/yonghufankui/yonghufankui.wxss @@ -0,0 +1 @@ +/* pages/myblock/yonghufankui/yonghufankui.wxss */ \ No newline at end of file diff --git a/pages/yonghuxieyi/yonghuxieyi.js b/pages/yonghuxieyi/yonghuxieyi.js new file mode 100644 index 0000000..aa0bf59 --- /dev/null +++ b/pages/yonghuxieyi/yonghuxieyi.js @@ -0,0 +1,66 @@ +// pages/yonghuxieyi/yonghuxieyi.js +Page({ + + /** + * 页面的初始数据 + */ + data: { + + }, + + /** + * 生命周期函数--监听页面加载 + */ + onLoad: function (options) { + + }, + + /** + * 生命周期函数--监听页面初次渲染完成 + */ + onReady: function () { + + }, + + /** + * 生命周期函数--监听页面显示 + */ + onShow: function () { + + }, + + /** + * 生命周期函数--监听页面隐藏 + */ + onHide: function () { + + }, + + /** + * 生命周期函数--监听页面卸载 + */ + onUnload: function () { + + }, + + /** + * 页面相关事件处理函数--监听用户下拉动作 + */ + onPullDownRefresh: function () { + + }, + + /** + * 页面上拉触底事件的处理函数 + */ + onReachBottom: function () { + + }, + + /** + * 用户点击右上角分享 + */ + onShareAppMessage: function () { + + } +}) \ No newline at end of file diff --git a/pages/yonghuxieyi/yonghuxieyi.json b/pages/yonghuxieyi/yonghuxieyi.json new file mode 100644 index 0000000..8835af0 --- /dev/null +++ b/pages/yonghuxieyi/yonghuxieyi.json @@ -0,0 +1,3 @@ +{ + "usingComponents": {} +} \ No newline at end of file diff --git a/pages/yonghuxieyi/yonghuxieyi.wxml b/pages/yonghuxieyi/yonghuxieyi.wxml new file mode 100644 index 0000000..2bbf64b --- /dev/null +++ b/pages/yonghuxieyi/yonghuxieyi.wxml @@ -0,0 +1,2 @@ +<!--pages/yonghuxieyi/yonghuxieyi.wxml--> +<text>pages/yonghuxieyi/yonghuxieyi.wxml</text> diff --git a/pages/yonghuxieyi/yonghuxieyi.wxss b/pages/yonghuxieyi/yonghuxieyi.wxss new file mode 100644 index 0000000..1b4412a --- /dev/null +++ b/pages/yonghuxieyi/yonghuxieyi.wxss @@ -0,0 +1 @@ +/* pages/yonghuxieyi/yonghuxieyi.wxss */ \ No newline at end of file diff --git a/project.config.json b/project.config.json index 4f6ee01..48d0fdd 100644 --- a/project.config.json +++ b/project.config.json @@ -4,15 +4,15 @@ "ignore": [] }, "setting": { - "urlCheck": true, + "urlCheck": false, "es6": true, "postcss": true, "minified": true, "newFeature": true, + "coverView": true, "autoAudits": false, "uglifyFileName": true, "checkInvalidKey": true, - "coverView": true, "checkSiteMap": true, "uploadWithSourceMap": true, "babelSetting": { @@ -49,7 +49,7 @@ "list": [] }, "miniprogram": { - "current": 47, + "current": 48, "list": [ { "id": -1, @@ -384,6 +384,14 @@ "id": -1, "name": "用户协议", "pathName": "pages/yonghuxieyi/yonghuxieyi", + "query": "", + "scene": null + }, + { + "id": -1, + "name": "pages/homeblock/zhinengselect/zhinengselect", + "pathName": "pages/homeblock/zhinengselect/zhinengselect", + "query": "", "scene": null } ]