Browse Source

修改主题

master
gaoxs 5 years ago
parent
commit
1eba07de8a
  1. 2
      components/AddressWindow.vue
  2. 2
      components/CouponListWindow.vue
  3. 2
      components/CouponPop.vue
  4. 6
      components/GoodList.vue
  5. 2
      components/ShareInfo.vue
  6. 2
      components/ShareRedPackets.vue
  7. 4
      components/StorePoster.vue
  8. 6
      components/SwitchWindow.vue
  9. 2
      pages.json
  10. 2
      pages/NotDefined/index.vue
  11. 14
      pages/activity/DargainDetails/index.vue
  12. 4
      pages/activity/GoodsBargain/index.vue
  13. 4
      pages/activity/GoodsGroup/index.vue
  14. 2
      pages/activity/GoodsSeckill/index.vue
  15. 2
      pages/activity/GroupRule/index.vue
  16. 2
      pages/home/index.vue
  17. 2
      pages/order/Logistics/index.vue
  18. 2
      pages/order/MyOrder/index.vue
  19. 4
      pages/order/OrderDetails/index.vue
  20. 2
      pages/order/OrderSubmission/index.vue
  21. 2
      pages/order/ReturnList/index.vue
  22. 2
      pages/orderAdmin/AdminOrder/index.vue
  23. 2
      pages/orderAdmin/GoodsDeliver/index.vue
  24. 2
      pages/orderAdmin/OrderCancellation/index.vue
  25. 2
      pages/shop/GoodSearch/index.vue
  26. 2
      pages/shop/GoodsCollection/index.vue
  27. 6
      pages/shop/GoodsCon/index.vue
  28. 14
      pages/shop/GoodsList/index.vue
  29. 2
      pages/shop/ShoppingCart/index.vue
  30. 2
      pages/shop/news/NewsList/index.vue
  31. 2
      pages/user/Login/index.vue
  32. 2
      pages/user/PersonalData/index.vue
  33. 2
      pages/user/Register/index.vue
  34. 2
      pages/user/RetrievePassword/index.vue
  35. 12
      pages/user/User/index.vue
  36. 4
      pages/user/UserAccount/index.vue
  37. 2
      pages/user/UserVip/index.vue
  38. 4
      pages/user/address/AddressManagement/index.vue
  39. 2
      pages/user/coupon/GetCoupon/index.vue
  40. 2
      pages/user/coupon/UserCoupon/index.vue
  41. 2
      pages/user/promotion/CashAudit/index.vue
  42. 18
      pages/user/promotion/PromoterList/index.vue
  43. 11
      pages/user/signIn/Integral/index.vue
  44. 72
      pages/user/signIn/Sign/index.vue
  45. BIN
      static/icon-cart-hot.png
  46. BIN
      static/icon-class-hot.png
  47. BIN
      static/icon-home-hot.png
  48. BIN
      static/icon-user-hot.png
  49. BIN
      static/images/404.png
  50. BIN
      static/images/close.gif
  51. BIN
      static/images/group.png
  52. BIN
      static/images/h5.png
  53. BIN
      static/images/light.png
  54. BIN
      static/images/noAddress.png
  55. BIN
      static/images/noCart.png
  56. BIN
      static/images/noCollection.png
  57. BIN
      static/images/noCoupon.png
  58. BIN
      static/images/noEvaluate.png
  59. BIN
      static/images/noExpress.png
  60. BIN
      static/images/noGood.png
  61. BIN
      static/images/noNews.png
  62. BIN
      static/images/noOrder.png
  63. BIN
      static/images/noSearch.png
  64. BIN
      static/images/noShopper.png
  65. BIN
      static/images/open.gif
  66. BIN
      static/images/posters.jpg
  67. BIN
      static/images/posters2.jpg
  68. BIN
      static/images/pricetitle.jpg
  69. BIN
      static/images/public.png
  70. BIN
      static/images/scan.gif
  71. BIN
      static/images/share-info.png
  72. BIN
      static/images/value.jpg
  73. BIN
      static/images/writeOffBg.jpg

2
components/AddressWindow.vue

@ -28,7 +28,7 @@
</view>
</view>
<view class="pictrue" v-if="addressList.length < 1">
<image :src="$VUE_APP_RESOURCES_URL+'/images/noAddress.png'" class="image" />
<image src="@/static/images/noAddress.png" class="image" />
</view>
<view class="addressBnt bg-color-red" @click="goAddressPages">新加地址</view>
</view>

2
components/CouponListWindow.vue

@ -35,7 +35,7 @@
</view>
<view v-if="!couponList.length && loaded">
<view class="pictrue">
<image :src="$VUE_APP_RESOURCES_URL+'/images/noCoupon.png'" class="image" />
<image src="@/static/images/noCoupon.png" class="image" />
</view>
</view>
</view>

2
components/CouponPop.vue

@ -31,7 +31,7 @@
</view>
<!--无优惠券-->
<view class="pictrue" v-else>
<image :src="$VUE_APP_RESOURCES_URL+'/images/noCoupon.png'" class="image" />
<image src="@/static/images/noCoupon.png" class="image" />
</view>
</view>
<view class="mask" @touchmove.prevent :hidden="coupon.coupon === false" @click="close"></view>

6
components/GoodList.vue

@ -3,9 +3,9 @@
<view @click="routerGo(item)" class="item acea-row row-between-wrapper" v-for="(item, goodlistIndex) in goodList" :key="goodlistIndex">
<view class="pictrue">
<image :src="item.image" class="image" />
<image :src="$VUE_APP_RESOURCES_URL + '/images/one.png'" class="numPic" v-if="isSort === true && index === 0" />
<image :src="$VUE_APP_RESOURCES_URL + '/images/two.png'" class="numPic" v-if="isSort === true && index === 1" />
<image :src="$VUE_APP_RESOURCES_URL + '/images/three.png'" class="numPic" v-if="isSort === true && index === 2" />
<image src="@/static/images/one.png" class="numPic" v-if="isSort === true && index === 0" />
<image src="@/static/images/two.png" class="numPic" v-if="isSort === true && index === 1" />
<image src="@/static/images/three.png" class="numPic" v-if="isSort === true && index === 2" />
</view>
<view class="underline">
<view class="text">

2
components/ShareInfo.vue

@ -1,7 +1,7 @@
<template>
<view v-if="shareInfoStatus" class="poster-first">
<view class="mask-share">
<image :src="$VUE_APP_RESOURCES_URL+'/images/share-info.png'" @click="shareInfoClose" />
<image src="@/static/images/share-info.png" @click="shareInfoClose" />
</view>
</view>
</template>

2
components/ShareRedPackets.vue

@ -6,7 +6,7 @@
></view>
<view class="line"></view>
<view class="sharing-con" @click="goShare">
<image :src="$VUE_APP_RESOURCES_URL+'/images/red-packets.png'" class="image" />
<image src="@/static/images/red-packets.png" class="image" />
<view class="text font-color-red">
<view>会员分享返</view>
<view class="money"><text class="label"></text>{{ priceName }}</view>

4
components/StorePoster.vue

@ -3,7 +3,7 @@
<canvas style="width:747px;height:1326px" canvas-id="myCanvas"></canvas>
<!-- <view class="poster-pop" v-show="!canvasStatus">
<image
:src="$VUE_APP_RESOURCES_URL+'/images/poster-close.png'"
src="@/static/images/poster-close.png"
class="close"
@click="posterImageClose"
/>
@ -28,7 +28,7 @@
</view> -->
<view class="poster-pop" v-show="canvasStatus">
<img
:src="$VUE_APP_RESOURCES_URL+'/images/poster-close.png'"
src="@/static/images/poster-close.png"
class="close"
@click="posterImageClose"
mode="widthFix"

6
components/SwitchWindow.vue

@ -1,10 +1,10 @@
<template>
<view>
<view class="switchWindow" :class="switchActive === true ? 'on' : ''">
<!-- @/assets/images/public.png -->
<!-- @/static/images/public.png -->
<view class="pictrue">
<image v-if="login_type === 'h5'" :src="$VUE_APP_RESOURCES_URL+'/images/h5.png'" />
<image :src="$VUE_APP_RESOURCES_URL+'/images/h5.png'" alt v-else />
<image v-if="login_type === 'h5'" src="@/static/images/h5.png" />
<image src="@/static/images/h5.png" alt v-else />
</view>
<!-- 是否选择切换到小程序账户 -->
<view class="info">

2
pages.json

@ -39,7 +39,7 @@
{
"path": "pages/home/index",
"style": {
"navigationBarTitleText": "home"
"navigationBarTitleText": "yshop商城"
}
},
{

2
pages/NotDefined/index.vue

@ -1,6 +1,6 @@
<template>
<view class="not-defined">
<image :src="$VUE_APP_RESOURCES_URL+'/images/404.png'" />
<image src="@/static/images/404.png" />
<view class="content">
<h3 class="title">页面未找到</h3>
<text>抱歉您访问的页面不存在请返回上一级或点击下方按钮返回首页...</text>

14
pages/activity/DargainDetails/index.vue

@ -81,11 +81,11 @@
<view class="bargainGang">
<view class="title font-color-red acea-row row-center-wrapper">
<view class="pictrue">
<image :src="$VUE_APP_RESOURCES_URL+'/images/left.png'" />
<image src="@/static/images/left.png" />
</view>
<view class="titleCon">砍价帮</view>
<view class="pictrue on">
<image :src="$VUE_APP_RESOURCES_URL+'/images/left.png'" />
<image src="@/static/images/left.png" />
</view>
</view>
<view class="list">
@ -119,11 +119,11 @@
<view class="goodsDetails">
<view class="title font-color-red acea-row row-center-wrapper">
<view class="pictrue">
<image :src="$VUE_APP_RESOURCES_URL+'/images/left.png'" />
<image src="@/static/images/left.png" />
</view>
<view class="titleCon">商品详情</view>
<view class="pictrue on">
<image :src="$VUE_APP_RESOURCES_URL+'/images/left.png'" />
<image src="@/static/images/left.png" />
</view>
</view>
<view class="conter" v-html="bargain.description"></view>
@ -132,18 +132,18 @@
<view class="goodsDetails">
<view class="title font-color-red acea-row row-center-wrapper">
<view class="pictrue">
<image :src="$VUE_APP_RESOURCES_URL+'/images/left.png'" />
<image src="@/static/images/left.png" />
</view>
<view class="titleCon">活动规则</view>
<view class="pictrue on">
<image :src="$VUE_APP_RESOURCES_URL+'/images/left.png'" />
<image src="@/static/images/left.png" />
</view>
</view>
<view class="conter" v-html="bargain.rule"></view>
</view>
<view class="bargainTip" :class="active === true ? 'on' : ''">
<view class="pictrue">
<image :src="$VUE_APP_RESOURCES_URL+'/images/bargainBg.jpg'" />
<image src="@/static/images/bargainBg.jpg" />
<view class="iconfont icon-guanbi" @click="close"></view>
</view>
<view class="cutOff" v-if="bargainPartake === userInfo.uid">

4
pages/activity/GoodsBargain/index.vue

@ -1,7 +1,7 @@
<template>
<view class="bargain-list">
<!-- <view class="header">
<image :src="$VUE_APP_RESOURCES_URL+'/images/cut-bg.png'" alt="">
<image src="@/static/images/cut-bg.png" alt="">
</view>-->
<view class="list" v-if="bargainLis.length > 0">
<view
@ -31,7 +31,7 @@
</view>
<view class="noCommodity" style="background-color: #fff;" v-if="bargainLis.length === 0">
<view class="noPictrue">
<image :src="$VUE_APP_RESOURCES_URL+'/images/noGood.png'" class="image" />
<image src="@/static/images/noGood.png" class="image" />
</view>
</view>
</view>

4
pages/activity/GoodsGroup/index.vue

@ -1,7 +1,7 @@
<template>
<view class="group-list" ref="container">
<!-- <view class="header">
<image :src="$VUE_APP_RESOURCES_URL+'/images/group.png'" class="image" />
<image src="@/static/images/group.png" class="image" />
</view>-->
<view class="list" v-if="combinationList.length>0">
<view
@ -38,7 +38,7 @@
</view>
<view class="noCommodity" style="background-color: #fff;" v-if="combinationList.length === 0">
<view class="noPictrue">
<image :src="$VUE_APP_RESOURCES_URL+'/images/noGood.png'" class="image" />
<image src="@/static/images/noGood.png" class="image" />
</view>
</view>
</view>

2
pages/activity/GoodsSeckill/index.vue

@ -45,7 +45,7 @@
</view>
<view class="noCommodity" style="background-color: #fff;" v-if="seckillList.length === 0 && page > 1">
<view class="noPictrue">
<image :src="$VUE_APP_RESOURCES_URL + '/images/noGood.png'" class="image" />
<image src="@/static/images/noGood.png" class="image" />
</view>
</view>
</view>

2
pages/activity/GroupRule/index.vue

@ -39,7 +39,7 @@
</view>
</view>
<view class="pictrue" v-for="countIndex in count" :key="countIndex">
<image class="img-none" :src="$VUE_APP_RESOURCES_URL+'/images/vacancy.png'" />
<image class="img-none" src="@/static/images/vacancy.png" />
</view>
</view>
<view v-if="(pinkBool === 1 || pinkBool === -1) && count > 9" class="lookAll acea-row row-center-wrapper" @click="lookAll">

2
pages/home/index.vue

@ -16,7 +16,7 @@
</swiper>
</view>
<view class="news acea-row row-between-wrapper">
<view class="pictrue" v-if="$VUE_APP_RESOURCES_URL"><image :src="$VUE_APP_RESOURCES_URL + '/images/news.png'" /></view>
<view class="pictrue" v-if="$VUE_APP_RESOURCES_URL"><image src="@/static/images/news.png" /></view>
<view class="swiper-no-swiping new-banner">
<swiper class="swiper-wrapper" v-if="roll.length > 0" :indicator-dots="false" autoplay circular vertical>
<block v-for="(item, rollIndex) in roll" :key="rollIndex">

2
pages/order/Logistics/index.vue

@ -79,7 +79,7 @@
</view>
<view class="no-express" v-if="loaded && !expressList.length">
<image :src="$VUE_APP_RESOURCES_URL+'/images/noExpress.png'" />
<image src="@/static/images/noExpress.png" />
</view>
<Recommend></Recommend>
</view>

2
pages/order/MyOrder/index.vue

@ -160,7 +160,7 @@
</view>
<view class="noCart" v-if="orderList.length === 0 && page > 1">
<view class="pictrue">
<image :src="$VUE_APP_RESOURCES_URL+'/images/noOrder.png'" />
<image src="@/static/images/noOrder.png" />
</view>
</view>
<Loading :loaded="loaded" :loading="loading"></Loading>

4
pages/order/OrderDetails/index.vue

@ -75,7 +75,7 @@
<!--<view class="grayBg">-->
<!--<view class="pictrue"><image :src="orderInfo.code" /></view>-->
<!--</view>-->
<!--<view class="gear"><image :src="$VUE_APP_RESOURCES_URL+'/images/writeOff.jpg'" /></view>-->
<!--<view class="gear"><image src="@/static/images/writeOff.jpg" /></view>-->
<!--<view class="num">{{ orderInfo._verify_code }}</view>-->
<!--<!--<!--<!--<text class="rules">-->
<!--<!--<!--<text class="item">-->
@ -128,7 +128,7 @@
<!--<view>{{ system_store._detailed_address }}</view>-->
<!--</view>-->
<view class="line" v-if="orderInfo.shippingType === 1">
<image :src="$VUE_APP_RESOURCES_URL+'/images/line.jpg'" />
<image src="@/static/images/line.jpg" />
</view>
</template>
<OrderGoods :evaluate="status.type || 0" :cartInfo="orderInfo.cartInfo || []"></OrderGoods>

2
pages/order/OrderSubmission/index.vue

@ -34,7 +34,7 @@
<!--</view>-->
<!--</view>-->
<view class="line">
<image :src="$VUE_APP_RESOURCES_URL+'/images/line.jpg'" />
<image src="@/static/images/line.jpg" />
</view>
</view>
<OrderGoods :evaluate="0" :cartInfo="orderGroupInfo.cartInfo"></OrderGoods>

2
pages/order/ReturnList/index.vue

@ -35,7 +35,7 @@
</view>
<view class="noCart" v-if="orderList.length === 0 && page > 1">
<view class="pictrue">
<image :src="$VUE_APP_RESOURCES_URL+'/images/noOrder.png'" />
<image src="@/static/images/noOrder.png" />
</view>
</view>
<Loading :loaded="loaded" :loading="loading"></Loading>

2
pages/orderAdmin/AdminOrder/index.vue

@ -20,7 +20,7 @@
<view>{{ orderInfo.userAddress }}</view>
</view>
<view class="line">
<image :src="$VUE_APP_RESOURCES_URL+'/images/line.jpg'" />
<image src="@/static/images/line.jpg" />
</view>
<view class="pos-order-goods">
<view

2
pages/orderAdmin/GoodsDeliver/index.vue

@ -14,7 +14,7 @@
<view>{{ delivery.userAddress }}</view>
</view>
<view class="line">
<image :src="$VUE_APP_RESOURCES_URL+'/images/line.jpg'" />
<image src="@/static/images/line.jpg" />
</view>
</header>
<view class="wrapper">

2
pages/orderAdmin/OrderCancellation/index.vue

@ -8,7 +8,7 @@
<view class="bnt" @click="storeCancellation">立即核销</view>
</view>
<view class="scan" v-if="iswechat">
<image :src="$VUE_APP_RESOURCES_URL+'/images/scan.gif'" @click="openQRCode" />
<image src="@/static/images/scan.gif" @click="openQRCode" />
</view>
<WriteOff :iShidden="iShidden" :orderInfo="orderInfo" @cancel="cancel" @confirm="confirm"></WriteOff>
</view>

2
pages/shop/GoodSearch/index.vue

@ -25,7 +25,7 @@
</view>
<!--<view class="noCommodity">-->
<!--<view class="noPictrue">-->
<!--<image :src="$VUE_APP_RESOURCES_URL+'/images/noSearch.png'" class="image" />-->
<!--<image src="@/static/images/noSearch.png" class="image" />-->
<!--</view>-->
<!--<recommend></recommend>-->
<!--</view>-->

2
pages/shop/GoodsCollection/index.vue

@ -26,7 +26,7 @@
v-if="collectProductList.length < 1 && page > 1"
>
<view class="noPictrue">
<image :src="$VUE_APP_RESOURCES_URL+'/images/noCollection.png'" class="image" />
<image src="@/static/images/noCollection.png" class="image" />
</view>
<Recommend></Recommend>
</view>

6
pages/shop/GoodsCon/index.vue

@ -7,7 +7,7 @@
<text></text>
<text class="num">{{ storeInfo.price }}</text>
<text class="vip-money" v-if="storeInfo.vipPrice && storeInfo.vipPrice > 0">{{ storeInfo.vipPrice }}</text>
<image :src="$VUE_APP_RESOURCES_URL+'/images/vip.png'" class="image" v-if="storeInfo.vipPrice && storeInfo.vipPrice > 0" />
<image src="@/static/images/vip.png" class="image" v-if="storeInfo.vipPrice && storeInfo.vipPrice > 0" />
</view>
<view class="iconfont icon-fenxiang" @click="listenerActionSheet"></view>
</view>
@ -62,9 +62,9 @@
</view>
<view class="superior">
<view class="title acea-row row-center-wrapper">
<image :src="$VUE_APP_RESOURCES_URL+'/images/ling.png'" />
<image src="@/static/images/ling.png" />
<text class="titleTxt">优品推荐</text>
<image :src="$VUE_APP_RESOURCES_URL+'/images/ling.png'" />
<image src="@/static/images/ling.png" />
</view>
<template>
<view class="slider-banner banner">

14
pages/shop/GoodsList/index.vue

@ -21,15 +21,15 @@
>{{ title ? title : "默认" }}</view>
<view class="item" @click="set_where(1)">
价格
<image :src="$VUE_APP_RESOURCES_URL+'/images/horn.png'" v-if="price === 0" />
<image :src="$VUE_APP_RESOURCES_URL+'/images/up.png'" v-if="price === 1" />
<image :src="$VUE_APP_RESOURCES_URL+'/images/down.png'" v-if="price === 2" />
<image src="@/static/images/horn.png" v-if="price === 0" />
<image src="@/static/images/up.png" v-if="price === 1" />
<image src="@/static/images/down.png" v-if="price === 2" />
</view>
<view class="item" @click="set_where(2)">
销量
<image :src="$VUE_APP_RESOURCES_URL+'/images/horn.png'" v-if="stock === 0" />
<image :src="$VUE_APP_RESOURCES_URL+'/images/up.png'" v-if="stock === 1" />
<image :src="$VUE_APP_RESOURCES_URL+'/images/down.png'" v-if="stock === 2" />
<image src="@/static/images/horn.png" v-if="stock === 0" />
<image src="@/static/images/up.png" v-if="stock === 1" />
<image src="@/static/images/down.png" v-if="stock === 2" />
</view>
<!-- down -->
<view class="item" :class="nows ? 'font-color-red' : ''" @click="set_where(3)">新品</view>
@ -70,7 +70,7 @@
v-if="productList.length === 0 && where.page > 1"
>
<view class="noPictrue">
<image :src="$VUE_APP_RESOURCES_URL+'/images/noGood.png'" class="image" />
<image src="@/static/images/noGood.png" class="image" />
</view>
</view>
<Recommend v-if="productList.length === 0 && where.page > 1"></Recommend>

2
pages/shop/ShoppingCart/index.vue

@ -96,7 +96,7 @@
</view>
<!--购物车暂无商品-->
<view class="noCart" v-if="cartList.valid.length === 0 && cartList.invalid.length === 0">
<view class="pictrue"><image :src="$VUE_APP_RESOURCES_URL + '/images/noCart.png'" /></view>
<view class="pictrue"><image src="@/static/images/noCart.png" /></view>
<Recommend></Recommend>
</view>
<view style="height:210rpx"></view>

2
pages/shop/news/NewsList/index.vue

@ -15,7 +15,7 @@
<!--暂无新闻-->
<view class="noCommodity" v-if="articleList.length === 0 && page > 1">
<view class="noPictrue">
<image :src="$VUE_APP_RESOURCES_URL+'/images/noNews.png'" class="image" />
<image src="@/static/images/noNews.png" class="image" />
</view>
</view>
<!--</Tab>-->

2
pages/user/Login/index.vue

@ -2,7 +2,7 @@
<view class="register absolute">
<view class="shading">
<view class="pictrue acea-row row-center-wrapper">
<image src="@/assets/images/logo.png" />
<image src="@/static/images/logo.png" />
</view>
</view>
<view class="whiteBg" v-if="formItem === 1">

2
pages/user/PersonalData/index.vue

@ -33,7 +33,7 @@
<image :src="item.avatar" />
</view>-->
<image
:src="$VUE_APP_RESOURCES_URL+'/images/alter.png'"
src="@/static/images/alter.png"
class="alter"
v-if="item.uid === userInfo.uid"
/>

2
pages/user/Register/index.vue

@ -2,7 +2,7 @@
<view class="register absolute">
<view class="shading">
<view class="pictrue acea-row row-center-wrapper">
<image src="@/assets/images/logo.png" />
<image src="@/static/images/logo.png" />
</view>
</view>
<view class="whiteBg">

2
pages/user/RetrievePassword/index.vue

@ -2,7 +2,7 @@
<view class="register absolute">
<view class="shading">
<view class="pictrue acea-row row-center-wrapper">
<image src="@/assets/images/logo.png" />
<image src="@/static/images/logo.png" />
</view>
</view>
<view class="whiteBg">

12
pages/user/User/index.vue

@ -55,35 +55,35 @@
<view class="orderState acea-row row-middle">
<view @click="goMyOrder(0)" class="item">
<view class="pictrue">
<image :src="$VUE_APP_RESOURCES_URL + '/images/dfk.png'" />
<image src="@/static/images/dfk.png" />
<text class="order-status-num" v-if="userInfo.orderStatusNum.unpaidCount > 0">{{ userInfo.orderStatusNum.unpaidCount }}</text>
</view>
<view>待付款</view>
</view>
<view @click="goMyOrder(1)" class="item">
<view class="pictrue">
<image :src="$VUE_APP_RESOURCES_URL+'/images/dfh.png'" />
<image src="@/static/images/dfh.png" />
<text class="order-status-num" v-if="userInfo.orderStatusNum.unshippedCount > 0">{{ userInfo.orderStatusNum.unshippedCount }}</text>
</view>
<view>待发货</view>
</view>
<view @click="goMyOrder(2)" class="item">
<view class="pictrue">
<image :src="$VUE_APP_RESOURCES_URL+'/images/dsh.png'" />
<image src="@/static/images/dsh.png" />
<text class="order-status-num" v-if="userInfo.orderStatusNum.receivedCount > 0">{{ userInfo.orderStatusNum.receivedCount }}</text>
</view>
<text>待收货</text>
</view>
<view @click="goMyOrder(3)" class="item">
<view class="pictrue">
<image :src="$VUE_APP_RESOURCES_URL+'/images/dpj.png'" />
<image src="@/static/images/dpj.png" />
<text class="order-status-num" v-if="userInfo.orderStatusNum.evaluatedCount > 0">{{ userInfo.orderStatusNum.evaluatedCount }}</text>
</view>
<text>待评价</text>
</view>
<view @click="goReturnList()" class="item">
<view class="pictrue">
<image :src="$VUE_APP_RESOURCES_URL+'/images/sh.png'" />
<image src="@/static/images/sh.png" />
<text class="order-status-num" v-if="userInfo.orderStatusNum.refundCount > 0">{{ userInfo.orderStatusNum.refundCount }}</text>
</view>
<text>售后/退款</text>
@ -110,7 +110,7 @@
<!--@click="changeswitch(true)"-->
<!--v-if="userInfo.phone && isWeixin"-->
<!--&gt;-->
<!--<view class="pictrue"><image :src="$VUE_APP_RESOURCES_URL+'/images/switch.png'" /></view>-->
<!--<view class="pictrue"><image src="@/static/images/switch.png" /></view>-->
<!--<view>账号切换</!--<view>-->
<!--</!--<view>-->
<!-- </view>

4
pages/user/UserAccount/index.vue

@ -20,13 +20,13 @@
<view class="nav acea-row row-middle">
<view class="item" @click="goUserBill(0)">
<view class="pictrue">
<image :src="$VUE_APP_RESOURCES_URL+'/images/record1.png'" />
<image src="@/static/images/record1.png" />
</view>
<view>账单记录</view>
</view>
<view class="item" @click="goUserBill(1)">
<view class="pictrue">
<image :src="$VUE_APP_RESOURCES_URL+'/images/record2.png'" />
<image src="@/static/images/record2.png" />
</view>
<view>消费记录</view>
</view>

2
pages/user/UserVip/index.vue

@ -66,7 +66,7 @@
<Recommend></Recommend>
<view class="growthValue" :class="growthValue === false ? 'on' : ''">
<view class="pictrue">
<image :src="$VUE_APP_RESOURCES_URL+'/images/value.jpg'" />
<image src="@/static/images/value.jpg" />
<text class="iconfont icon-guanbi3" @click="growthTap"></text>
</view>
<view class="conter">{{ illustrate }}</view>

4
pages/user/address/AddressManagement/index.vue

@ -5,7 +5,7 @@
ref="container"
>
<view class="line" v-if="addressList.length > 0">
<image :src="$VUE_APP_RESOURCES_URL+'/images/line.jpg'" />
<image src="@/static/images/line.jpg" />
</view>
<view class="item" v-for="(item, addressListIndex) in addressList" :key="addressListIndex">
<view class="address">
@ -53,7 +53,7 @@
<Loading :loaded="loadend" :loading="loading"></Loading>
<view class="noCommodity" v-if="addressList.length < 1 && page > 1">
<view class="noPictrue">
<image :src="$VUE_APP_RESOURCES_URL+'/images/noAddress.png'" class="image" />
<image src="@/static/images/noAddress.png" class="image" />
</view>
</view>
<view style="height:100rpx;"></view>

2
pages/user/coupon/GetCoupon/index.vue

@ -30,7 +30,7 @@
<!--暂无优惠券-->
<view class="noCommodity" v-if="couponsList.length === 0 && page > 1">
<view class="noPictrue">
<image :src="$VUE_APP_RESOURCES_URL+'/images/noCoupon.png'" class="image" />
<image src="@/static/images/noCoupon.png" class="image" />
</view>
</view>
</view>

2
pages/user/coupon/UserCoupon/index.vue

@ -26,7 +26,7 @@
v-if="couponsList.length === 0 && loading === true"
>
<view class="noPictrue">
<image :src="$VUE_APP_RESOURCES_URL+'/images/noCoupon.png'" class="image" />
<image src="@/static/images/noCoupon.png" class="image" />
</view>
</view>
</view>

2
pages/user/promotion/CashAudit/index.vue

@ -1,7 +1,7 @@
<template>
<view class="cash-audit">
<view class="pictrue">
<image :src="$VUE_APP_RESOURCES_URL+'/images/examine.png'" />
<image src="@/static/images/examine.png" />
</view>
<view class="tip">提现申请已提交等待人工审核</view>
<view class="time">{{ time }}</view>

18
pages/user/promotion/PromoterList/index.vue

@ -34,21 +34,21 @@
<view class="sortNav acea-row row-middle" :class="fixedState === true ? 'on' : ''">
<view class="sortItem" @click="sort('childCount')">
团队排序
<image :src="$VUE_APP_RESOURCES_URL+'/images/sort1.png'" v-if="childCount == 1" />
<image :src="$VUE_APP_RESOURCES_URL+'/images/sort2.png'" v-if="childCount == 2" />
<image :src="$VUE_APP_RESOURCES_URL+'/images/sort3.png'" v-if="childCount == 3" />
<image src="@/static/images/sort1.png" v-if="childCount == 1" />
<image src="@/static/images/sort2.png" v-if="childCount == 2" />
<image src="@/static/images/sort3.png" v-if="childCount == 3" />
</view>
<view class="sortItem" @click="sort('numberCount')">
金额排序
<image :src="$VUE_APP_RESOURCES_URL+'/images/sort1.png'" v-if="numberCount == 1" />
<image :src="$VUE_APP_RESOURCES_URL+'/images/sort2.png'" v-if="numberCount == 2" />
<image :src="$VUE_APP_RESOURCES_URL+'/images/sort3.png'" v-if="numberCount == 3" />
<image src="@/static/images/sort1.png" v-if="numberCount == 1" />
<image src="@/static/images/sort2.png" v-if="numberCount == 2" />
<image src="@/static/images/sort3.png" v-if="numberCount == 3" />
</view>
<view class="sortItem" @click="sort('orderCount')">
订单排序
<image :src="$VUE_APP_RESOURCES_URL+'/images/sort1.png'" v-if="orderCount == 1" />
<image :src="$VUE_APP_RESOURCES_URL+'/images/sort2.png'" v-if="orderCount == 2" />
<image :src="$VUE_APP_RESOURCES_URL+'/images/sort3.png'" v-if="orderCount == 3" />
<image src="@/static/images/sort1.png" v-if="orderCount == 1" />
<image src="@/static/images/sort2.png" v-if="orderCount == 2" />
<image src="@/static/images/sort3.png" v-if="orderCount == 3" />
</view>
</view>
<view :class="fixedState === true ? 'sortList' : ''">

11
pages/user/signIn/Integral/index.vue

@ -43,18 +43,18 @@
:key="listIndex"
>
<view>
<view class="state">{{ item.title }}</view>
<text class="state">{{ item.title }}</text>
<view>
<data-format :date="item.addTime"></data-format>
</view>
</view>
<view class="num" v-if="item.pm == 1">+{{ item.number }}</view>
<view class="num font-color-red" v-if="item.pm == 0">-{{ item.number }}</view>
<text class="num" v-if="item.pm == 1">+{{ item.number }}</text>
<text class="num font-color-red" v-if="item.pm == 0">-{{ item.number }}</text>
</view>
</view>
<!--<view class="list2" :hidden="current !== 1">-->
<!--<view class="item acea-row row-between-wrapper" @click="goHome()">-->
<!--<view class="pictrue"><image :src="$VUE_APP_RESOURCES_URL+'/images/score.png'" /></view>-->
<!--<view class="pictrue"><image src="@/static/images/score.png" /></view>-->
<!--<view class="name">购买商品可获得积分奖励</view>-->
<!--<view class="earn">赚积分</view>-->
<!--</view>-->
@ -62,7 +62,7 @@
<!--class="item acea-row row-between-wrapper"-->
<!--@click="goSignIn()"-->
<!--&gt;-->
<!--<view class="pictrue"><image :src="$VUE_APP_RESOURCES_URL+'/images/score.png'" /></view>-->
<!--<view class="pictrue"><image src="@/static/images/score.png" /></view>-->
<!--<view class="name">每日签到可获得积分奖励</view>-->
<!--<view class="earn">赚积分</view>-->
<!--</view>-->
@ -132,6 +132,7 @@ export default {
that.loadTitle = that.loaded ? "人家是有底线的" : "上拉加载更多";
that.where.page = that.where.page + 1;
that.list.push.apply(that.list, res.data);
console.log(that.list)
},
err => {
uni.showToast({

72
pages/user/signIn/Sign/index.vue

@ -21,64 +21,32 @@
</view>
<view class="wrapper">
<view class="list acea-row row-between-wrapper">
<view
class="item"
v-for="(item, signSystemListIndex) in signSystemList"
:key="signSystemListIndex"
>
<view
:class="signSystemListIndex + 1 === signSystemList.length ? 'rewardTxt' : ''"
>{{ item.day }}</view>
<view
class="venus"
:class="
(signSystemListIndex + 1 === signSystemList.length ? 'reward' : '') +
' ' +
(sign_index >= signSystemListIndex + 1 ? 'venusSelect' : '')
"
></view>
<view
class="num"
:class="sign_index >= signSystemListIndex + 1 ? 'on' : ''"
>+{{ item.signNum }}</view>
<view class="item" v-for="(item, signSystemListIndex) in signSystemList" :key="signSystemListIndex">
<view :class="signSystemListIndex + 1 === signSystemList.length ? 'rewardTxt' : ''">{{ item.day }}</view>
<view class="venus" :class=" (signSystemListIndex + 1 === signSystemList.length ? 'reward' : '') +' ' + (sign_index >= signSystemListIndex + 1 ? 'venusSelect' : '')"></view>
<view class="num" :class="sign_index >= signSystemListIndex + 1 ? 'on' : ''">+{{ item.sign_num }}</view>
</view>
</view>
<!--加在 but on 为已签到-->
<view
class="but bg-color-red"
:class="userInfo.is_day_sgin ? 'on' : ''"
@click="goSign"
>{{ userInfo.isDaySign ? "已签到" : "立即签到" }}</view>
<view class="but bg-color-red" :class="userInfo.is_day_sgin ? 'on' : ''" @click="goSign">{{ userInfo.isDaySign ? "已签到" : "立即签到" }}</view>
<view class="lock"></view>
</view>
<view class="wrapper wrapper2">
<view class="tip">已累计签到</view>
<view class="list2 acea-row row-center row-bottom">
<view
class="item"
v-for="(item, signCountIndex) in signCount"
:key="signCountIndex"
>{{ item || 0 }}</view>
<view class="item" v-for="(item, signCountIndex) in signCount" :key="signCountIndex">{{ item || 0 }}</view>
<view class="data"></view>
</view>
<view class="tip2">据说连续签到第{{ day }}天可获得超额积分一定要坚持签到哦~~~</view>
<view class="list3">
<view
class="item acea-row row-between-wrapper"
v-for="(item, signListIndex) in signList"
:key="signListIndex"
>
<view class="item acea-row row-between-wrapper" v-for="(item, signListIndex) in signList" :key="signListIndex">
<view>
<view class="name line1">{{ item.title }}</view>
<view class="data">{{ item.addTime }}</view>
</view>
<view class="num font-color-red">+{{ item.number }}</view>
</view>
<view
@click="goSignRecord()"
class="Loads acea-row row-center-wrapper"
v-if="signList.length > 0"
>
<view @click="goSignRecord()" class="Loads acea-row row-center-wrapper" v-if="signList.length > 0">
点击加载更多
<view class="iconfont icon-xiangyou acea-row row-center-wrapper"></view>
</view>
@ -86,7 +54,7 @@
</view>
<view class="signTip acea-row row-center-wrapper" :class="active === true ? 'on' : ''">
<view class="signTipLight loadingpic">
<image :src="$VUE_APP_RESOURCES_URL+'/images/light.png'" />
<image src="@/static/images/light.png" />
</view>
<view class="signTipCon">
<view class="state">签到成功</view>
@ -98,21 +66,23 @@
</view>
</template>
<style scoped lang="less">
.Loads .iconfont {
.Loads .iconfont {
font-size: 0.25*100rpx;
margin: 0.02*100rpx 0 0 0.1*100rpx;
}
}
</style>
<script>
import {
import {
postSignUser,
getSignConfig,
postSignIntegral,
getSignList
} from "@/api/user";
import { add } from "@/utils/bc";
} from "@/api/user";
import {
add
} from "@/utils/bc";
export default {
export default {
name: "Sign",
components: {},
props: {},
@ -156,7 +126,9 @@ export default {
//
signUser: function() {
let that = this;
postSignUser({ sign: 1 }).then(res => {
postSignUser({
sign: 1
}).then(res => {
res.data.integral = parseInt(res.data.integral);
var sumSginDay = res.data.sumSignDay;
that.userInfo = res.data;
@ -176,7 +148,7 @@ export default {
goSign: function() {
let that = this,
sumSginDay = that.userInfo.sumSignDay;
if (that.userInfo.is_day_sgin){
if (that.userInfo.is_day_sgin) {
uni.showToast({
title: "您今日已签到!",
icon: "none",
@ -207,5 +179,5 @@ export default {
this.active = false;
}
}
};
};
</script>

BIN
static/icon-cart-hot.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

BIN
static/icon-class-hot.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

BIN
static/icon-home-hot.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

BIN
static/icon-user-hot.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

BIN
static/images/404.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 120 KiB

After

Width:  |  Height:  |  Size: 40 KiB

BIN
static/images/close.gif

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

BIN
static/images/group.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 16 KiB

BIN
static/images/h5.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 6.9 KiB

BIN
static/images/light.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 42 KiB

BIN
static/images/noAddress.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 10 KiB

BIN
static/images/noCart.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 11 KiB

BIN
static/images/noCollection.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 9.9 KiB

BIN
static/images/noCoupon.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 11 KiB

BIN
static/images/noEvaluate.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 10 KiB

BIN
static/images/noExpress.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 13 KiB

BIN
static/images/noGood.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 11 KiB

BIN
static/images/noNews.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 9.0 KiB

BIN
static/images/noOrder.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 8.6 KiB

BIN
static/images/noSearch.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 13 KiB

BIN
static/images/noShopper.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 11 KiB

BIN
static/images/open.gif

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

BIN
static/images/posters.jpg

Binary file not shown.

Before

Width:  |  Height:  |  Size: 52 KiB

BIN
static/images/posters2.jpg

Binary file not shown.

Before

Width:  |  Height:  |  Size: 52 KiB

BIN
static/images/pricetitle.jpg

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
static/images/public.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 8.5 KiB

BIN
static/images/scan.gif

Binary file not shown.

Before

Width:  |  Height:  |  Size: 191 KiB

BIN
static/images/share-info.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.8 KiB

BIN
static/images/value.jpg

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 22 KiB

BIN
static/images/writeOffBg.jpg

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 6.9 KiB

Loading…
Cancel
Save