|
|
@@ -148,6 +148,9 @@
|
|
|
<tui-list-cell @click="pageTo({ url: '/admin/order/itemOrder?customId='+data.id })" class="line-cell" :hover="false" :arrow="true" >
|
|
|
<view class="tui-title">下单记录</view>
|
|
|
</tui-list-cell>
|
|
|
+ <tui-list-cell @click="pageTo({ url: '/admin/hb/list?customId='+data.id + '&customName='+data.name })" class="line-cell" :hover="false" :arrow="true" >
|
|
|
+ <view class="tui-title">红包记录</view>
|
|
|
+ </tui-list-cell>
|
|
|
<tui-list-cell @click="pageTo({ url: '/admin/custom/levelChange?id='+data.id })" class="line-cell" :hover="false" :arrow="true" >
|
|
|
<view class="tui-title">等级变动</view>
|
|
|
</tui-list-cell>
|
|
|
@@ -510,6 +513,13 @@ export default {
|
|
|
this.beginModifyMember()
|
|
|
}
|
|
|
},
|
|
|
+ {
|
|
|
+ name: "发红包",
|
|
|
+ icon: "🧧",
|
|
|
+ funtion: () => {
|
|
|
+ this.sendHb()
|
|
|
+ }
|
|
|
+ },
|
|
|
{
|
|
|
name: "减余额",
|
|
|
icon: "➖",
|
|
|
@@ -591,8 +601,11 @@ export default {
|
|
|
// 已废弃,现在使用展开方式
|
|
|
},
|
|
|
addOrder(){
|
|
|
- this.$util.pageTo({url:'/admin/billing/index2?customId='+this.data.id+'&customName='+this.data.name})
|
|
|
- },
|
|
|
+ uni.navigateTo({url:'/admin/billing/index2?customId='+this.data.id+'&customName='+this.data.name})
|
|
|
+ },
|
|
|
+ sendHb(){
|
|
|
+ uni.navigateTo({url:'/admin/hb/send?customId='+this.data.id+'&customName='+this.data.name + '&userId='+this.data.userId})
|
|
|
+ },
|
|
|
// 打开减余额弹框
|
|
|
openDeductPopup(){
|
|
|
this.$refs.deductPopupRef.open('center')
|
|
|
@@ -1181,10 +1194,10 @@ export default {
|
|
|
.tabs-wrap {
|
|
|
padding: 40upx 10upx;
|
|
|
@include disFlex(center, center);
|
|
|
- flex-wrap: wrap;
|
|
|
+ flex-wrap: nowrap;
|
|
|
.tabs-list {
|
|
|
- width: 25%;
|
|
|
- margin-bottom: 10upx;
|
|
|
+ flex: 1;
|
|
|
+ margin-bottom: 0;
|
|
|
text-align: center;
|
|
|
.tabs-icon {
|
|
|
width: 50upx;
|
|
|
@@ -1202,9 +1215,6 @@ export default {
|
|
|
color: $fontColor2;
|
|
|
font-size: 30upx;
|
|
|
}
|
|
|
- &:nth-child(n + 5) {
|
|
|
- margin-bottom: 0;
|
|
|
- }
|
|
|
}
|
|
|
}
|
|
|
// 备注
|