每日会议20230419

进度汇报:

吕金帅:完成了对车主表的页面显示

张博文:解决了Listview在Fragment中不能显示的问题。

代码支持:

 BottomNavigationView bottomNavigationView = findViewById(R.id.bottomnavigation);
// NavController navController = Navigation.findNavController(this, R.id.fragment);
NavHostFragment navHostFragment = (NavHostFragment) getSupportFragmentManager().findFragmentById(R.id.fragment);
NavController navController = navHostFragment.getNavController();
AppBarConfiguration configuration = new AppBarConfiguration.Builder(bottomNavigationView.getMenu()).build();
NavigationUI.setupActionBarWithNavController(this, navController, configuration);
NavigationUI.setupWithNavController(bottomNavigationView, navController);

赵纪旭:完成了购物车页面的编写。

代码及其实现:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<template>
    <view class="cart-container" v-if="cart.length !== 0">
 
    <view>
      <!-- 底部的边框线 -->
        <image src="/static/cart_border@2x.png" class="address-border"></image>
    </view>
     
        <!-- 购物车商品列表的标题区域 -->
        <view class="cart-title">
          <!-- 左侧的图标 -->
          <uni-icons type="shop" size="25"></uni-icons>
          <!-- 描述文本 -->
          <text class="cart-title-text">购物车</text> 
        </view>
     
    <view></view>
     
    <!-- 商品列表区域 -->
    <!-- uni-swipe-action 是最外层包裹性质的容器 -->
    <uni-swipe-action>
      <block v-for="(goods, i) in cart" :key="i">
        <!-- uni-swipe-action-item 可以为其子节点提供滑动操作的效果。需要通过 options 属性来指定操作按钮的配置信息 -->
        <uni-swipe-action-item :options="options" @click="swipeActionClickHandler(goods)">
          <my-goods :goods="goods" :show-radio="true" :show-num="true" @radio-change="radioChangeHandler" @num-change="numberChangeHandler"></my-goods>
        </uni-swipe-action-item>
      </block>
    </uni-swipe-action>
     
    <!-- 结算区域 -->
    <my-settle></my-settle>
     
    </view>
   
  <!-- 空白购物车区域 -->
    <view class="empty-cart" v-else>
      <image src="/static/cart_empty@2x.png" class="empty-img"></image>
      <text class="tip-text">空空如也~</text>
    </view>
</template>
 
<script>
    import badgeMix from '@/mixins/tabbar-badge.js'
    // 按需导入 mapState 这个辅助函数
    import { mapState, mapMutations } from 'vuex'
   
    export default {
      // 将 badgeMix 混入到当前的页面中进行使用
      mixins: [badgeMix],
    computed: {
        // 将 m_cart 模块中的 cart 数组映射到当前页面中使用
        ...mapState('m_cart', ['cart']),
      },
        data() {
            return {
            options: [{
                  text: '删除', // 显示的文本内容
                  style: {
                    backgroundColor: '#C00000' // 按钮的背景颜色
                  }
                }] 
            };
        },
    methods: {
        ...mapMutations('m_cart', ['updateGoodsState', 'updateGoodsCount', 'removeGoodsById']),
        // 商品的勾选状态发生了变化
        radioChangeHandler(e) {
           console.log(e)
          this.updateGoodsState(e)
        },
        // 商品的数量发生了变化
        numberChangeHandler(e) {
          this.updateGoodsCount(e)
        },
        // 点击了滑动操作按钮
         swipeActionClickHandler(goods) {
          this.removeGoodsById(goods.goods_id)
        }
      }
    }
</script>
 
<style lang="scss">
.cart-container {
  padding-bottom: 50px;
}
// 底部边框线的样式
.address-border {
  display: block;
  width: 100%;
  height: 6px;
}
 
.cart-title {
  height: 40px;
  display: flex;
  align-items: center;
  font-size: 16px;
  padding-left: 5px;
  border-bottom: 1px solid #efefef;
  .cart-title-text {
    margin-left: 10px;
  }
}
 
.empty-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 150px;
 
  .empty-img {
    width: 90px;
    height: 90px;
  }
 
  .tip-text {
    font-size: 12px;
    color: gray;
    margin-top: 15px;
  }
}
</style>

具体目标:显示商品栏;实现小程序的购物车角标的显示,完成购物车商品的添加,完成购物车的物品单个勾选。

 

posted @   一直队  阅读(5)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 周边上新:园子的第一款马克杯温暖上架
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· DeepSeek如何颠覆传统软件测试?测试工程师会被淘汰吗?
· 使用C#创建一个MCP客户端
点击右上角即可分享
微信分享提示