codecamp

支付宝小程序 UI·历史记录-公积金缴存

本示例主要实现历史公积金缴存、提取记录的查询功能。

使用说明

  • 本示例为纯客户端代码,可直接在模拟器和在真机预览。
  • 更多详情请参见 代码市场

使用指南

安装

在 IDE 安装以下依赖

npm i mashi-open-snippets --save

注册

在 JSON 中引入组件路径

{
  "usingComponents": {
    "move-demo": "mashi-open-snippets/es/housing-fund-record/index"
  }}

调用

分别在 AXML、JS、ACSS 中输入以下代码

<view class="housing-fund-record-page">
  <tabs
   tabs="{{tabs2}}"
   tabsName="activeTab2"
   onTabClick="handleTabClick"
   onChange="handleTabChange"
   activeTab="{{activeTab2}}"
   showPlus="{{false}}"
   capsule="{{false}}"
   hasSubTitle="{{false}}"
  >
   <block a:for="{{tabs2}}">
     <tab-content swipeable="{{true}}" key="{{index}}" tabId="{{index}}" activeTab="{{activeTab2}}" a:if="{{index === 0}}">
       <view class="housing-fund-record-page-content">
        <view a:for="{{filterList}}">
          <housing-fund-record data="{{item}}"/>
        </view>
       </view>
     </tab-content>
     <tab-content swipeable="{{true}}" key="{{index}}" tabId="{{index}}" activeTab="{{activeTab2}}" a:elif="{{index === 2}}">
       <view class="housing-fund-record-page-content">
        <view a:for="{{filterList}}">
          <housing-fund-record data="{{item}}"/>
        </view>
       </view>
     </tab-content>
     <tab-content swipeable="{{true}}" key="{{index}}" tabId="{{index}}" activeTab="{{activeTab2}}" a:else>
       <view class="housing-fund-record-page-content">
        <view a:for="{{filterList}}">
          <housing-fund-record data="{{item}}"/>
        </view>
       </view>
     </tab-content>
   </block>
  </tabs>
</view>
Page({
  data: {
    tabs2: [
      {
        title: '全部',
        subTitle: '全部',
      },
      {
        title: '缴存',
        subTitle: '缴存',
      },
      {
        title: '提取',
        subTitle: '提取',
      },
    ],
    activeTab2: 0,
    list: [
      {
        title: '租房提取',
        isIn: false,
        source: '杭州市西湖区住房公积金管理中心',
        value: '30000.00',
        dateTime: '2019-04-15 12:14',
      }, {
        title: '公司汇缴-6月',
        isIn: true,
        source: '蚂蚁金服(杭州)网络技术有限公司',
        total: '27568.00',
        value: '5442.16',
        dateTime: '2019-06-15 12:14',
      }, {
        title: '公司汇缴-5月',
        isIn: true,
        source: '蚂蚁金服(杭州)网络技术有限公司',
        total: '22126.00',
        value: '5442.16',
        dateTime: '2019-05-15 12:14',
      }, {
        title: '租房提取',
        isIn: false,
        source: '杭州市西湖区住房公积金管理中心',
        value: '30000.00',
        dateTime: '2019-04-15 12:14',
      }, {
        title: '公司汇缴-4月',
        isIn: true,
        source: '蚂蚁金服(杭州)网络技术有限公司',
        total: '46684.00',
        value: '5442.16',
        dateTime: '2019-04-15 12:14',
      }, {
        title: '公司汇缴-3月',
        isIn: true,
        source: '蚂蚁金服(杭州)网络技术有限公司',
        total: '41242.00',
        value: '5442.16',
        dateTime: '2019-04-15 12:14',
      }, {
        title: '公司汇缴-2月',
        isIn: true,
        source: '蚂蚁金服(杭州)网络技术有限公司',
        total: '35800.00',
        value: '5442.16',
        dateTime: '2019-02-15 12:14',
      },
    ],
    filterList: []
  },
  onLoad() {
    this.setData({
      filterList: this.data.list
    })
  },
  handleTabClick({ index, tabsName }) {
    const { activeTab2, list } = this.data;
    // tab 切换了
    if (activeTab2 !== index) {
      switch (index) {
        case 0:
          this.setData({
            filterList: list
          })
          break;
        case 1:
          this.setData({
            filterList: list.filter(item => item.isIn)
          })
          break;
        case 2:
          this.setData({
            filterList: list.filter(item => !item.isIn)
          })
          break;
        default:
          this.setData({
            filterList: list
          })
          break;
      }
    }
    this.setData({
      [tabsName]: index,
    });
  },
  handleTabChange({ index, tabsName }) {
    const { list } = this.data;
    switch (index) {
      case 0:
        this.setData({
          filterList: list
        })
        break;
      case 1:
        this.setData({
          filterList: list.filter(item => item.isIn)
        })
        break;
      case 2:
        this.setData({
          filterList: list.filter(item => !item.isIn)
        })
        break;
      default:
        this.setData({
          filterList: list
        })
        break;
    }
    this.setData({
      [tabsName]: index,
    });
  },
});
.housing-fund-record-page {


    //background-color:rgb(242, 242, 242);


    //padding:16px 12px;


    //height:100vh;


    //box-sizing:border-box;


}




.housing-fund-record-page-content {


    //position: absolute;    


    //width: 100%;


    //top: 0;


    //bottom: 0;


    //left: 0;


    //background-color:red;




    height:calc(100vh - 44px);


    overflow-y: auto;


    background-color:rgb(242, 242, 242);


    padding:16px 12px;


    box-sizing:border-box;


}




.housing-fund-record-page-content >view{


    margin-bottom:24rpx;


}

属性

属性 类型 必填 默认值 描述
data Object {} 接收一个对象,其中 isIn 属性通过 true 或者 false 来控制公积金是缴存还是提取,total 属性为总金额,可填可不填
containerClassName string " " 容器类名
支付宝小程序 UI·选项卡
支付宝小程序 UI·证件上传
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

支付宝小程序开发文档

支付宝小程序 快速示例

支付宝小程序 小程序快速示例

支付宝小程序 框架

支付宝小程序 组件

支付宝小程序组件 基础组件

支付宝小程序组件 无障碍访问

支付宝小程序 扩展组件

支付宝小程序扩展组件 UI组件

支付宝小程序 API

支付宝小程序 开发工具

支付宝小程序 云服务

支付宝小程序 Serverless

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }