123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- <template>
- <view class="container">
- <tui-tab :tabs="tabs" isSticky :current="currentTab" selectedColor="#E41F19" sliderBgColor="#E41F19"
- @change="change"></tui-tab>
- <view class="tui-points__list">
- <tui-list-cell :hover="false" v-for="(item,index) in datalist" :key="index">
- <view class="tui-points__item">
- <image v-if="item.prefix==2" class="tui-icon" src="/static/images/mall/wallet/icon_expend_3x.png">
- </image>
- <image v-if="item.prefix==1" class="tui-icon" src="/static/images/mall/wallet/icon_income_3x.png">
- </image>
- <view>
- <view class="tui-title">{{ item.description }}</view>
- <view class="tui-desc">{{ item.create_time }}</view>
- </view>
- <view class="tui-right__box">
- <view class="tui-amount" :class="{'tui-expend':item.prefix==2}">
- {{item.prefix==2?'-':'+'}}{{ item.points }}
- </view>
- <view class="tui-desc" v-if="item.order_num_alias">订单号: {{item.order_num_alias}}</view>
- </view>
- </view>
- </tui-list-cell>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- lang: {},
- tabs: ["全部", "收入", "支出"],
- currentTab: 0,
- datalist: []
- }
- },
- onLoad() {
- const _this = this;
- _this.$request.get('Lang.getlang').then(res => {
- if (res.errno == 0) {
- _this.lang = res.data;
- uni.setNavigationBarTitle({
- title: _this.lang.points + '明细'
- });
- }
- });
- this.getpointsList()
- },
- methods: {
- change(e) {
- this.currentTab = e.index;
- this.getpointsList();
- },
- getpointsList() {
- const _this = this
- _this.$request.post('Points.list', {
- prefix: this.currentTab,
- page: 1,
- pageSize: 50
- }).then(res => {
- if (res.errno == 0) {
- _this.datalist = res.data
- } else {
- _this.datalist = []
- }
- })
- }
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function() {
- setTimeout(() => {
- uni.stopPullDownRefresh()
- }, 200);
- },
- onReachBottom() {}
- }
- </script>
- <style>
- .container {
- padding-bottom: env(safe-area-inset-bottom);
- }
- .tui-points__list {
- margin-top: 20rpx;
- }
- .tui-points__item {
- width: 100%;
- display: flex;
- align-items: center;
- }
- .tui-icon {
- width: 72rpx;
- height: 72rpx;
- margin-right: 20rpx;
- }
- .tui-title {
- font-size: 30rpx;
- font-weight: 400;
- color: #333333;
- }
- .tui-desc {
- font-size: 24rpx;
- font-weight: 400;
- color: #888888;
- padding-top: 12rpx;
- }
- .tui-right__box {
- margin-left: auto;
- text-align: right;
- }
- .tui-amount {
- font-size: 30rpx;
- font-weight: 400;
- color: #EB0909;
- }
- .tui-expend {
- color: #19be6b !important;
- }
- </style>
|