Browse Source

越南

yuenan
xubinxcode 3 years ago
parent
commit
3136d8d179
12 changed files with 48 additions and 23 deletions
  1. +4
    -4
      addons/unishop/uniapp/uni-shop/pages.json
  2. +3
    -3
      addons/unishop/uniapp/uni-shop/pages/order/createOrder.vue
  3. +23
    -2
      addons/unishop/uniapp/uni-shop/pages/product/evaluate.vue
  4. +13
    -9
      addons/unishop/uniapp/uni-shop/pages/product/product.vue
  5. +1
    -1
      addons/unishop/uniapp/uni-shop/unpackage/dist/build/h5/index.html
  6. +1
    -1
      addons/unishop/uniapp/uni-shop/unpackage/dist/build/h5/static/js/index.00800f94.js
  7. +1
    -0
      addons/unishop/uniapp/uni-shop/unpackage/dist/build/h5/static/js/pages-order-createOrder.0f6f0263.js
  8. +0
    -1
      addons/unishop/uniapp/uni-shop/unpackage/dist/build/h5/static/js/pages-order-createOrder.4381b6ee.js
  9. +0
    -1
      addons/unishop/uniapp/uni-shop/unpackage/dist/build/h5/static/js/pages-product-evaluate.0f9f68d8.js
  10. +1
    -0
      addons/unishop/uniapp/uni-shop/unpackage/dist/build/h5/static/js/pages-product-evaluate.66564c54.js
  11. +0
    -1
      addons/unishop/uniapp/uni-shop/unpackage/dist/build/h5/static/js/pages-product-product.39e14205.js
  12. +1
    -0
      addons/unishop/uniapp/uni-shop/unpackage/dist/build/h5/static/js/pages-product-product.af442c3a.js

+ 4
- 4
addons/unishop/uniapp/uni-shop/pages.json View File

@@ -6,12 +6,12 @@
"style": {
"enablePullDownRefresh": true,
// #ifdef MP
"navigationBarTitleText": "喂喂商城",
"navigationBarTitleText": "MSVENI SHOP",
//"navigationStyle": "custom",
// #endif
"app-plus": {
"titleNView": {
"titleText": "喂喂商城"
"titleText": "MSVENI SHOP"
//"type": "transparent"
// "searchInput": {
// "backgroundColor": "rgba(231, 231, 231,.7)",
@@ -44,7 +44,7 @@
{
"path": "pages/product/product",
"style": {
"navigationBarTitleText": "详情展示",
"navigationBarTitleText": "MSVENI SHOP",
"enablePullDownRefresh": true,
"app-plus": {
"titleNView": {
@@ -149,7 +149,7 @@
}, {
"path": "pages/order/createOrder",
"style": {
"navigationBarTitleText": "Mua ngay"
"navigationBarTitleText": "MSVENI SHOP"
}
}, {
"path": "pages/address/address",


+ 3
- 3
addons/unishop/uniapp/uni-shop/pages/order/createOrder.vue View File

@@ -104,7 +104,7 @@
</view>
<view class="yt-list-cell b-b" v-if="couponList && couponList.length">
<view class="cell-tit clamp">优惠金额</view>
<view class="cell-tip red">-{{coupon_price}}</view>
<view class="cell-tip red">-{{coupon_price}}</view>
</view>
<view class="yt-list-cell b-b">
<view class="cell-tit clamp">Phương thức vận chuyển
@@ -116,7 +116,7 @@
</view>
<view class="yt-list-cell b-b">
<view class="cell-tit clamp">Phí giao hàng</view>
<view class="cell-tip">{{deliveryPrice}}</view>
<view class="cell-tip">{{deliveryPrice}}</view>
</view>
<view class="yt-list-cell desc-cell">
<view class="cell-tit clamp">Lưu ý</view>
@@ -1334,7 +1334,7 @@
color: $base-color;

&:before {
content: '';
content: '';
font-size: 34upx;
}
}


+ 23
- 2
addons/unishop/uniapp/uni-shop/pages/product/evaluate.vue View File

@@ -5,7 +5,12 @@
<view class="eva-box" v-for="(item, index) in list" :key="index">
<image class="portrait" :src="item.avatar" mode="aspectFill"></image>
<view class="right">
<text class="name">{{item.username || '游客'}}</text>
<view style="display: flex;align-content: center">
<text class="name">{{(item.username || '游客')|tip}}</text>
<template v-for="i in item.rate">
<svg t="1620733744028" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1253" width="20" height="20"><path d="M576.4 203.3c46.7 90.9 118.6 145.5 215.7 163.9 97.1 18.4 111.5 64.9 43.3 139.5s-95.6 162.9-82.3 265.2c13.2 102.3-24.6 131-113.4 86.2s-177.7-44.8-266.6 0-126.6 16-113.4-86.2c13.2-102.3-14.2-190.7-82.4-265.2-68.2-74.6-53.7-121.1 43.3-139.5 97.1-18.4 169-73 215.7-163.9 46.6-90.9 93.4-90.9 140.1 0z" p-id="1254" fill="#f4ea2a"></path></svg>
</template>
</view>
<text class="con">{{item.comment}}</text>
<view class="bot">
<text class="attr" v-if="item.spec != ''">购买类型:{{item.spec}}</text>
@@ -28,6 +33,19 @@
list:[]
}
},
filters: {
tip: function (value) {
if(value.length<=2){
return value;
}
let len = value.length-2;
let xing = '';
for (let i=0;i<len;i++) {
xing+='*';
}
return value.substring(0,1)+xing+value.substring(value.length-1);
}
},
onLoad(options){
this.product_id = options.product_id;
this.getEvaluete();
@@ -68,7 +86,10 @@
.eva-box {
display: flex;
padding: 20upx 0;
.name{
vertical-align: center;
margin-right: 30upx;
}
.portrait {
flex-shrink: 0;
width: 80upx;


+ 13
- 9
addons/unishop/uniapp/uni-shop/pages/product/product.vue View File

@@ -17,7 +17,7 @@
<text class="price">{{specProduct.sales_price|million}}</text>
<text class="price-tip">₫</text>
<text class="m-price" v-if="specProduct.market_price">{{specProduct.market_price|million}}₫</text>
<text class="coupon-tip" v-if="specProduct.market_price > 0 && specProduct.market_price > specProduct.sales_price">{{(specProduct.sales_price/specProduct.market_price*10).toFixed(1)}}折</text>
<text class="coupon-tip" v-if="specProduct.market_price > 0 && specProduct.market_price > specProduct.sales_price">Giảm {{((specProduct.market_price-specProduct.sales_price)/specProduct.market_price*100).toFixed(0)}}%</text>
</view>
<view class="bot-row">
<text>Đã bán: {{product.sales|round}}+</text>
@@ -42,9 +42,9 @@
<view class="c-row b-b">
<text class="tit">Hỗ trợ mua hàng</text>
<view class="bz-list con">
<svg t="1620655994453" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2670" width="20" height="20"><path d="M878.08 731.274667a32 32 0 0 1-54.88-32.938667A360.789333 360.789333 0 0 0 874.666667 512c0-200.298667-162.368-362.666667-362.666667-362.666667S149.333333 311.701333 149.333333 512s162.368 362.666667 362.666667 362.666667a360.789333 360.789333 0 0 0 186.314667-51.445334 32 32 0 0 1 32.928 54.88A424.778667 424.778667 0 0 1 512 938.666667C276.362667 938.666667 85.333333 747.637333 85.333333 512S276.362667 85.333333 512 85.333333s426.666667 191.029333 426.666667 426.666667c0 78.293333-21.152 153.568-60.586667 219.274667zM374.581333 489.450667l84.341334 83.989333 190.432-190.72a32 32 0 0 1 45.290666 45.226667l-213.013333 213.333333a32 32 0 0 1-45.226667 0.064l-106.986666-106.549333a32 32 0 1 1 45.162666-45.344z" p-id="2671" fill="#d81e06"></path></svg><text style="margin: 0 15upx">Freeship</text>
<svg t="1620655994453" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2670" width="20" height="20"><path d="M878.08 731.274667a32 32 0 0 1-54.88-32.938667A360.789333 360.789333 0 0 0 874.666667 512c0-200.298667-162.368-362.666667-362.666667-362.666667S149.333333 311.701333 149.333333 512s162.368 362.666667 362.666667 362.666667a360.789333 360.789333 0 0 0 186.314667-51.445334 32 32 0 0 1 32.928 54.88A424.778667 424.778667 0 0 1 512 938.666667C276.362667 938.666667 85.333333 747.637333 85.333333 512S276.362667 85.333333 512 85.333333s426.666667 191.029333 426.666667 426.666667c0 78.293333-21.152 153.568-60.586667 219.274667zM374.581333 489.450667l84.341334 83.989333 190.432-190.72a32 32 0 0 1 45.290666 45.226667l-213.013333 213.333333a32 32 0 0 1-45.226667 0.064l-106.986666-106.549333a32 32 0 1 1 45.162666-45.344z" p-id="2671" fill="#d81e06"></path></svg><text style="margin: 0 15upx"> Chất lượng kém đền gấp 3</text>
<svg t="1620655994453" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2670" width="20" height="20"><path d="M878.08 731.274667a32 32 0 0 1-54.88-32.938667A360.789333 360.789333 0 0 0 874.666667 512c0-200.298667-162.368-362.666667-362.666667-362.666667S149.333333 311.701333 149.333333 512s162.368 362.666667 362.666667 362.666667a360.789333 360.789333 0 0 0 186.314667-51.445334 32 32 0 0 1 32.928 54.88A424.778667 424.778667 0 0 1 512 938.666667C276.362667 938.666667 85.333333 747.637333 85.333333 512S276.362667 85.333333 512 85.333333s426.666667 191.029333 426.666667 426.666667c0 78.293333-21.152 153.568-60.586667 219.274667zM374.581333 489.450667l84.341334 83.989333 190.432-190.72a32 32 0 0 1 45.290666 45.226667l-213.013333 213.333333a32 32 0 0 1-45.226667 0.064l-106.986666-106.549333a32 32 0 1 1 45.162666-45.344z" p-id="2671" fill="#d81e06"></path></svg> <text style="margin: 0 15upx">Đổi trả trong vòng 7 ngày</text>
<svg t="1620655994453" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2670" width="20" height="20"><path d="M878.08 731.274667a32 32 0 0 1-54.88-32.938667A360.789333 360.789333 0 0 0 874.666667 512c0-200.298667-162.368-362.666667-362.666667-362.666667S149.333333 311.701333 149.333333 512s162.368 362.666667 362.666667 362.666667a360.789333 360.789333 0 0 0 186.314667-51.445334 32 32 0 0 1 32.928 54.88A424.778667 424.778667 0 0 1 512 938.666667C276.362667 938.666667 85.333333 747.637333 85.333333 512S276.362667 85.333333 512 85.333333s426.666667 191.029333 426.666667 426.666667c0 78.293333-21.152 153.568-60.586667 219.274667zM374.581333 489.450667l84.341334 83.989333 190.432-190.72a32 32 0 0 1 45.290666 45.226667l-213.013333 213.333333a32 32 0 0 1-45.226667 0.064l-106.986666-106.549333a32 32 0 1 1 45.162666-45.344z" p-id="2671" fill="#d81e06"></path></svg><text style="margin: 0 10upx">Freeship</text>
<svg t="1620655994453" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2670" width="20" height="20"><path d="M878.08 731.274667a32 32 0 0 1-54.88-32.938667A360.789333 360.789333 0 0 0 874.666667 512c0-200.298667-162.368-362.666667-362.666667-362.666667S149.333333 311.701333 149.333333 512s162.368 362.666667 362.666667 362.666667a360.789333 360.789333 0 0 0 186.314667-51.445334 32 32 0 0 1 32.928 54.88A424.778667 424.778667 0 0 1 512 938.666667C276.362667 938.666667 85.333333 747.637333 85.333333 512S276.362667 85.333333 512 85.333333s426.666667 191.029333 426.666667 426.666667c0 78.293333-21.152 153.568-60.586667 219.274667zM374.581333 489.450667l84.341334 83.989333 190.432-190.72a32 32 0 0 1 45.290666 45.226667l-213.013333 213.333333a32 32 0 0 1-45.226667 0.064l-106.986666-106.549333a32 32 0 1 1 45.162666-45.344z" p-id="2671" fill="#d81e06"></path></svg><text style="margin: 0 10upx"> Chất lượng kém đền gấp 3</text>
<svg t="1620655994453" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2670" width="20" height="20"><path d="M878.08 731.274667a32 32 0 0 1-54.88-32.938667A360.789333 360.789333 0 0 0 874.666667 512c0-200.298667-162.368-362.666667-362.666667-362.666667S149.333333 311.701333 149.333333 512s162.368 362.666667 362.666667 362.666667a360.789333 360.789333 0 0 0 186.314667-51.445334 32 32 0 0 1 32.928 54.88A424.778667 424.778667 0 0 1 512 938.666667C276.362667 938.666667 85.333333 747.637333 85.333333 512S276.362667 85.333333 512 85.333333s426.666667 191.029333 426.666667 426.666667c0 78.293333-21.152 153.568-60.586667 219.274667zM374.581333 489.450667l84.341334 83.989333 190.432-190.72a32 32 0 0 1 45.290666 45.226667l-213.013333 213.333333a32 32 0 0 1-45.226667 0.064l-106.986666-106.549333a32 32 0 1 1 45.162666-45.344z" p-id="2671" fill="#d81e06"></path></svg> <text style="margin: 0 10upx">Đổi trả trong vòng 7 ngày</text>
</view>
</view>
</view>
@@ -74,7 +74,7 @@
<template v-if="tabindex==0">
<view class="detail-desc" v-if="product.desc">
<view class="d-header">
<text>图文详情</text>
<text>Hình ảnh chi tiết</text>
</view>
<view v-for="(item,index) in product.detail_images_text" :key="index">
<image :src="item" style="width:100vw" @click="previewImage(index)" mode="widthFix"></image>
@@ -122,9 +122,9 @@
<image v-if="specProduct.image" mode="aspectFill" :src="specProduct.image"></image>
<view class="right">
<text class="price">{{specProduct.sales_price|million}}₫</text>
<text class="stock">Tồn kho:{{specProduct.stock}}</text>
<text class="stock">Tồn kho:{{specProduct.stock}}</text>
<view class="selected">
已选
Kích thước
<text class="selected-text">
{{specSelectedName}}
</text>
@@ -383,7 +383,11 @@
uni.showModal({
showCancel: false,
title: 'Chat ngay',
content: 'Gọi ngay cho chúng tôi:\n0342261765'
content: 'Gọi ngay cho chúng tôi:\n0342261765',
confirmText: 'OK',
success: (res) => {
window.location.href='tel:0342261765'
}
})
},
async buy() {
@@ -982,7 +986,7 @@
justify-content: center;
font-size: $font-sm;
color: $font-color-base;
width: 120upx;
width: 140upx;
height: 80upx;
position: relative;



+ 1
- 1
addons/unishop/uniapp/uni-shop/unpackage/dist/build/h5/index.html View File

@@ -1,3 +1,3 @@
<!DOCTYPE html><html lang=zh-CN><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,user-scalable=no,initial-scale=1,maximum-scale=1,minimum-scale=1"><title>宜家自购商城</title><script>document.addEventListener('DOMContentLoaded', function() {
document.documentElement.style.fontSize = document.documentElement.clientWidth / 20 + 'px'
})</script><link rel=stylesheet href=/h5/static/index.css></head><body><noscript><strong>Please enable JavaScript to continue.</strong></noscript><div id=app></div><script>/*BAIDU_STAT*/</script><script src=/h5/static/js/chunk-vendors.99ddd405.js></script><script src=/h5/static/js/index.40953ce2.js></script></body></html>
})</script><link rel=stylesheet href=/h5/static/index.css></head><body><noscript><strong>Please enable JavaScript to continue.</strong></noscript><div id=app></div><script>/*BAIDU_STAT*/</script><script src=/h5/static/js/chunk-vendors.99ddd405.js></script><script src=/h5/static/js/index.00800f94.js></script></body></html>

addons/unishop/uniapp/uni-shop/unpackage/dist/build/h5/static/js/index.00800f94.js
File diff suppressed because it is too large
View File


+ 1
- 0
addons/unishop/uniapp/uni-shop/unpackage/dist/build/h5/static/js/pages-order-createOrder.0f6f0263.js
File diff suppressed because it is too large
View File


+ 0
- 1
addons/unishop/uniapp/uni-shop/unpackage/dist/build/h5/static/js/pages-order-createOrder.4381b6ee.js
File diff suppressed because it is too large
View File


+ 0
- 1
addons/unishop/uniapp/uni-shop/unpackage/dist/build/h5/static/js/pages-product-evaluate.0f9f68d8.js View File

@@ -1 +0,0 @@
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-product-evaluate"],{4245:function(t,e,i){"use strict";i.r(e);var a=i("7b0a"),n=i.n(a);for(var o in a)"default"!==o&&function(t){i.d(e,t,(function(){return a[t]}))}(o);e["default"]=n.a},"558c":function(t,e,i){var a=i("7e30");"string"===typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);var n=i("4f06").default;n("f401c6ac",a,!0,{sourceMap:!1,shadowMode:!1})},6745:function(t,e,i){"use strict";var a=i("558c"),n=i.n(a);n.a},"70d5":function(t,e,i){"use strict";i.r(e);var a=i("bbe3"),n=i("4245");for(var o in n)"default"!==o&&function(t){i.d(e,t,(function(){return n[t]}))}(o);i("6745");var s,r=i("f0c5"),c=Object(r["a"])(n["default"],a["b"],a["c"],!1,null,"e97c33f0",null,!1,a["a"],s);e["default"]=c.exports},"7b0a":function(t,e,i){"use strict";var a=i("4ea4");i("4160"),i("159b"),Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,i("96cf");var n=a(i("1da1")),o={data:function(){return{product_id:0,page:1,pageSize:20,list:[]}},onLoad:function(t){this.product_id=t.product_id,this.getEvaluete()},onPullDownRefresh:function(){this.page=1,this.list=[],this.getEvaluete()},onReachBottom:function(){this.getEvaluete()},methods:{getEvaluete:function(){var t=this;return(0,n.default)(regeneratorRuntime.mark((function e(){var i;return regeneratorRuntime.wrap((function(e){while(1)switch(e.prev=e.next){case 0:return e.next=2,t.$api.request("/product/evaluate","GET",{product_id:t.product_id,page:t.page,pagesize:t.pageSize});case 2:i=e.sent,uni.stopPullDownRefresh(),i&&(t.page++,i.forEach((function(e){t.list.push(e)})));case 5:case"end":return e.stop()}}),e)})))()}}};e.default=o},"7e30":function(t,e,i){var a=i("24fb");e=a(!1),e.push([t.i,'@charset "UTF-8";\n/* 页面左右间距 */\n/* 文字尺寸 */\n/*文字颜色*/\n/* 边框颜色 */\n/* 图片加载中颜色 */\n/* 行为相关颜色 */\n/* 背景颜色*/\n/* 评价 */.eva-section[data-v-e97c33f0]{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;padding:%?20?% %?30?%;background:#fff;margin-top:%?16?%}.eva-box[data-v-e97c33f0]{display:-webkit-box;display:-webkit-flex;display:flex;padding:%?20?% 0}.eva-box .portrait[data-v-e97c33f0]{-webkit-flex-shrink:0;flex-shrink:0;width:%?80?%;height:%?80?%;border-radius:100px}.eva-box .right[data-v-e97c33f0]{-webkit-box-flex:1;-webkit-flex:1;flex:1;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;font-size:%?28?%;color:#606266;padding-left:%?26?%}.eva-box .right .con[data-v-e97c33f0]{font-size:%?28?%;color:#303133;padding:%?20?% 0}.eva-box .right .bot[data-v-e97c33f0]{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;font-size:%?24?%;color:#909399}',""]),t.exports=e},bbe3:function(t,e,i){"use strict";var a;i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){return a}));var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("v-uni-view",[i("v-uni-view",{staticClass:"eva-section"},t._l(t.list,(function(e,a){return i("v-uni-view",{key:a,staticClass:"eva-box"},[i("v-uni-image",{staticClass:"portrait",attrs:{src:e.avatar,mode:"aspectFill"}}),i("v-uni-view",{staticClass:"right"},[i("v-uni-text",{staticClass:"name"},[t._v(t._s(e.username||"游客"))]),i("v-uni-text",{staticClass:"con"},[t._v(t._s(e.comment))]),i("v-uni-view",{staticClass:"bot"},[""!=e.spec?i("v-uni-text",{staticClass:"attr"},[t._v("购买类型:"+t._s(e.spec))]):i("v-uni-text",{staticClass:"attr"}),i("v-uni-text",{staticClass:"time"},[t._v(t._s(e.createtime_text))])],1)],1)],1)})),1)],1)},o=[]}}]);

+ 1
- 0
addons/unishop/uniapp/uni-shop/unpackage/dist/build/h5/static/js/pages-product-evaluate.66564c54.js View File

@@ -0,0 +1 @@
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-product-evaluate"],{4183:function(t,e,i){"use strict";var a=i("c327"),n=i.n(a);n.a},4245:function(t,e,i){"use strict";i.r(e);var a=i("7b0a"),n=i.n(a);for(var r in a)"default"!==r&&function(t){i.d(e,t,(function(){return a[t]}))}(r);e["default"]=n.a},"70d5":function(t,e,i){"use strict";i.r(e);var a=i("a1c3"),n=i("4245");for(var r in n)"default"!==r&&function(t){i.d(e,t,(function(){return n[t]}))}(r);i("4183");var s,o=i("f0c5"),c=Object(o["a"])(n["default"],a["b"],a["c"],!1,null,"e7830288",null,!1,a["a"],s);e["default"]=c.exports},"7b0a":function(t,e,i){"use strict";var a=i("4ea4");i("4160"),i("159b"),Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,i("96cf");var n=a(i("1da1")),r={data:function(){return{product_id:0,page:1,pageSize:20,list:[]}},filters:{tip:function(t){if(t.length<=2)return t;for(var e=t.length-2,i="",a=0;a<e;a++)i+="*";return t.substring(0,1)+i+t.substring(t.length-1)}},onLoad:function(t){this.product_id=t.product_id,this.getEvaluete()},onPullDownRefresh:function(){this.page=1,this.list=[],this.getEvaluete()},onReachBottom:function(){this.getEvaluete()},methods:{getEvaluete:function(){var t=this;return(0,n.default)(regeneratorRuntime.mark((function e(){var i;return regeneratorRuntime.wrap((function(e){while(1)switch(e.prev=e.next){case 0:return e.next=2,t.$api.request("/product/evaluate","GET",{product_id:t.product_id,page:t.page,pagesize:t.pageSize});case 2:i=e.sent,uni.stopPullDownRefresh(),i&&(t.page++,i.forEach((function(e){t.list.push(e)})));case 5:case"end":return e.stop()}}),e)})))()}}};e.default=r},a1c3:function(t,e,i){"use strict";var a;i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return r})),i.d(e,"a",(function(){return a}));var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("v-uni-view",[i("v-uni-view",{staticClass:"eva-section"},t._l(t.list,(function(e,a){return i("v-uni-view",{key:a,staticClass:"eva-box"},[i("v-uni-image",{staticClass:"portrait",attrs:{src:e.avatar,mode:"aspectFill"}}),i("v-uni-view",{staticClass:"right"},[i("v-uni-view",{staticStyle:{display:"flex","align-content":"center"}},[i("v-uni-text",{staticClass:"name"},[t._v(t._s(t._f("tip")(e.username||"游客")))]),t._l(e.rate,(function(t){return[i("svg",{staticClass:"icon",attrs:{t:"1620733744028",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"1253",width:"20",height:"20"}},[i("path",{attrs:{d:"M576.4 203.3c46.7 90.9 118.6 145.5 215.7 163.9 97.1 18.4 111.5 64.9 43.3 139.5s-95.6 162.9-82.3 265.2c13.2 102.3-24.6 131-113.4 86.2s-177.7-44.8-266.6 0-126.6 16-113.4-86.2c13.2-102.3-14.2-190.7-82.4-265.2-68.2-74.6-53.7-121.1 43.3-139.5 97.1-18.4 169-73 215.7-163.9 46.6-90.9 93.4-90.9 140.1 0z","p-id":"1254",fill:"#f4ea2a"}})])]}))],2),i("v-uni-text",{staticClass:"con"},[t._v(t._s(e.comment))]),i("v-uni-view",{staticClass:"bot"},[""!=e.spec?i("v-uni-text",{staticClass:"attr"},[t._v("购买类型:"+t._s(e.spec))]):i("v-uni-text",{staticClass:"attr"}),i("v-uni-text",{staticClass:"time"},[t._v(t._s(e.createtime_text))])],1)],1)],1)})),1)],1)},r=[]},c327:function(t,e,i){var a=i("c3f0");"string"===typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);var n=i("4f06").default;n("b414b122",a,!0,{sourceMap:!1,shadowMode:!1})},c3f0:function(t,e,i){var a=i("24fb");e=a(!1),e.push([t.i,'@charset "UTF-8";\n/* 页面左右间距 */\n/* 文字尺寸 */\n/*文字颜色*/\n/* 边框颜色 */\n/* 图片加载中颜色 */\n/* 行为相关颜色 */\n/* 背景颜色*/\n/* 评价 */.eva-section[data-v-e7830288]{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;padding:%?20?% %?30?%;background:#fff;margin-top:%?16?%}.eva-box[data-v-e7830288]{display:-webkit-box;display:-webkit-flex;display:flex;padding:%?20?% 0}.eva-box .name[data-v-e7830288]{vertical-align:center;margin-right:%?30?%}.eva-box .portrait[data-v-e7830288]{-webkit-flex-shrink:0;flex-shrink:0;width:%?80?%;height:%?80?%;border-radius:100px}.eva-box .right[data-v-e7830288]{-webkit-box-flex:1;-webkit-flex:1;flex:1;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;font-size:%?28?%;color:#606266;padding-left:%?26?%}.eva-box .right .con[data-v-e7830288]{font-size:%?28?%;color:#303133;padding:%?20?% 0}.eva-box .right .bot[data-v-e7830288]{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;font-size:%?24?%;color:#909399}',""]),t.exports=e}}]);

+ 0
- 1
addons/unishop/uniapp/uni-shop/unpackage/dist/build/h5/static/js/pages-product-product.39e14205.js
File diff suppressed because it is too large
View File


+ 1
- 0
addons/unishop/uniapp/uni-shop/unpackage/dist/build/h5/static/js/pages-product-product.af442c3a.js
File diff suppressed because it is too large
View File


Loading…
Cancel
Save