收藏
回答

这里card的间距为什么这么大?该怎么解决?

使用的是vant组件模板,之前在wxml写死数据的时候间距正常,尝试wx:for循环后成了这样

之前:

wxml代码:

<van-tabs active="{{ active }}" bind:change="onChangeanimated>

  <van-tab title="未送达">

  <scroll-view scroll-y="truestyle="height: 900rpx; margin-top: 45rpx;">

    <view class="order_boxstyle="height: 400px;opacity: 0.85;margin-top:5%;margin-left:16%;margin-bottom: 5%;"

     wx:for="{{orderList}}" wx:key="oid">

  

     <van-card

    desc="订单号:{{item.oid}}"

    title="{{item.oname}}"

    num="{{item.count}}"

    price="{{item.money}}"

    desc-class="cardDesc"

    style="margin-bottom: 5%;"

    >

      <view slot="footer">

        <button class="box_btnbindtap="showDetailDialogsize="mini">详情</button>

        <button class="box_btnsize="minibindtap="orderReminder">催单</button>

      </view>

  </van-card>


</view>

</scroll-view>


  </van-tab>


  <van-tab title="待支付dot="true">

    <scroll-view scroll-y="truestyle="height: 400px;">

  <view class="order_boxstyle="height: 400px;opacity: 0.85;margin-top:5%;margin-left:16%;">

  <view style="margin-bottom: 5%;">

    

</view>

</view>

</scroll-view>

  </van-tab>


  <van-tab title="待评价dot="true">

    <scroll-view scroll-y="truestyle="height: 400px;">

  <view class="order_boxstyle="height: 400px;opacity: 0.85;margin-top:5%;margin-left:16%;">

  <view style="margin-bottom: 5%;">

   

</view>

</view>

</scroll-view>

  </van-tab>


</van-tabs>

wxss代码:

.van-tab{}

.van-tabs{}

.van-card{

    width: 80%;

    height: 35%;

    border-radius:7px

}

.order_box{

  justify-content: center;

  height: 20%;

}

.scroll-view{}

.cardDesc{

  margin-top: 20rpx;

}

最后一次编辑于  2022-03-10
回答关注问题邀请回答
收藏

2 个回答

  • 波吉
    波吉
    2022-03-11

    开发者工具不会用吗,检查一下元素啊,是边距导致还是高度导致的,在进行调整

    2022-03-11
    有用
    回复
  • 养乐多💍
    养乐多💍
    2022-03-10

    css里

     justify-content: center;
    

    这个删了

    2022-03-10
    有用
    回复 4
    • 巴别图书馆
      巴别图书馆
      2022-03-10
      呃,没有变化
      2022-03-10
      回复
    • 养乐多💍
      养乐多💍
      2022-03-10回复巴别图书馆
      来个代码片段
      2022-03-10
      回复
    • 巴别图书馆
      巴别图书馆
      2022-03-10回复养乐多💍
      wxml和wxss的代码跟上面一样,除了删掉justify-content: center;没有改动。
      js的相关代码:
      2022-03-10
      回复
    • 巴别图书馆
      巴别图书馆
      2022-03-10回复养乐多💍
      如果可能和wxml的其他组件相关,那其他组件的代码在这里:
      2022-03-10
      回复
登录 后发表内容