| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <template>
- <view >
- <image class="imagesize" :src="defimagSrc=='/static/defimages/ddd.png'?defimagSrc:baseUrl+imagSrc" mode="scaleToFill" @error="imageError(imagSrc)"></image>
- <view v-if="isyouhui" class="manjianB">
- <text>{{youhuinote}}</text>
- <image style="width: 30rpx;height: 30rpx;top: 4rpx;" src="/static/images/huorer@3x.png" mode="scaleToFill"></image>
- </view>
- <view class="remenfile" :style="isyouhui?'margin-top: -190rpx;':'margin-top: -80rpx;'">
- <uni-icons v-if="isremen" custom-prefix="custom-icon" color="#E02F73" type="fire-filled" size="26" ></uni-icons>
- </view>
- </view>
- </template>
- <script>
- export default {
- props:{
- imagSrc:'',
- isremen:false,
- isyouhui:false,
- youhuinote:''
- },
- data() {
- return {
- baseUrl:this.$baseImagurl,
- defimagSrc:''
- }
- },
- methods: {
- imageError(index){
- this.defimagSrc = '/static/defimages/ddd.png';//默认图片
- },
- }
- }
- </script>
- <style>
- .imagesize{
- width: 100%;
- height: 100%;
- border-radius: 16rpx;
- }
- .manjianB{
- width: 200rpx;
- height: 40rpx;
- margin-left: 10rpx;
- background-color: #CE366F;
- line-height: 40rpx;
- font-size: 24rpx;
- color: white;
- padding-left: 8rpx;
- border-radius:0px 10px 10px 0px;
- margin-top: -80rpx;
- }
- .tuijianB{
- position: absolute;
- width: 120rpx;
- height: 40rpx;
- margin-left: 10rpx;
- background-color: #CE366F;
- line-height: 40rpx;
- font-size: 24rpx;
- color: white;
- padding-left: 8rpx;
- border-radius:0px 10px 10px 0px;
- }
- .textsty{
- font-size: 24rpx;
- color: white;
- padding-left: 8rpx;
- padding-right: 12rpx;
- background-color: aqua;
- }
- .remenfile{
- position: absolute;
- margin-left: 10rpx;
- z-index: 999;
- }
- </style>
|