闲鱼有微信小程序吗_微信小程序商品展示页面(仿咸鱼)

项目中做了一个商品发布展示的页面,记录下来

解决问题:

想在setData中更改数组具体下标中的某个值

let one = "lowMoney[" + 0 + "].money";

this.setData({

[one]: (product.currentPrice * 0.1).toFixed(2), //1折

})

快去发布商品吧~~~

已下架

{{item.title}}

¥{{item.currentPrice}}

提问{{item.comment}}   浏览{{item.pv}}

降价

编辑

更多

现价

¥{{now_mon}}

降价至

¥{{low_mon}}

¥{{item.money}}

{{item.tip}}

确定

上架

下架

删除

取消

新建

--没有更多了--

// pages/myRelease/myRelease.js

var app = getApp();

Page({

/**

* 页面的初始数据

*/

data: {

releases: [],

low_mon: 0, //降价至

now_mon: 0, //现价

image: "", //降价图片

productID: 0,

limit: 5,

release: false,

showMore: false,

showLowMoney: false,

lowMoney: [{

money: 0,

tip: "打1折,极速卖"

},

{

money: 0,

tip: "打3折,出手快"

},

{

money: 0,

tip: "打5折,有竞争力"

}, {

money: 0,

tip: "打8折"

}

],

lowind: 0,

productState: false,

},

/**

* 生命周期函数--监听页面显示

*/

onShow: function(options) {

this.getMyRelease();

},

/**

* 降价显示

*/

onClickShowMoney(e) {

let index = e.currentTarget.dataset.index;

let productID = e.currentTarget.dataset.productid;

let product = this.data.releases[index];

let one = "lowMoney[" + 0 + "].money";

let three = "lowMoney[" + 1 + "].money";

let five = "lowMoney[" + 2 + "].money";

let eight = "lowMoney[" + 3 + "].money";

this.setData({

showLowMoney: !this.data.showLowMoney,

now_mon: product.currentPrice,

[one]: (product.currentPrice * 0.1).toFixed(2), //1折

[three]: (product.currentPrice * 0.3).toFixed(2), //3折

[five]: (product.currentPrice * 0.5).toFixed(2), //5折

[eight]: (product.currentPrice * 0.8).toFixed(2), //8折

low_mon: (product.currentPrice * 0.1).toFixed(2), //默认1折

productID: productID,

image: product.image

})

},

/**

* 更多显示

*/

onClickShowMore(e) {

this.setData({

showMore: !this.data.showMore,

productID: e.currentTarget.dataset.productid

});

if (e.currentTarget.dataset.state === 0) {

this.setData({

productState: true

})

} else {

this.setData({

productState: false

})

}

},

/**

* 降价&更多隐藏

*/

onClickHidden(e) {

let that = this;

switch (e.currentTarget.dataset.id) {

case '0':

that.setData({

showLowMoney: !this.data.showLowMoney,

lowind: 0

});

break;

case '1':

that.setData({

showMore: !this.data.showMore

});

break;

}

},

/**

* 修改价钱

* updatePrice

*/

updatePrice(e) {

let params = {

userID: app.globalData.userID,

id: this.data.productID,

price: this.data.low_mon,

}

app.updatePrice(params).then(res => {

if (res.state === 1) {

this.getMyRelease();

this.setData({

showLowMoney: !this.data.showLowMoney,

lowind: 0

})

}

})

},

/**

* 下架

* soldOut

*/

soldOut() {

let params = {

userID: app.globalData.userID,

id: this.data.productID,

flag: this.data.productState

}

app.soldOut(params).then(res => {

if (res.state === 1) {

wx.showToast({

title: '已下架',

icon: "none",

duration: 1000,

mask: true,

})

this.getMyRelease();

this.setData({

showMore: !this.data.showMore,

lowind: 0

})

}

})

},

/**

* 上架

*putaway

*/

putaway() {

let params = {

userID: app.globalData.userID,

id: this.data.productID,

flag: this.data.productState

}

app.soldOut(params).then(res => {

if (res.state === 1) {

wx.showToast({

title: '已上架',

icon: "none",

duration: 1000,

mask: true,

})

this.getMyRelease();

this.setData({

showMore: !this.data.showMore,

lowind: 0

})

}

})

},

/**

* 删除

* productDel

*/

productDel() {

let params = {

userID: app.globalData.userID,

id: this.data.productID

}

app.productDel(params).then(res => {

if (res.state === 1) {

this.getMyRelease();

this.setData({

showMore: !this.data.showMore,

lowind: 0

})

}

})

},

/**

* 选择打折力度

*/

clickLowMoney(e) {

let price = this.data.lowMoney[e.currentTarget.dataset.index].money;

if (this.data.lowind == e.currentTarget.dataset.index) {

this.setData({

lowind: -1

})

} else {

this.setData({

lowind: e.currentTarget.dataset.index,

low_mon: price

})

}

},

/**

* 编辑

*/

edit(e) {

let productID = e.currentTarget.dataset.productid

wx.navigateTo({

url: '../productReleased/productReleased?productID=' + productID,

})

},

/**

* 新建我的发布

*/

newRelease() {

wx.navigateTo({

url: '../productReleased/productReleased?productID=' + 0,

})

},

productDetail(e) {

wx.navigateTo({

url: '../product/product?id=' + e.currentTarget.dataset.id,

})

},

//上拉事件

onReachBottom: function() {

this.data.limit = this.data.limit + 5

this.getMyRelease();

},

/**

* 获取我的发布

*/

getMyRelease() {

let params = {

userID: app.globalData.userID,

limit: this.data.limit,

offset: 0,

}

app.getMyRelease(params).then(res => {

let release = res.data.release

this.setData({

releases: release

})

})

},

})

/* pages/order/order.wxss */

page {

background-color: #f1f1f1;

}

.null_img {

position: absolute;

color: #e5447b;

width: 200rpx;

height: 190rpx;

margin-left: 40%;

margin-top: 40%;

}

.null_text_release {

position: absolute;

font-size: 20px;

color: #e5447b;

margin-left: 35%;

margin-top: 70%;

}

.null_release {

background-color: white;

width: 100vw;

height: 100vh;

}

.bottom {

padding-top: 10px;

height: 40px;

text-align: center;

color: rgba(32, 27, 27, 0.173);

font-size: small;

}

.release {

width: 100%;

height: 300rpx;

background-color: white;

margin-top: 20rpx;

}

.release image {

width: 160rpx;

height: 160rpx;

margin: 20rpx;

}

.release_text {

position: absolute;

width: 550rpx;

left: 200rpx;

font-size: 35rpx;

padding-top: 20rpx;

overflow: hidden;

text-overflow: ellipsis;

white-space: nowrap;

}

.release_money {

color: red;

position: absolute;

padding-top: 80rpx;

font-size: 35rpx;

}

.pv {

font-size: 25rpx;

position: absolute;

padding-top: 150rpx;

color: #8f8f8f;

}

.button {

display: flex;

width: 480rpx;

margin-left: 240rpx;

margin-top: 10rpx;

}

.button button {

width: 130rpx;

height: 60rpx;

font-size: 25rpx;

background: white;

}

.out {

position: absolute;

padding-top: 220rpx;

left: 30rpx;

width: 100rpx;

font-size: 30rpx;

}

.more {

width: 450rpx;

height: 380rpx;

background: white;

border-radius: 20rpx;

}

.more_view {

font-size: 30rpx;

color: #0095f2;

display: flex;

justify-content: center;

align-items: center;

width: 100%;

height: 120rpx;

}

.more_bot {

border-bottom: 1px solid #cfcfcf;

}

.lowMoney {

width: 600rpx;

height: 600rpx;

background: white;

border-radius: 20rpx;

display: flex;

flex-direction: row;

}

.low_img {

width: 120rpx;

height: 120rpx;

margin: 50rpx;

}

.close {

width: 60rpx;

height: 60rpx;

position: absolute;

right: -70rpx;

top: 20rpx;

}

.now_money {

font-size: 30rpx;

position: absolute;

left: 100rpx;

top: 50rpx;

}

.now_mon {

color: red;

padding-left: 60rpx;

font-weight: 700;

}

.low_money {

padding-top: 23rpx;

display: flex;

flex-direction: row;

}

.low_mon {

width: 150rpx;

height: 60rpx;

background-color: #f2f2f2;

border-radius: 10%;

margin-left: 10rpx;

}

.low_mon_span {

font-weight: 700;

padding-left: 20rpx;

padding-top: 10rpx;

}

.dis {

width: 500rpx;

height: 220rpx;

display: flex;

flex-wrap: wrap;

position: absolute;

margin-top: 180rpx;

margin-left: 50rpx;

}

.discount {

font-size: 30rpx;

width: 230rpx;

height: 100rpx;

border-radius: 10rpx;

background-color: #f2f2f2;

margin-left: 20rpx;

margin-top: 20rpx;

}

.background-color {

background-color: #fcd9be;

}

.check {

width: 80rpx;

height: 70rpx;

position: absolute;

margin-top: 48rpx;

margin-left: 174rpx;

border-bottom-right-radius:10rpx;

}

.discount_view {

display: flex;

justify-content: center;

align-items: center;

padding-top: 8rpx;

}

.lowMoney_mon {

color: red;

font-weight: 700;

}

.lowMoney_tip {

font-size: 25rpx;

color: #707070;

}

.sure_but {

width: 500rpx;

height: 13%;

position: absolute;

bottom: 30rpx;

margin-left: 50rpx;

font-size: 30rpx;

display: flex;

justify-content: center;

align-items: center;

background-color: #e44178;

color: white;

font-weight: 700;

}

/* 遮罩层 */

.mask {

/* display: block; */

width: 100%;

height: 100%;

position: fixed;

top: 0;

left: 0;

background: rgba(0, 0, 0, 0.5);

z-index: 9000;

opacity: 0.5;

}

/* 弹出层 */

.modalDlg {

width: 400rpx;

position: fixed;

top: 25vh;

left: 0;

right: 0;

z-index: 9999;

margin: 0 auto;

background-color: #fff;

border-radius: 5px;

display: flex;

flex-direction: column;

align-items: center;

}

.new {

width: 120rpx;

height: 120rpx;

border-radius: 50%;

background-color: #e44179;

color: white;

font-size: 25rpx;

display: flex;

justify-content: center;

align-items: center;

position: fixed;

bottom: 200rpx;

right: 20rpx;

}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/295813.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

objective-c中的static

在方法之外定义的变量不仅是全局变量,还是外部变量.但是很多场合,我们只需要定义为全局变量,并不是外部变量.也就是说希望定义的全局变量只在特定文件中是全局的,这个变量也只有在特定的类中的方法能访问,再也没有其他方法需要访问这个变量了. 这就引出了static. 被static修饰过…

电子计算机制作探测,如何自己制作一个简易的金属探测器

这是一个金属探测电路,它可以隔着地毯探测出地毯下的硬币或金属片。这个小装置很适合动手自制。一、元器件的准备电路中的NPN型三极管型号为9014,三极管VT1的放大倍数不要太大,这样可以提高电路的灵敏度。VD1-VD2为1N4148。电阻均为1/8W。金属…

“对不起,我们只招父母毕业于名牌院校的孩子”:最可怕的,是你还以为学历不重要...

全世界只有3.14 % 的人关注了爆炸吧知识1 近日,有一条新闻引发网友热议。成都某小学入学面试,要求家长除了带照片和身份证件之外,还要带“父母学历证书原件及复印件”。网上有种说法,该小学筛选的标准是父母毕业于211院校。后来眼…

.NET 6 对 StackOverflow 的优化

.NET 6 对 StackOverflow 的优化Intro去年写了一系列的傻逼代码, 其中有一篇 写了多年代码,你会 StackOverflow 吗,昨天一不小心又写了一个 StackOverflow 代码。。然后想把新的代码加到原来 StackOverflow 的示例中,把原来的示例项目改成了 …

【原】python中文文本挖掘资料集合

这些网址是我在学习python中文文本挖掘时觉得比较好的网站,记录一下,后期也会不定期添加:1.http://www.52nlp.cn/python-%E7%BD%91%E9%A1%B5%E7%88%AC%E8%99%AB-%E6%96%87%E6%9C%AC%E5%A4%84%E7%90%86-%E7%A7%91%E5%AD%A6%E8%AE%A1%E7%AE%97-…

Android之从网络上获取图片的两种方式讲解:thread+handle和AsyncTask方式

从网络上获取图片是一个比较耗时的操作,放在主线程会导致阻塞主线程,响应超时,所以我们不能把它放在主线程里操作,必须放在一个子线程里,我打算采用两种方式去实现。1、采用thread去获取图片,获取到后通过handle把消息发送到与主线程绑定的消息队列中(也就是主线程的loo…

freeware

http://www.nirsoft.net/utils/iconsext.html转载于:https://www.cnblogs.com/androidme/archive/2013/03/13/2957509.html

卸载wrapt_[python] 安装TensorFlow问题 解决Cannot uninstall 'wrapt'. It is a distutils installed project...

cmd安装 pip install tensorflow1.遇到了ERROR: Cannot uninstall wrapt. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.办法1:输入 pip install -U --ig…

推荐16款非常有创意的婚礼请贴

为什么80%的码农都做不了架构师?>>> 日期:2012-4-5 来源:GBin1.com 婚约是标志着你和你的伴侣很快就要有新的开始了,一起开始那段新的历程!婚礼是整个人生旅途中的一个重要里程碑,在婚礼的邀请…

三年磨一剑,五次被拒稿,交大博士坚持稿件申诉,终发表学科顶刊

全世界只有3.14 % 的人关注了爆炸吧知识本文来源:募格学术三年磨一剑,经历五轮审稿被拒,他坚持不懈,最终申诉成功发表物理顶刊;厚积薄发、精益求精,他潜心科研,2年内发表6篇高水平论文&#xff…

Android之面试题精选,自己收藏下

1.android dvm 的进程和Linux的进程,应用程序的进程是否为同一个概念: 答:dvm是dalivk虚拟机。每一个android应用程序都在自己的进程中运行,都拥有一个dalivk虚拟机实例。而每一个dvm都是在linux的一个进程。所以说可以认为是同一…

Java内部类详解(转)

说起内部类这个词,想必很多人都不陌生,但是又会觉得不熟悉。原因是平时编写代码时可能用到的场景不多,用得最多的是在有事件监听的情况下,并且即使用到也很少去总结内部类的用法。今天我们就来一探究竟。下面是本文的目录大纲&…

红旗河最早设计计算机的目的,论红旗河的利弊及其替代方案

最近网上有一条人工河很吸人眼球,它就是我国许多专家们提议的"藏水入疆"的西线调水工程——红旗河,其初衷是好的,想将丰沛的西藏雪化水及降水引入干旱的西北地区滋润出良田来改善中华民族的生存环境,但我认为该工程将是…

.NET Conf 2021 正在进行中,带你看一看微软带来了什么内容

今年最大的.NET活动正在进行, 可以通过Channel9 https://channel9.msdn.com/Events/dotnetConf/2021 看具体的Session 。微软和社区一直在努力统一.NET技术栈。从Visual Studio 到 SQL 和 Azure ,所有功能聚集一堂,让您在桌面、网络、移动和跨平台开发梦…

2013-3-14 生活日记

下午 做java案例和算法设计 5:00—6:00 健身吃饭 6:30 回图书馆做数据挖掘作业 10:30回宿舍 转载于:https://www.cnblogs.com/sunrunzhi/archive/2013/03/14/2959421.html

C# js调用winform方法,C# JS与winform通信

关键组件:System.windows.Forms.WebBroswer 关键声明:类前声明 namespace gdi___ {[System.Security.Permissions.PermissionSet(System.Security.Permissions.SecurityAction.Demand, Name "FullTrust")][System.Runtime.InteropServices.ComVisibleAtt…

下班忘打卡了什么后果_工厂园区安装人脸识别门禁系统有什么好处?

通常情况下,工厂园区的人员流动都是比较频繁且巨大的。厂区的人员不断的进进出出,主要集中在上下班的时间段里面。对于工厂园区的管理人员来说,怎样管理好人员的进出安全与快捷高效通行,与此同时完成上下班的考勤尤其重要。当前的…

Android之matrix类控制图片的旋转、缩放、移动

在Android中,对图片的处理需要使用到Matrix类,Matrix是一个3 x 3的矩阵,他对图片的处理分为四个基本类型: 1、Translate————平移变换 2、Scale————缩放变换 3、Rotate————旋转变换 4、Skew————错切变换 在Android的API里对于每一种变换都提供了三种操作方式…

史上最难逻辑题!据说99.9%的人都做不出来……

全世界只有3.14 % 的人关注了爆炸吧知识非常「逻辑」撩人于无形普林斯顿大学博士生 Raymond Smullyan 是一位非常厉害逻辑高手。在Smullyan与他非常迷恋的女音乐家的第一次约会上,他用了一招意想不到“逻辑”方法,撩她于无形。他说道:“我们来…

中科大计算机博士毕业条件,中国科技大学博士和硕士研究生毕业要求.doc

中国科技大学博士和硕士研究生毕业要求中国科学技术大学研究生学习培养过程要求研究生院、校学位办2011年4月目 录 TOC \o "1-3" \h \z \u HYPERLINK \l "_Toc291147553" 关于博士学位标准修订的指导原则 PAGEREF _Toc291147553 \h 1 HYPERLINK \l "_…