tianyi 4 weeks ago
parent
commit
74cc2a6382
  1. 2
      package2/shop/afterService.vue
  2. 12
      package2/shop/merchantRegister.vue
  3. 2
      package2/shop/ranking.vue

2
package2/shop/afterService.vue

@ -66,7 +66,7 @@
alt="" style="width: 60rpx;height: 60rpx;" /> alt="" style="width: 60rpx;height: 60rpx;" />
</view> </view>
<view v-for="(item1,index1) in goodsList" :key="index1" v-if="goodsList != null && goodsList.length > 0" style="display: flex;padding: 20rpx;background: #eee;border-radius: 20rpx;"> <view v-for="(item1,index1) in goodsList" :key="index1" v-if="goodsList != null && goodsList.length > 0" style="display: flex;padding: 20rpx;background: #f5f5f5;border-radius: 20rpx;">
<view class="goods-img"> <view class="goods-img">
<img :src="item1.productPicture" alt=""> <img :src="item1.productPicture" alt="">
</view> </view>

12
package2/shop/merchantRegister.vue

@ -28,7 +28,7 @@
门头图 门头图
</view> </view>
<view class="text" style="width: 180rpx;padding-top: 10rpx;" @tap="pictureAdd('mentou')"> <view class="text" style="width: 180rpx;padding-top: 10rpx;" @tap="pictureAdd('mentou')">
<view class="upload-img" v-if="formData.shopIcon ==''" style="background: #eee;text-align: center;line-height: 180rpx;"> <view class="upload-img" v-if="formData.shopIcon ==''" style="background: #f5f5f5;text-align: center;line-height: 180rpx;">
<uni-icons type="camera" size="28" color="#777"></uni-icons> <uni-icons type="camera" size="28" color="#777"></uni-icons>
</view> </view>
<img :src="formData.shopIcon" v-if="formData.shopIcon !=''" alt="" class="upload-img"> <img :src="formData.shopIcon" v-if="formData.shopIcon !=''" alt="" class="upload-img">
@ -100,13 +100,13 @@
<view class="text" style="width: 380rpx;display: flex;padding-top: 10rpx;"> <view class="text" style="width: 380rpx;display: flex;padding-top: 10rpx;">
<view> <view>
<view class="upload-img" v-if="formData.zhengzhao ==''" @tap="pictureAdd('zheng')" <view class="upload-img" v-if="formData.zhengzhao ==''" @tap="pictureAdd('zheng')"
style="background: #eee;text-align: center;line-height: 180rpx;"> style="background: #f5f5f5;text-align: center;line-height: 180rpx;">
<uni-icons type="camera" size="28" color="#777"></uni-icons> <uni-icons type="camera" size="28" color="#777"></uni-icons>
</view> </view>
<img :src="formData.zhengzhao" v-if="formData.zhengzhao !=''" alt="" class="upload-img"> <img :src="formData.zhengzhao" v-if="formData.zhengzhao !=''" alt="" class="upload-img">
</view> </view>
<view> <view>
<view class="upload-img" @tap="pictureAdd('fan')" v-if="formData.fanzhao ==''" style="background: #eee;text-align: center;line-height: 180rpx;margin-left: 20rpx;"> <view class="upload-img" @tap="pictureAdd('fan')" v-if="formData.fanzhao ==''" style="background: #f5f5f5;text-align: center;line-height: 180rpx;margin-left: 20rpx;">
<uni-icons type="camera" size="28" color="#777"></uni-icons> <uni-icons type="camera" size="28" color="#777"></uni-icons>
</view> </view>
<img :src="formData.fanzhao" v-if="formData.fanzhao !=''" alt="" class="upload-img" style="margin-left: 20rpx;"> <img :src="formData.fanzhao" v-if="formData.fanzhao !=''" alt="" class="upload-img" style="margin-left: 20rpx;">
@ -136,7 +136,7 @@
营业执照 营业执照
</view> </view>
<view class="text" style="width: 180rpx;padding-top: 10rpx;" @tap="pictureAdd('yingye')"> <view class="text" style="width: 180rpx;padding-top: 10rpx;" @tap="pictureAdd('yingye')">
<view class="upload-img" v-if="formData.yingyezhizhao ==''" style="background: #eee;text-align: center;line-height: 180rpx;"> <view class="upload-img" v-if="formData.yingyezhizhao ==''" style="background: #f5f5f5;text-align: center;line-height: 180rpx;">
<uni-icons type="camera" size="28" color="#777"></uni-icons> <uni-icons type="camera" size="28" color="#777"></uni-icons>
</view> </view>
<img :src="formData.yingyezhizhao" v-if="formData.yingyezhizhao !=''" alt="" class="upload-img"> <img :src="formData.yingyezhizhao" v-if="formData.yingyezhizhao !=''" alt="" class="upload-img">
@ -149,7 +149,7 @@
其他补充证照 其他补充证照
</view> </view>
<view class="text" @tap="pictureAdd('qita')" style="width: auto;display: flex;padding-top: 10rpx;position: relative;"> <view class="text" @tap="pictureAdd('qita')" style="width: auto;display: flex;padding-top: 10rpx;position: relative;">
<view class="upload-img" style="background: #eee;text-align: center;line-height: 180rpx;"> <view class="upload-img" style="background: #f5f5f5;text-align: center;line-height: 180rpx;">
<uni-icons type="camera" size="28" color="#777"></uni-icons> <uni-icons type="camera" size="28" color="#777"></uni-icons>
</view> </view>
<img :src="formData.qita[0]" v-if="formData.qita.length>0" alt="" class="upload-img" style="margin-left: 20rpx;"> <img :src="formData.qita[0]" v-if="formData.qita.length>0" alt="" class="upload-img" style="margin-left: 20rpx;">
@ -441,7 +441,7 @@
font-size: 24rpx; font-size: 24rpx;
width: 100%; width: 100%;
height: 100%; height: 100%;
background: #eee; background: #f5f5f5;
overflow: scroll; overflow: scroll;
} }
.content{ .content{

2
package2/shop/ranking.vue

@ -229,7 +229,7 @@
text-align: center; text-align: center;
line-height: 140rpx; line-height: 140rpx;
color: #777; color: #777;
background: #eee; background: #f5f5f5;
} }
.box-right-num { .box-right-num {
padding: 5rpx 0; padding: 5rpx 0;

Loading…
Cancel
Save