[修改账变]

This commit is contained in:
zhangjing
2021-06-24 14:15:58 +08:00
parent c8def77dc3
commit b555234d49
13 changed files with 204 additions and 229 deletions

View File

@@ -41,7 +41,7 @@ const cards = (code, pass) => req({url: "user/cards/activate", method: "POST", d
const logs = (type, channel, page) => req({url: "account/logs", data:{type : type, channel: channel, page : page}}) const logs = (type, channel, page) => req({url: "account/logs", data:{type : type, channel: channel, page : page}})
// 冻结列表 // 冻结列表
const ungrants = (type,) => req({url: "account/ungrants", data:{type : type}}) const ungrants = (type,) => req({url: "account/newungrants", data:{type : type}})
// 发送短信 // 发送短信
const send = (mobile, channel, type) => req({url: "sms/send", method: "POST", data:{mobile : mobile, channel : channel, type : type}}) const send = (mobile, channel, type) => req({url: "sms/send", method: "POST", data:{mobile : mobile, channel : channel, type : type}})

View File

@@ -11,7 +11,7 @@ Page({
blockeds : '', //待发放余额 blockeds : '', //待发放余额
page : {}, //分页信息 page : {}, //分页信息
lodingStats : false, //加载状态 lodingStats : false, //加载状态
screenArray: [ screenArray : [
{ {
channel: 'all', channel: 'all',
name: '全部' name: '全部'
@@ -25,7 +25,8 @@ Page({
name: '出账' name: '出账'
} }
], //账变记录筛选数组 ], //账变记录筛选数组
screenIndex: 0 //账变记录筛选index screenChannel: '', //账变记录筛选数组标识
screenIndex : 0 //账变记录筛选index
}, },
/** /**
@@ -38,6 +39,7 @@ Page({
}, },
onShow() { onShow() {
console.log(this.data.screenChannel)
// 获取账变记录 // 获取账变记录
this.accountInfo(); this.accountInfo();
}, },
@@ -46,7 +48,7 @@ Page({
* 账变记录 * 账变记录
*/ */
accountInfo(page) { accountInfo(page) {
wx.$api.user.logs(this.data.type, page).then(res=>{ wx.$api.user.logs(this.data.type, this.data.screenChannel, page).then(res=>{
//判断金卡、银卡、钻石卡 //判断金卡、银卡、钻石卡
let number let number
if(this.data.type == "silver") { if(this.data.type == "silver") {
@@ -73,6 +75,19 @@ Page({
}) })
}, },
/**
* 筛选账变记录-条件
*/
screenBind(e) {
this.setData({
screenIndex : e.detail.value,
screenChannel: this.data.screenArray[e.detail.value].channel
})
// 获取账变记录
this.accountInfo();
},
/** /**
* 页面相关事件处理函数--监听用户下拉动作 * 页面相关事件处理函数--监听用户下拉动作
*/ */

View File

@@ -23,7 +23,7 @@
<view class="integra-cont-title"> <view class="integra-cont-title">
<view class="integra-cont-name">账变记录</view> <view class="integra-cont-name">账变记录</view>
<view class="integra-cont-picker"> <view class="integra-cont-picker">
<picker bindchange="screenBind" value="{{screenArray[screenIndex].channel}}" range="{{screenArray}}"> <picker bindchange="screenBind" value="{{screenIndex}}" range-key="name" range="{{screenArray}}">
{{screenArray[screenIndex].name}} {{screenArray[screenIndex].name}}
</picker> </picker>
<image class="integra-cont-icon" src="/static/icon/arrow_down.png"></image> <image class="integra-cont-icon" src="/static/icon/arrow_down.png"></image>
@@ -33,16 +33,19 @@
<view class="integra-list" wx:for="{{accounts}}" wx:key="integras"> <view class="integra-list" wx:for="{{accounts}}" wx:key="integras">
<view class="integra-text"> <view class="integra-text">
<view class="integra-title"> <view class="integra-title">
{{item.title}} <view class="integra-title-tips {{item.channel == 'in' ? 'active' : ''}}">{{item.channel == 'in' ? '入' : '出'}}</view>{{item.title}}
</view> </view>
<view class="integra-oints"> <view class="integra-oints {{item.channel == 'in' ? 'active' : ''}}">
{{item.variable}} {{item.variable}}
</view> </view>
</view> </view>
<view class="integra-remark">
{{item.remark}}
</view>
<view class="integra-date"> <view class="integra-date">
<view class="integra-time"> <view class="integra-time">
<text>有效期:</text> <text>{{item.channel == 'in' ? '有效期:' : '扣除时间:'}}</text>
{{item.created_at}} 至 {{item.expired_at}} {{item.created_at}}{{item.channel == 'in' ? ' 至 ' + item.expired_at : ''}}
</view> </view>
<!-- <view class="integra-time"> <!-- <view class="integra-time">
<text>到期时间:</text> <text>到期时间:</text>

View File

@@ -43,6 +43,24 @@
.integra-title { .integra-title {
margin-bottom: 20rpx; margin-bottom: 20rpx;
display: flex;
}
.integra-title-tips {
background-color: green;
color: #fff;
width: 40rpx;
height: 40rpx;
line-height: 38rpx;
text-align: center;
border-radius: 50%;
margin-right: 10rpx;
font-size: 24rpx;
transform: scale(0.8);
}
.integra-title-tips.active {
background-color: red;
} }
.integra-number { .integra-number {
@@ -136,23 +154,39 @@
margin-bottom: 20rpx; margin-bottom: 20rpx;
} }
.integra-title { .integra-list .integra-title {
flex: 1; flex: 1;
font-size: 30rpx; font-size: 30rpx;
display: flex; display: flex;
margin: 0;
} }
.integra-title text { /* .integra-title text {
flex: 1; flex: 1;
} } */
.integra-title image { .integra-title image {
width: 36rpx; width: 36rpx;
height: 36rpx; height: 36rpx;
margin: 4rpx 0 0 10rpx;
} }
.integra-oints { .integra-oints {
color: #f0a479; color: green;
}
.integra-oints.active {
color: red;
}
.integra-remark {
margin-bottom: 20rpx;
font-size: 26rpx;
color: #4e4e4e;
background: #f5f5f5;
display: inline-block;
padding: 6rpx 20rpx;
border-radius: 50rpx;
} }
.integra-date { .integra-date {
@@ -168,6 +202,6 @@
font-size: 28rpx; font-size: 28rpx;
} }
.integra-time text { /* .integra-time text {
color: #000; color: #000;
} } */

View File

@@ -33,9 +33,17 @@ Page({
*/ */
frozenInfo() { frozenInfo() {
wx.$api.user.ungrants(this.data.type).then(res=>{ wx.$api.user.ungrants(this.data.type).then(res=>{
console.log(res)
this.setData({ this.setData({
frozenData: res.data frozenData: res.data
}) })
}) })
},
// 轮播滑动
monitorCurrent(e) {
this.setData({
current: e.detail.current
})
} }
}) })

View File

@@ -28,205 +28,87 @@
</view> --> </view> -->
<view class="grantSwiper"> <view wx:if="{{frozenData.length > 0}}">
<view class="grantSwiper">
<swiper class="banner-swiper" bindchange="monitorCurrent" current="{{current}}"> <swiper class="banner-swiper" bindchange="monitorCurrent" current="{{current}}">
<swiper-item bindtap="userUrl"> <swiper-item bindtap="userUrl" wx:for="{{frozenData}}" wx:key="frozenData">
<view class="banner-height"> <view class="banner-height">
<view class="grantTop"> <view class="grantTop">
<image class="grantTop-img" src="/static/img/frozen_back.png" mode="scaleToFill"></image> <image class="grantTop-img" src="/static/img/frozen_back.png" mode="scaleToFill"></image>
<view class="grantTop-text"> <view class="grantTop-text">
<image src="/static/img/frozen_identity.png"></image> <image src="/static/img/frozen_identity_00.png"></image>
<view class="grantTop-price"> <view class="grantTop-price">
<text>待发放(额度)</text> <text>待发放(额度)</text>
0 <view class="grantTop-price-tips">¥</view>{{item.ungrant}}
</view> </view>
</view> </view>
<view class="grantTop-tips"> <view class="grantTop-tips">
<view class="grantTop-time">发放周期 2021.06.22 ~ 2022.06.22</view> <view class="grantTop-time">发放周期 {{item.cycle}}</view>
<view class="grantTop-number">共0期</view> <view class="grantTop-number">共{{item.num}}期</view>
</view> </view>
</view> </view>
<view class="grantTitle"> <view class="grantTitle">
<view class="grantTitle-name">权益名称</view> <view class="nowrap grantTitle-name">{{item.source.remark}}</view>
<view class="grantTitle-tel">13836142496</view> <view class="grantTitle-tel">{{item.mobile}}</view>
</view> </view>
</view> </view>
<view class="grantIssue"> <view class="grantIssue">
<view class="grantIssue-title"> <view class="grantIssue-title">
<view class="grantIssue-title-name"> <view class="grantIssue-title-name">
<image src="/static/img/frozen_icon.png"></image><text>账户余额分期</text> <image src="/static/img/frozen_icon.png"></image><text>消费红包分期发放</text>
</view> </view>
<view class="grantIssue-title-tips">共分<text>24期</text>发放,一共<text>1254</text>积分。到账即可使用</view> <view class="grantIssue-title-tips">应发余额<text>¥{{item.variable}}</text>发放期数<text> {{item.num}}
</text>期,每期发放<text>¥{{item.avg}}/期</text></view>
</view> </view>
<view class="grantIssue-list"> <view class="grantIssue-list">
<view class="grantIssue-label"> <view class="grantIssue-label" wx:for="{{item.items}}" wx:for-item="listItem" wx:key="items">
<image class="grantIssue-label-img" src="/static/img/frozen_img.png" mode="scaleToFill"></image> <image class="grantIssue-label-img {{listItem.status == 0 ? 'active' : ''}}"
src="/static/img/frozen_img.png" mode="scaleToFill"></image>
<view class="grantIssue-label-cont"> <view class="grantIssue-label-cont">
<view class="grantIssue-label-left"> <view class="grantIssue-label-left">
<view class="grantIssue-left-top">第<text>1</text>期</view> <view class="grantIssue-left-top {{listItem.status == 0 ? 'active' : ''}}">
<view class="grantIssue-left-number">共<text>24</text>期</view> 第<text>{{listItem.num}}</text>期</view>
<view class="grantIssue-left-number {{listItem.status == 0 ? 'active' : ''}}">
共<text>{{item.items.length}}</text>期</view>
</view> </view>
<view class="grantIssue-label-center"> <view class="grantIssue-label-center">
<view class="grantIssue-center-top"><text>120</text>( 发放额度 )</view> <view class="grantIssue-center-top {{listItem.status == 0 ? 'active' : ''}}">
<view class="grantIssue-center-time">发放时间2021-06-22</view> <text>{{listItem.variable}}</text>( 发放额度 )</view>
<view class="grantIssue-center-time">发放时间:{{listItem.start_at}}</view>
</view> </view>
<view class="grantIssue-label-right"> <view class="grantIssue-label-right {{listItem.status == 0 ? 'active' : ''}}">
待发放 {{listItem.status_text}}
</view> </view>
</view> </view>
<image class="grantIssue-label-tips" src="/static/img/frozen_btn.png" mode="scaleToFill"> <image class="grantIssue-label-tips {{listItem.status == 0 ? 'active' : ''}}"
</image> src="/static/img/frozen_btn.png" mode="scaleToFill">
</view>
<view class="grantIssue-label">
<image class="grantIssue-label-img" src="/static/img/frozen_img.png" mode="scaleToFill"></image>
<view class="grantIssue-label-cont">
<view class="grantIssue-label-left">
<view class="grantIssue-left-top">第<text>2</text>期</view>
<view class="grantIssue-left-number">共<text>24</text>期</view>
</view>
<view class="grantIssue-label-center">
<view class="grantIssue-center-top"><text>120</text>( 发放额度 )</view>
<view class="grantIssue-center-time">发放时间2021-06-22</view>
</view>
<view class="grantIssue-label-right">
待发放
</view>
</view>
<image class="grantIssue-label-tips" src="/static/img/frozen_btn.png" mode="scaleToFill">
</image>
</view>
<view class="grantIssue-label">
<image class="grantIssue-label-img" src="/static/img/frozen_img.png" mode="scaleToFill"></image>
<view class="grantIssue-label-cont">
<view class="grantIssue-label-left">
<view class="grantIssue-left-top">第<text>3</text>期</view>
<view class="grantIssue-left-number">共<text>24</text>期</view>
</view>
<view class="grantIssue-label-center">
<view class="grantIssue-center-top"><text>120</text>( 发放额度 )</view>
<view class="grantIssue-center-time">发放时间2021-06-22</view>
</view>
<view class="grantIssue-label-right">
待发放
</view>
</view>
<image class="grantIssue-label-tips" src="/static/img/frozen_btn.png" mode="scaleToFill">
</image>
</view>
<view class="grantIssue-label">
<image class="grantIssue-label-img" src="/static/img/frozen_img.png" mode="scaleToFill"></image>
<view class="grantIssue-label-cont">
<view class="grantIssue-label-left">
<view class="grantIssue-left-top">第<text>4</text>期</view>
<view class="grantIssue-left-number">共<text>24</text>期</view>
</view>
<view class="grantIssue-label-center">
<view class="grantIssue-center-top"><text>120</text>( 发放额度 )</view>
<view class="grantIssue-center-time">发放时间2021-06-22</view>
</view>
<view class="grantIssue-label-right">
待发放
</view>
</view>
<image class="grantIssue-label-tips" src="/static/img/frozen_btn.png" mode="scaleToFill">
</image>
</view>
<view class="grantIssue-label">
<image class="grantIssue-label-img" src="/static/img/frozen_img.png" mode="scaleToFill"></image>
<view class="grantIssue-label-cont">
<view class="grantIssue-label-left">
<view class="grantIssue-left-top">第<text>5</text>期</view>
<view class="grantIssue-left-number">共<text>24</text>期</view>
</view>
<view class="grantIssue-label-center">
<view class="grantIssue-center-top"><text>120</text>( 发放额度 )</view>
<view class="grantIssue-center-time">发放时间2021-06-22</view>
</view>
<view class="grantIssue-label-right">
待发放
</view>
</view>
<image class="grantIssue-label-tips" src="/static/img/frozen_btn.png" mode="scaleToFill">
</image>
</view>
<view class="grantIssue-label">
<image class="grantIssue-label-img" src="/static/img/frozen_img.png" mode="scaleToFill"></image>
<view class="grantIssue-label-cont">
<view class="grantIssue-label-left">
<view class="grantIssue-left-top">第<text>6</text>期</view>
<view class="grantIssue-left-number">共<text>24</text>期</view>
</view>
<view class="grantIssue-label-center">
<view class="grantIssue-center-top"><text>120</text>( 发放额度 )</view>
<view class="grantIssue-center-time">发放时间2021-06-22</view>
</view>
<view class="grantIssue-label-right">
待发放
</view>
</view>
<image class="grantIssue-label-tips" src="/static/img/frozen_btn.png" mode="scaleToFill">
</image>
</view>
<view class="grantIssue-label">
<image class="grantIssue-label-img" src="/static/img/frozen_img.png" mode="scaleToFill"></image>
<view class="grantIssue-label-cont">
<view class="grantIssue-label-left">
<view class="grantIssue-left-top">第<text>7</text>期</view>
<view class="grantIssue-left-number">共<text>24</text>期</view>
</view>
<view class="grantIssue-label-center">
<view class="grantIssue-center-top"><text>120</text>( 发放额度 )</view>
<view class="grantIssue-center-time">发放时间2021-06-22</view>
</view>
<view class="grantIssue-label-right">
待发放
</view>
</view>
<image class="grantIssue-label-tips" src="/static/img/frozen_btn.png" mode="scaleToFill">
</image>
</view>
<view class="grantIssue-label">
<image class="grantIssue-label-img" src="/static/img/frozen_img.png" mode="scaleToFill"></image>
<view class="grantIssue-label-cont">
<view class="grantIssue-label-left">
<view class="grantIssue-left-top">第<text>8</text>期</view>
<view class="grantIssue-left-number">共<text>24</text>期</view>
</view>
<view class="grantIssue-label-center">
<view class="grantIssue-center-top"><text>120</text>( 发放额度 )</view>
<view class="grantIssue-center-time">发放时间2021-06-22</view>
</view>
<view class="grantIssue-label-right">
待发放
</view>
</view>
<image class="grantIssue-label-tips" src="/static/img/frozen_btn.png" mode="scaleToFill">
</image> </image>
</view> </view>
</view> </view>
</view> </view>
</swiper-item> </swiper-item>
<swiper-item bindtap="userUrl">
2
</swiper-item>
</swiper> </swiper>
</view>
<view class="frozenArrow">
<view class="frozenArrow-left">
<image src="/static/icon/frozen_arrow.png"></image>
向右滑动
</view> </view>
<view class="frozenArrow-right">
<image src="/static/icon/frozen_arrow.png"></image>
向左滑动
</view>
</view>
<!-- 自定义轮播图进度点 --> <view class="frozenArrow">
<view class="dots"> <view class="frozenArrow-left" wx:if="{{current != 0}}">
<!-- wx:for="{{adverts}}" wx:key="cardBanner" --> <image src="/static/icon/frozen_arrow.png"></image>
<block> 返回上一个权益
<view class='{{index == swiperCurrent ? "active":""}}'></view> </view>
<view class="frozenArrow-right" wx:if="{{frozenData.length > 1}}">
<image src="/static/icon/frozen_arrow.png"></image>
查看下一个权益
</view>
</view>
<!-- 自定义轮播图进度点 -->
<view class="dots">
<block wx:for="{{frozenData}}" wx:key="frozenData">
<view class='{{index == current ? "active":""}}'></view>
</block> </block>
</view>
</view>
<!-- 暂无内容 -->
<view class="pack-center pages-hint" wx:else>
<view>抱歉,目前暂无内容~</view>
</view> </view>

View File

@@ -102,18 +102,29 @@
/* 最新样式 2021-06-22 */ /* 最新样式 2021-06-22 */
page { page,
.pack-center {
background-image: linear-gradient(to bottom, #24315d, #24315d); background-image: linear-gradient(to bottom, #24315d, #24315d);
} }
.pack-center {
color: #fff;
}
.banner-swiper { .banner-swiper {
height: 100vh; height: 100vh;
overflow: hidden;
}
.banner-swiper swiper-item {
padding: 0 20rpx;
box-sizing: border-box;
} }
.grantSwiper { .grantSwiper {
width: 100%; width: 100%;
height: 100vh; height: 100vh;
padding: 0 80rpx; padding: 0 40rpx;
box-sizing: border-box; box-sizing: border-box;
} }
@@ -167,13 +178,18 @@ page {
color: #fff; color: #fff;
} }
.grantTop-price-tips {
display: inline-block;
font-size: 40rpx;
}
.grantTop-tips { .grantTop-tips {
bottom: 0; bottom: 0;
font-size: 26rpx; font-size: 26rpx;
display: flex; display: flex;
line-height: 70rpx; line-height: 70rpx;
height: 70rpx; height: 70rpx;
padding: 0 40rpx; padding: 0 20rpx;
box-sizing: border-box; box-sizing: border-box;
} }
@@ -197,11 +213,11 @@ page {
box-sizing: border-box; box-sizing: border-box;
height: 90rpx; height: 90rpx;
line-height: 90rpx; line-height: 90rpx;
font-size: 32rpx; font-size: 30rpx;
} }
.grantTitle-name { .grantTitle-name {
padding-left: 30rpx; padding-left: 20rpx;
font-weight: 600; font-weight: 600;
background-image:-webkit-linear-gradient(left,#fbdebe,#e5ad7a); background-image:-webkit-linear-gradient(left,#fbdebe,#e5ad7a);
-webkit-background-clip:text; -webkit-background-clip:text;
@@ -237,14 +253,14 @@ page {
} }
.grantIssue-title-name image { .grantIssue-title-name image {
width: 44rpx; width: 42rpx;
height: 44rpx; height: 42rpx;
margin-right: 20rpx; margin-right: 20rpx;
} }
.grantIssue-title-name text { .grantIssue-title-name text {
font-weight: 600; font-weight: 600;
font-size: 34rpx; font-size: 32rpx;
background-image:-webkit-linear-gradient(left,#fbdebe,#e5ad7a); background-image:-webkit-linear-gradient(left,#fbdebe,#e5ad7a);
-webkit-background-clip:text; -webkit-background-clip:text;
-webkit-text-fill-color:transparent; -webkit-text-fill-color:transparent;
@@ -290,6 +306,16 @@ page {
left: 0; left: 0;
} }
.grantIssue-label-img.active,
.grantIssue-label-tips.active {
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: grayscale(100%);
filter: gray;
}
.grantIssue-label-cont { .grantIssue-label-cont {
position: absolute; position: absolute;
width: 100%; width: 100%;
@@ -312,6 +338,17 @@ page {
font-size: 26rpx; font-size: 26rpx;
} }
.grantIssue-left-top.active,
.grantIssue-center-top.active,
.grantIssue-label-right.active {
color: gray;
}
.grantIssue-left-number.active {
background: -webkit-linear-gradient(left,#e2e2e2,#e2e2e2);
color: gray;
}
.grantIssue-left-top text { .grantIssue-left-top text {
font-size: 34rpx; font-size: 34rpx;
font-weight: 600; font-weight: 600;
@@ -331,16 +368,16 @@ page {
} }
.grantIssue-label-right { .grantIssue-label-right {
width: 90rpx; width: 80rpx;
font-weight: 600; font-weight: 600;
text-align: center; text-align: center;
font-size: 30rpx; font-size: 26rpx;
color: #3d2a26; color: #3d2a26;
line-height: 140rpx; line-height: 140rpx;
} }
.grantIssue-label-center { .grantIssue-label-center {
width: calc(100% - 250rpx); width: calc(100% - 240rpx);
margin: 20rpx 20rpx 0 20rpx; margin: 20rpx 20rpx 0 20rpx;
} }
@@ -391,13 +428,13 @@ page {
} }
.frozenArrow-left { .frozenArrow-left {
left: 10rpx; left: 8rpx;
-webkit-animation: bounce-left 1s linear infinite; -webkit-animation: bounce-left 1s linear infinite;
animation: bounce-left 1s linear infinite; animation: bounce-left 1s linear infinite;
} }
.frozenArrow-right { .frozenArrow-right {
right: 10rpx; right: 8rpx;
-webkit-animation: bounce-right 1s linear infinite; -webkit-animation: bounce-right 1s linear infinite;
animation: bounce-right 1s linear infinite; animation: bounce-right 1s linear infinite;
} }
@@ -443,5 +480,5 @@ page {
.dots .active { .dots .active {
width: 24rpx; width: 24rpx;
border-radius: 40rpx; border-radius: 40rpx;
background-color: #f46851; background-color: #b13509;
} }

View File

@@ -20,7 +20,7 @@ Page({
longitude : 0, //经度 longitude : 0, //经度
latitude : 0, //纬度 latitude : 0, //纬度
adverts : [], //轮播图 adverts : [], //轮播图
stateType : "shaky", stateType : "silver",
cardArr : [], //权益数组 cardArr : [], //权益数组
activities : [], //周五福利 activities : [], //周五福利
isUser : false, //用户登录状态 isUser : false, //用户登录状态

View File

@@ -40,15 +40,11 @@ Page({
*/ */
makeInfo() { makeInfo() {
wx.$api.index.busineSee(this.data.businessId).then(res=>{ wx.$api.index.busineSee(this.data.businessId).then(res=>{
console.log(res.data)
res.data.type[0].checked = true
this.setData({ this.setData({
businessId: res.data.business_id, businessId: res.data.business_id,
makeData : res.data, makeData : res.data,
makeTime : res.data.type, makeTime : res.data.type,
makeItems : res.data.items, makeItems : res.data.items
checkedId : res.data.type[0].id,
itemsId : res.data.items[0].business_item_id,
}) })
}).catch(err=>{ }).catch(err=>{
if(!err.login){ if(!err.login){

View File

@@ -28,7 +28,7 @@
</view> </view>
<view class="makeOne-cont"> <view class="makeOne-cont">
<view class="makeTwo-title"> <view class="makeTwo-title">
* 请选择权益套餐 * 请选择权益套餐类型
</view> </view>
<view class="makeTwo-list"> <view class="makeTwo-list">
<view class="makeTwo-label {{itemsId == item.business_item_id ? 'active':''}}" wx:for="{{makeItems}}" wx:key="makeItems" data-id="{{item.business_item_id}}" bindtap="makeTap"> <view class="makeTwo-label {{itemsId == item.business_item_id ? 'active':''}}" wx:for="{{makeItems}}" wx:key="makeItems" data-id="{{item.business_item_id}}" bindtap="makeTap">

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB