2024-05-14 18:15:41 +08:00
|
|
|
|
<template>
|
|
|
|
|
<view class="page">
|
2024-06-07 18:02:00 +08:00
|
|
|
|
<u-navbar title="详情" :border-bottom="false" :background="bgc" title-color='#000' back-icon-color="#000" title-size='36' height='50'></u-navbar>
|
2024-05-14 18:15:41 +08:00
|
|
|
|
<view class="box">
|
|
|
|
|
<view class="shopname">
|
2024-05-17 18:10:58 +08:00
|
|
|
|
{{listobj.name}}
|
2024-05-14 18:15:41 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="shoplist">
|
|
|
|
|
<view class="tit">
|
|
|
|
|
基本信息
|
|
|
|
|
</view>
|
|
|
|
|
<view class="jiben">
|
2024-05-17 18:10:58 +08:00
|
|
|
|
<text class="qian">ID:</text> <text class="shen">{{listobj.agentId}}</text>
|
2024-05-14 18:15:41 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="jiben">
|
2024-05-17 18:10:58 +08:00
|
|
|
|
<text class="qian">分成比例:</text> <text class="shen">{{listobj.point}}%</text>
|
2024-05-14 18:15:41 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="jiben">
|
2024-05-17 18:10:58 +08:00
|
|
|
|
<text class="qian">手机号码:</text> <text class="shen">{{listobj.mobile}}</text>
|
2024-05-14 18:15:41 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="jiben">
|
2024-05-17 18:10:58 +08:00
|
|
|
|
<text class="qian">创建时间:</text> <text class="shen">{{listobj.createTime}}</text>
|
2024-05-14 18:15:41 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="jiben">
|
2024-05-17 18:10:58 +08:00
|
|
|
|
<text class="qian">累计订单:</text> <text class="shen">{{listobj.orderCount}}单</text>
|
2024-05-14 18:15:41 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="icons">
|
|
|
|
|
<image src="https://api.ccttiot.com/smartmeter/img/static/uJreernkkDxjqg7gM4vd" mode="" @click="btnpag(1)"></image>
|
|
|
|
|
<image src="https://api.ccttiot.com/smartmeter/img/static/uYbxDwKqfER2BaDt0mSm" mode="" @click="btnpag(2)"></image>
|
|
|
|
|
<image src="https://api.ccttiot.com/smartmeter/img/static/utOebuXrB5CSxJ7dyQFv" mode="" @click="btnpag(3)"></image>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
show: false,
|
|
|
|
|
storeId:'',
|
|
|
|
|
listobj:{},
|
2024-05-17 18:10:58 +08:00
|
|
|
|
flag:false,
|
|
|
|
|
agentId:''
|
2024-05-14 18:15:41 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onLoad(option) {
|
2024-05-17 18:10:58 +08:00
|
|
|
|
this.agentId = option.agentId
|
|
|
|
|
this.getxq()
|
2024-05-14 18:15:41 +08:00
|
|
|
|
},
|
|
|
|
|
methods: {
|
2024-05-17 18:10:58 +08:00
|
|
|
|
getxq(){
|
|
|
|
|
this.$u.get(`/agent/agent/${this.agentId}`).then(res => {
|
|
|
|
|
if (res.code == 200) {
|
|
|
|
|
this.listobj = res.data
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
2024-05-14 18:15:41 +08:00
|
|
|
|
|
|
|
|
|
btnpag(num){
|
|
|
|
|
if(num == 1){
|
|
|
|
|
uni.navigateTo({
|
2024-05-17 18:10:58 +08:00
|
|
|
|
url:'/page_user/listshu/quanxian?obj=' + JSON.stringify(this.listobj)
|
2024-05-14 18:15:41 +08:00
|
|
|
|
})
|
|
|
|
|
}else if(num == 2){
|
|
|
|
|
uni.navigateTo({
|
2024-05-22 18:04:44 +08:00
|
|
|
|
url:'/page_user/listshu/edit?obj=' + JSON.stringify(this.listobj)
|
2024-05-14 18:15:41 +08:00
|
|
|
|
})
|
|
|
|
|
}else if(num == 3){
|
|
|
|
|
let vm = this
|
|
|
|
|
uni.showModal({
|
|
|
|
|
title: '提示',
|
2024-05-17 18:10:58 +08:00
|
|
|
|
content: '你确定要注销这个代理吗?',
|
2024-05-14 18:15:41 +08:00
|
|
|
|
success: function (res) {
|
|
|
|
|
if (res.confirm) {
|
2024-05-17 18:10:58 +08:00
|
|
|
|
vm.$u.delete(`/agent/agent/${vm.agentId}`).then(res => {
|
|
|
|
|
if (res.code == 200) {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: '注销成功',
|
|
|
|
|
icon: 'success',
|
|
|
|
|
duration: 1000
|
|
|
|
|
})
|
|
|
|
|
setTimeout(()=>{
|
|
|
|
|
uni.navigateBack()
|
|
|
|
|
},1500)
|
2024-05-30 18:02:15 +08:00
|
|
|
|
}else if(res.code == 500){
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: res.msg,
|
|
|
|
|
icon: 'none',
|
|
|
|
|
duration: 1000
|
|
|
|
|
})
|
2024-05-17 18:10:58 +08:00
|
|
|
|
}
|
|
|
|
|
})
|
2024-05-14 18:15:41 +08:00
|
|
|
|
} else if (res.cancel) {
|
|
|
|
|
console.log('用户点击了取消');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
2024-05-25 18:06:00 +08:00
|
|
|
|
/deep/ .u-title,
|
|
|
|
|
/deep/ .uicon-nav-back {
|
2024-06-07 18:02:00 +08:00
|
|
|
|
padding-bottom: 22rpx;
|
2024-05-25 18:06:00 +08:00
|
|
|
|
}
|
2024-05-14 18:15:41 +08:00
|
|
|
|
page {
|
|
|
|
|
background: linear-gradient(180deg, #25CE88 0%, rgba(255, 255, 255, 0) 100%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page {
|
|
|
|
|
width: 750rpx;
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
.box{
|
|
|
|
|
width: 750rpx;
|
|
|
|
|
height: 1440rpx;
|
|
|
|
|
background: #F4F5F7;
|
|
|
|
|
border-radius: 0rpx 0rpx 0rpx 0rpx;
|
|
|
|
|
padding: 22rpx 36rpx;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
.shopname{
|
|
|
|
|
width: 680rpx;
|
|
|
|
|
height: 102rpx;
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
border-radius: 24rpx 24rpx 24rpx 24rpx;
|
|
|
|
|
margin: auto;
|
|
|
|
|
padding-left: 30rpx;
|
|
|
|
|
padding-top: 30rpx;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
color: #3D3D3D;
|
|
|
|
|
}
|
|
|
|
|
.shoplist{
|
|
|
|
|
padding: 30rpx;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
width: 680rpx;
|
|
|
|
|
height: 330rpx;
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
border-radius: 24rpx 24rpx 24rpx 24rpx;
|
|
|
|
|
margin-top: 24rpx;
|
|
|
|
|
.tit{
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #3D3D3D;
|
|
|
|
|
}
|
|
|
|
|
.jiben{
|
|
|
|
|
margin-top: 16rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
.qian{
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
color: #808080;
|
|
|
|
|
width: 40%;
|
|
|
|
|
// margin-right: 20rpx;
|
|
|
|
|
}
|
|
|
|
|
.shen{
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
color: #3D3D3D;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.icons{
|
|
|
|
|
padding-top: 30rpx;
|
|
|
|
|
padding-left: 50rpx;
|
|
|
|
|
padding-right: 50rpx;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
width: 680rpx;
|
|
|
|
|
height: 170rpx;
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
border-radius: 24rpx 24rpx 24rpx 24rpx;
|
|
|
|
|
margin: auto;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
margin-top: 26rpx;
|
|
|
|
|
image{
|
|
|
|
|
width: 96rpx;
|
|
|
|
|
height: 96rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|