【修复】修复售后商品多选提交失效的问题。

This commit is contained in:
JianWeie
2022-06-14 14:37:02 +08:00
parent eb4345a59d
commit 36747bd345
2 changed files with 3 additions and 3 deletions

View File

@@ -20,8 +20,8 @@
<form @submit="submit"> <form @submit="submit">
<view class="coreshop-tabbar-height"> <view class="coreshop-tabbar-height">
<view class="img-list"> <view class="img-list">
<checkbox-group class="cart-checkbox" v-for="(item, key) in items" :key="key" @change="checkboxChange"> <checkbox-group class="cart-checkbox" @change="checkboxChange">
<view class="cart-checkbox-item"> <view class="cart-checkbox-item" v-for="(item, key) in items" :key="key">
<label class="uni-list-cell uni-list-cell-pd"> <label class="uni-list-cell uni-list-cell-pd">
<view class="cart-checkbox-c"> <view class="cart-checkbox-c">
<checkbox :value='item.id' :checked="item.checked" color="#FF7159" v-if="item.disabled" :disabled="item.disabled" class="checkboxNo" /> <checkbox :value='item.id' :checked="item.checked" color="#FF7159" v-if="item.disabled" :disabled="item.disabled" class="checkboxNo" />

View File

@@ -191,7 +191,7 @@
<view class="coreshop-card-view coreshop-shop-view"> <view class="coreshop-card-view coreshop-shop-view">
<view class="coreshop-font-lg coreshop-text-bold coreshop-text-black">商品信息</view> <view class="coreshop-font-lg coreshop-text-bold coreshop-text-black">商品信息</view>
<u-line color="#eee" border-style="dashed" margin="10px 0" /> <u-line color="#eee" border-style="dashed" margin="10px 0" />
<view class="goods-list-view" v-for="item in orderInfo.items" :key="item.id"> <view class="goods-list-view coreshop-margin-bottom-10" v-for="item in orderInfo.items" :key="item.id">
<image class="coreshop-avatar radius" :src="item.imageUrl" mode="aspectFill"></image> <image class="coreshop-avatar radius" :src="item.imageUrl" mode="aspectFill"></image>
<view class="goods-info-view"> <view class="goods-info-view">
<view class="coreshop-text-black u-line-2" @click="goGoodsDetail(item.goodsId)" v-if="orderInfo.orderType == 1">{{ item.name }}</view> <view class="coreshop-text-black u-line-2" @click="goGoodsDetail(item.goodsId)" v-if="orderInfo.orderType == 1">{{ item.name }}</view>