diff --git a/common/common.scss b/common/common.scss index a575b86..ae1c8b7 100644 --- a/common/common.scss +++ b/common/common.scss @@ -57,6 +57,63 @@ height: 20rpx; } +// 评价 +.reviews_item{ + padding: 34rpx 0; + border-bottom: 1px solid #E2E2E2; + &:last-child{ + border-bottom: none; + } + .reviews_item_title{ + display: flex; + align-items: center; + justify-content: space-between; + + .reviews_title_user{ + font-size: 32rpx; + display: flex; + align-items: center; + color: #3D3D3D; + text{ + display: inline-block; + margin-right: 26rpx; + } + } + .reviews_title_time{ + font-size: 24rpx; + font-weight: 400; + color: #909090; + } + } + .reviews_item_color{ + font-size: 24rpx; + color: #909090; + font-weight: 400; + margin-bottom: 21.33rpx; + margin-top: 10rpx; + } + .reviews_item_content{ + font-size: 26.67rpx; + font-weight: 400; + margin-bottom: 34.67rpx; + } + .reviews_item_image{ + display: flex; + align-items: center; + + .reviews_image_content{ + width: 233.33rpx; + height: 233.33rpx; + margin-left: 16.67rpx; + background-color: #999999; + &:first-child{ + margin-left: 0; + } + } + } +} + + // 遮罩层 .mask{ position: fixed; diff --git a/pages.json b/pages.json index 4e3e051..ddae902 100644 --- a/pages.json +++ b/pages.json @@ -191,6 +191,19 @@ "style": { "titleNView":false } + }, + { + "path": "pages/account/myReview", + "style": { + "navigationBarTitleText": "My Review", + "navigationBarBackgroundColor":"#FFFFFF" + } + }, + { + "path": "pages/productDetails/review", + "style": { + "titleNView":false + } } ], "globalStyle": { diff --git a/pages/account/index.vue b/pages/account/index.vue index 4067298..c3d86c9 100644 --- a/pages/account/index.vue +++ b/pages/account/index.vue @@ -64,10 +64,10 @@ Message - + My Review - + My Address diff --git a/pages/account/myReview.vue b/pages/account/myReview.vue new file mode 100644 index 0000000..8baef1b --- /dev/null +++ b/pages/account/myReview.vue @@ -0,0 +1,74 @@ + + + + + \ No newline at end of file diff --git a/pages/order/paySuccess.vue b/pages/order/paySuccess.vue index 02e038e..bb58185 100644 --- a/pages/order/paySuccess.vue +++ b/pages/order/paySuccess.vue @@ -39,10 +39,13 @@ } - + \ No newline at end of file diff --git a/pages/productDetails/review.vue b/pages/productDetails/review.vue new file mode 100644 index 0000000..7f097da --- /dev/null +++ b/pages/productDetails/review.vue @@ -0,0 +1,194 @@ + + + + + + \ No newline at end of file diff --git a/static/img/more.png b/static/img/more.png new file mode 100644 index 0000000..973e18f Binary files /dev/null and b/static/img/more.png differ diff --git a/static/img/more_bf.png b/static/img/more_bf.png new file mode 100644 index 0000000..d25f777 Binary files /dev/null and b/static/img/more_bf.png differ diff --git a/static/img/mute.png b/static/img/mute.png new file mode 100644 index 0000000..dfb00e9 Binary files /dev/null and b/static/img/mute.png differ diff --git a/static/img/naozhong.png b/static/img/naozhong.png new file mode 100644 index 0000000..62958be Binary files /dev/null and b/static/img/naozhong.png differ diff --git a/static/img/play.png b/static/img/play.png new file mode 100644 index 0000000..f76693e Binary files /dev/null and b/static/img/play.png differ diff --git a/static/img/special_bg.png b/static/img/special_bg.png new file mode 100644 index 0000000..79f8c61 Binary files /dev/null and b/static/img/special_bg.png differ diff --git a/static/img/suspend.png b/static/img/suspend.png new file mode 100644 index 0000000..67411cc Binary files /dev/null and b/static/img/suspend.png differ diff --git a/static/img/vedio.png b/static/img/vedio.png new file mode 100644 index 0000000..26d8ce3 Binary files /dev/null and b/static/img/vedio.png differ diff --git a/static/img/vedio_progress.png b/static/img/vedio_progress.png new file mode 100644 index 0000000..48a85b0 Binary files /dev/null and b/static/img/vedio_progress.png differ diff --git a/static/img/write.png b/static/img/write.png new file mode 100644 index 0000000..2e45f63 Binary files /dev/null and b/static/img/write.png differ diff --git a/static/img/zoom.png b/static/img/zoom.png new file mode 100644 index 0000000..e060d19 Binary files /dev/null and b/static/img/zoom.png differ diff --git a/uni_modules/uni-tooltip/changelog.md b/uni_modules/uni-tooltip/changelog.md new file mode 100644 index 0000000..00f1572 --- /dev/null +++ b/uni_modules/uni-tooltip/changelog.md @@ -0,0 +1,10 @@ +## 0.2.1(2022-05-09) +- 修复 content 为空时仍然弹出的bug +## 0.2.0(2022-05-07) +**注意:破坏性更新** +- 更新 text 属性变更为 content +- 更新 移除 width 属性 +## 0.1.1(2022-04-27) +- 修复 组件根 text 嵌套组件 warning +## 0.1.0(2022-04-21) +- 初始化 diff --git a/uni_modules/uni-tooltip/components/uni-tooltip/uni-tooltip.vue b/uni_modules/uni-tooltip/components/uni-tooltip/uni-tooltip.vue new file mode 100644 index 0000000..ffbb6fa --- /dev/null +++ b/uni_modules/uni-tooltip/components/uni-tooltip/uni-tooltip.vue @@ -0,0 +1,68 @@ + + + + + + diff --git a/uni_modules/uni-tooltip/package.json b/uni_modules/uni-tooltip/package.json new file mode 100644 index 0000000..b626efb --- /dev/null +++ b/uni_modules/uni-tooltip/package.json @@ -0,0 +1,83 @@ +{ + "id": "uni-tooltip", + "displayName": "uni-tooltip", + "version": "0.2.1", + "description": "Tooltip 提示文字", + "keywords": [ + "uni-tooltip", + "uni-ui", + "tooltip", + "tip", + "文字提示" +], + "repository": "", +"engines": { + }, + "dcloudext": { + "category": [ + "前端组件", + "通用组件" + ], + "sale": { + "regular": { + "price": "0.00" + }, + "sourcecode": { + "price": "0.00" + } + }, + "contact": { + "qq": "" + }, + "declaration": { + "ads": "无 ", + "data": "无", + "permissions": "无" + }, + "npmurl": "" + }, + "uni_modules": { + "dependencies": [], + "encrypt": [], + "platforms": { + "cloud": { + "tcb": "y", + "aliyun": "y" + }, + "client": { + "Vue": { + "vue2": "y", + "vue3": "y" + }, + "App": { + "app-vue": "y", + "app-nvue": "u" + }, + "H5-mobile": { + "Safari": "y", + "Android Browser": "y", + "微信浏览器(Android)": "y", + "QQ浏览器(Android)": "y" + }, + "H5-pc": { + "Chrome": "y", + "IE": "y", + "Edge": "y", + "Firefox": "y", + "Safari": "y" + }, + "小程序": { + "微信": "y", + "阿里": "u", + "百度": "u", + "字节跳动": "u", + "QQ": "u" + }, + "快应用": { + "华为": "u", + "联盟": "u" + } + } + } + } +} \ No newline at end of file diff --git a/uni_modules/uni-tooltip/readme.md b/uni_modules/uni-tooltip/readme.md new file mode 100644 index 0000000..faafa2e --- /dev/null +++ b/uni_modules/uni-tooltip/readme.md @@ -0,0 +1,8 @@ +## Badge 数字角标 +> **组件名:uni-tooltip** +> 代码块: `uTooltip` + +数字角标一般和其它控件(列表、9宫格等)配合使用,用于进行数量提示,默认为实心灰色背景, + +### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-tooltip) +#### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839