static图片网络化

This commit is contained in:
anhaogxs
2021-04-10 15:42:46 +08:00
parent 7c07a24236
commit 40310ac2f0
179 changed files with 131 additions and 130 deletions

View File

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

View File

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

View File

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

View File

@ -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="@/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" />
<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" />
</view>
<view class="underline">
<view class="text">

View File

@ -2,7 +2,7 @@
<view>
<view class="sh-title-card mb10">
<view class="title-box">
<image class="title-bg" src="@/static/images/title1.png" mode="aspectFill"></image>
<image class="title-bg" :src="`${$VUE_APP_RESOURCES_URL}/images/title1.png`" mode="aspectFill" />
<view class="title-text">为你推荐</view>
<!-- <view class="title-text" :style="{ color: detail.color }">为你推荐</view> -->
</view>
@ -52,7 +52,8 @@
});
}
},
mounted() {}
mounted() {
}
};
</script>

View File

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

View File

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

View File

@ -5,7 +5,7 @@
</div>
<!-- <view class="poster-pop" v-show="!canvasStatus">
<image
src="@/static/images/poster-close.png"
:src="`${$VUE_APP_RESOURCES_URL}/images/poster-close.png`"
class="close"
@click="posterImageClose"
/>
@ -29,7 +29,7 @@
<view class="save-poster" @click="savePosterPath">生成图片</view>
</view>-->
<view class="poster-pop" v-show="canvasStatus">
<img src="@/static/images/poster-close.png" class="close" @click="posterImageClose" mode="widthFix" />
<img :src="`${$VUE_APP_RESOURCES_URL}/images/poster-close.png`" class="close" @click="posterImageClose" mode="widthFix" />
<image :src="posterImage" alt="tp" class="poster-image" show-menu-by-longpress mode="widthFix" />
<view class="keep">长按图片可以保存到手机</view>
</view>