退款样式

This commit is contained in:
ghusermoon 2020-09-09 16:56:02 +08:00
parent 20e27317be
commit 45c087bf14
2 changed files with 5 additions and 3 deletions

View File

@ -129,7 +129,6 @@ export default {
page: this.page,
type: type,
})
console.log(load)
res.data.forEach(element => {
element.extend_order_goods.forEach(i=>{
// console.log(i)

View File

@ -3,7 +3,6 @@
<view class="radios-container">
<view v-if="type == 2">
<label class="radio-view" v-for="(item, index) in goodsList" :key="index">
<view class="store_info">
<view class="info_img">
<image :src="item.goods_image" mode="">
@ -84,7 +83,6 @@ export default {
computed: {
totalPrice() {
if(this.type == 2){
console.log(this.goodsList)
let pac = 0;
for(let i in this.goodsList){
pac += parseFloat(this.goodsList[i].goods_pay_price) * 100 ;
@ -189,12 +187,17 @@ export default {
background-color: #EDEDED;
.radios-container {
margin-bottom: 20rpx;
.u-radio-group {
width: 100%;
}
.radio-view {
width: 100%;
background-color: #FFFFFF;
padding: 26rpx;
display: flex;
align-items: center;
margin-bottom: 1rpx;
box-sizing: border-box;
.radio {
margin-right: 20rpx;
}