Commit 913dc888 authored by 罗超's avatar 罗超

1

parent 254f272e
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
class="imgicon" class="imgicon"
/> />
<view class="iconname">订单消息</view> <view class="iconname">订单消息</view>
<view class="tipNum">{{ OrderNumber<100?OrderNumber:'99+' }}</view> <view class="tipNum" v-if="OrderNumber>0">{{ OrderNumber<100?OrderNumber:'99+' }}</view>
</view> </view>
<!-- <view class="itemBox"> <!-- <view class="itemBox">
<image <image
...@@ -52,7 +52,7 @@ ...@@ -52,7 +52,7 @@
class="imgicon" class="imgicon"
/> />
<view class="iconname">提现申请</view> <view class="iconname">提现申请</view>
<view class="tipNum">{{ txNumber<100?txNumber:'99+' }}</view> <view class="tipNum" v-if="txNumber>0">{{ txNumber<100?txNumber:'99+' }}</view>
</view> </view>
<view class="itemBox" @click="goUserList('commentsManage')"> <view class="itemBox" @click="goUserList('commentsManage')">
<image <image
...@@ -527,7 +527,7 @@ export default { ...@@ -527,7 +527,7 @@ export default {
// 获取提现消息 // 获取提现消息
getTX() { getTX() {
let msg = { let msg = {
AuditStatus: 3, AuditStatus: 1,
UserId: 0, UserId: 0,
pageIndex: 1, pageIndex: 1,
pageSize: 100, pageSize: 100,
......
<template> <template>
<view class="userManage" :style="{height: contentHeight,}"> <view class="userManage" :style="{ height: contentHeight }">
<view style="padding: 10px 0; background: #fff;"> <view style="padding: 10px 0; background: #fff">
<u-tabs :list="list" :is-scroll="false" :current="current" name="Name" @change="change" <u-tabs
:active-color="mainColor" bg-color="#FFF" height="80" bar-width="100"></u-tabs> :list="list"
:is-scroll="false"
:current="current"
name="Name"
@change="change"
:active-color="mainColor"
bg-color="#FFF"
height="80"
bar-width="100"
></u-tabs>
</view> </view>
<view class="Um_Search" v-if="current==0"> <view class="Um_Search" v-if="current == 0">
<u-search :show-action="false" @search="init(1)" style="background-color: #fff;" height="70" shape="round" <u-search
placeholder="请输入昵称" v-model="msg.Name"></u-search> :show-action="false"
@search="init(1)"
style="background-color: #fff"
height="70"
shape="round"
placeholder="请输入昵称"
v-model="msg.Name"
></u-search>
</view> </view>
<view class="Um_Search" v-if="current==1"> <view class="Um_Search" v-if="current == 1">
<u-search :show-action="false" @search="getDistriData(1)" style="background-color: #fff;" height="70" <u-search
shape="round" placeholder="请输入昵称" v-model="dsMsg.Name"></u-search> :show-action="false"
@search="getDistriData(1)"
style="background-color: #fff"
height="70"
shape="round"
placeholder="请输入昵称"
v-model="dsMsg.Name"
></u-search>
</view> </view>
<view style="height: calc(100vh - 50px); background: #fff;" v-if="dataList.length == 0"> <view
style="height: calc(100vh - 50px); background: #fff"
v-if="dataList.length == 0"
>
<u-empty text="暂无相关数据" mode="order"></u-empty> <u-empty text="暂无相关数据" mode="order"></u-empty>
</view> </view>
<template v-if="current==0"> <template v-if="current == 0">
<view v-if="dataList.length>0" <view
style="height: calc(100vh - 50px);width: calc(100vw);overflow: hidden;padding: 25rpx;background-color: #F7F7F7;"> v-if="dataList.length > 0"
<scroll-view :scroll-y="true" :enable-back-to-top="true" :enable-flex="true" @scrolltolower="lowerTwo" style="
:style="{ height: '100%' }"> height: calc(100vh - 50px);
<view class="userList" v-for="(item,index) in dataList"> width: calc(100vw);
overflow: hidden;
padding: 25rpx;
background-color: #f7f7f7;
"
>
<scroll-view
:scroll-y="true"
:enable-back-to-top="true"
:enable-flex="true"
@scrolltolower="lowerTwo"
:style="{ height: '100%' }"
>
<view class="userList" v-for="(item, index) in dataList">
<view class="user_Top"> <view class="user_Top">
<view class="user_Header"> <view class="user_Header">
<img style="width:100%;height:100%;" :src="item.Photo" alt=""> <img
style="width: 100%; height: 100%"
:src="item.Photo"
alt=""
/>
</view> </view>
<view> <view style="width: 530rpx">
<text class="userName">{{item.Name}}</text> <view style="line-height:50rpx">
<text class="userLevel">{{item.MemberGradeName}}</text> <text class="userName">{{ item.Name }}</text>
<text class="userLevel">{{ item.MemberGradeName }}</text>
</view>
<view class="AliasName">备注名:{{ item.AliasName }}</view>
</view> </view>
</view> </view>
<view class="user_ScoreBwt"> <view class="user_ScoreBwt">
...@@ -38,95 +84,205 @@ ...@@ -38,95 +84,205 @@
</view> </view>
<view> <view>
<text class="user_ComBg">积分</text> <text class="user_ComBg">积分</text>
<text class="user_Number">{{item.Integral}}</text> <text class="user_Number">{{ item.Integral }}</text>
</view> </view>
</view> </view>
<view class="user_ScoreBwt"> <view class="user_ScoreBwt">
<view> <view>
<text class="user_ComBg">订单数</text> <text class="user_ComBg">订单数</text>
<text class="user_Number">{{item.OrderNum}}</text> <text class="user_Number">{{ item.OrderNum }}</text>
</view> </view>
<view> <view>
<text class="user_ComBg">余额</text> <text class="user_ComBg">余额</text>
<text class="user_Number">{{item.Balance}}</text> <text class="user_Number">{{ item.Balance }}</text>
</view> </view>
</view> </view>
<view v-if="item.Remark" style="display: flex;margin-top:20rpx;"> <view v-if="item.Remark" style="display: flex; margin-top: 20rpx">
<view style="flex-shrink: 0;">备注:</view> <view style="flex-shrink: 0">备注:</view>
<view>{{item.Remark}}</view> <view>{{ item.Remark }}</view>
</view> </view>
<view style="display: flex;justify-content:flex-end;margin-top: 20rpx;"> <view
<u-button size="mini" class="ucustomStyle" shape="circle" @click="getItemInfo(item)">修改信息 style="
display: flex;
justify-content: flex-end;
margin-top: 20rpx;
"
>
<u-button
size="mini"
class="ucustomStyle"
shape="circle"
@click="getItemInfo(item)"
>修改备注
</u-button> </u-button>
<u-button size="mini" class="ucustomStyle" shape="circle" @click="kouchuBtn(item,2)">扣除 <u-button
size="mini"
class="ucustomStyle"
shape="circle"
@click="kouchuBtn(item, 2)"
>扣除
</u-button> </u-button>
<u-button size="mini" shape="circle" @click="kouchuBtn(item,1)">充值</u-button> <u-button size="mini" shape="circle" @click="kouchuBtn(item, 1)"
>充值</u-button
>
</view> </view>
</view> </view>
<u-loadmore :status="status" :load-text="loadText" :font-size="24" :margin-top="20" <u-loadmore
:margin-bottom="20" bg-color="#f3f4f6" /> :status="status"
:load-text="loadText"
:font-size="24"
:margin-top="20"
:margin-bottom="20"
bg-color="#f3f4f6"
/>
</scroll-view> </scroll-view>
</view> </view>
</template> </template>
<template v-if="current==1"> <template v-if="current == 1">
<view v-if="dataList.length>0" <view
style="height: calc(100vh - 50px);width: calc(100vw);overflow: hidden;padding: 25rpx;background-color: #F7F7F7;"> v-if="dataList.length > 0"
<scroll-view :scroll-y="true" :enable-back-to-top="true" :enable-flex="true" @scrolltolower="lower" style="
:style="{ height: '100%' }"> height: calc(100vh - 50px);
<view class="userList" v-for="(item,index) in dataList"> width: calc(100vw);
overflow: hidden;
padding: 25rpx;
background-color: #f7f7f7;
"
>
<scroll-view
:scroll-y="true"
:enable-back-to-top="true"
:enable-flex="true"
@scrolltolower="lower"
:style="{ height: '100%' }"
>
<view class="userList" v-for="(item, index) in dataList">
<view class="user_Top"> <view class="user_Top">
<view class="user_DisHeader" style="flex-shrink: 0;"> <view class="user_DisHeader" style="flex-shrink: 0">
<img style="width:100%;height:100%;" :src="item.Photo" alt=""> <img
style="width: 100%; height: 100%"
:src="item.Photo"
alt=""
/>
</view> </view>
<view> <view>
<view> <view>
<text class="userName">{{item.Name}}</text> <text class="userName">{{ item.NickName }}</text>
</view> </view>
<view style="margin:12rpx 0;"> <view style="margin: 12rpx 0">
<text class="user_ComBg" style="font-size:24rpx;">累计金额</text> <text class="user_ComBg" style="font-size: 24rpx"
<text class="user_Number" style="font-size:24rpx;">{{item.TotalCommission}}</text> >累计金额</text
>
<text class="user_Number" style="font-size: 24rpx"
>{{ item.TotalCommission }}</text
>
</view> </view>
<view> <view>
<text class="user_ComBg" style="font-size:24rpx;">可体现金额</text> <text class="user_ComBg" style="font-size: 24rpx"
<text class="user_Number" >可体现金额</text
style="font-size:24rpx;">{{item.CommissionWithdrawal}}</text> >
<text class="user_Number" style="font-size: 24rpx"
>{{ item.CommissionWithdrawal }}</text
>
</view> </view>
</view> </view>
</view> </view>
</view> </view>
<u-loadmore :status="status" :load-text="loadText" :font-size="24" :margin-top="20" <u-loadmore
:margin-bottom="20" bg-color="#f3f4f6" /> :status="status"
:load-text="loadText"
:font-size="24"
:margin-top="20"
:margin-bottom="20"
bg-color="#f3f4f6"
/>
</scroll-view> </scroll-view>
</view> </view>
</template> </template>
<u-action-sheet :list="listTwo" v-model="showInfoModel"></u-action-sheet> <u-action-sheet :list="listTwo" v-model="showInfoModel"></u-action-sheet>
<u-modal v-model="showRemarkBox" :show-cancel-button="true" title="修改备注" contentSlot @confirm="Save"> <u-modal
<textarea style="height: 120px;" class="inputRemark" v-model="addMsg.Remark" /> v-model="showRemarkBox"
:show-cancel-button="true"
title="修改备注"
contentSlot
@confirm="Save"
>
<textarea
style="height: 120px"
class="inputRemark"
v-model="addMsg.Remark"
/>
</u-modal> </u-modal>
<!-- 扣除积分 --> <!-- 扣除积分 -->
<u-modal v-model="showKouchu" :show-title="false" :show-cancel-button="true" contentSlot @confirm="SaveScore"> <u-modal
v-model="showKouchu"
:show-title="false"
:show-cancel-button="true"
contentSlot
@confirm="SaveScore"
>
<!-- 扣除 --> <!-- 扣除 -->
<template v-if="ScoreMsg.Type==2"> <template v-if="ScoreMsg.Type == 2">
<u-tabs :list="listThree" :is-scroll="false" :current="currentScore" @change="changeScore" <u-tabs
:active-color="mainColor" bg-color="#FFF" height="80" :show-bar="false"></u-tabs> :list="listThree"
<view style="margin-top:20rpx;"> :is-scroll="false"
<input v-if="currentScore==0" class="uni-input userManInput" v-model="ScoreMsg.Integral" :current="currentScore"
placeholder="请填写扣除积分" /> @change="changeScore"
<input v-if="currentScore==1" class="uni-input userManInput" v-model="ScoreMsg.Balance" :active-color="mainColor"
placeholder="请填写扣除金额" /> bg-color="#FFF"
<input class="uni-input userManInput" v-model="ScoreMsg.Description" placeholder="请输入备注信息" /> height="80"
:show-bar="false"
></u-tabs>
<view style="margin-top: 20rpx">
<input
v-if="currentScore == 0"
class="uni-input userManInput"
v-model="ScoreMsg.Integral"
placeholder="请填写扣除积分"
/>
<input
v-if="currentScore == 1"
class="uni-input userManInput"
v-model="ScoreMsg.Balance"
placeholder="请填写扣除金额"
/>
<input
class="uni-input userManInput"
v-model="ScoreMsg.Description"
placeholder="请输入备注信息"
/>
</view> </view>
</template> </template>
<!-- 充值 --> <!-- 充值 -->
<template v-if="ScoreMsg.Type==1"> <template v-if="ScoreMsg.Type == 1">
<u-tabs :list="listFour" :is-scroll="false" :current="currentScore" @change="changeScore" <u-tabs
:active-color="mainColor" bg-color="#FFF" height="80" :show-bar="false"></u-tabs> :list="listFour"
<view style="margin-top:20rpx;"> :is-scroll="false"
<input v-if="currentScore==0" class="uni-input userManInput" v-model="ScoreMsg.Integral" :current="currentScore"
placeholder="请填写充值积分" /> @change="changeScore"
<input v-if="currentScore==1" class="uni-input userManInput" v-model="ScoreMsg.Balance" :active-color="mainColor"
placeholder="请填写充值金额" /> bg-color="#FFF"
<input class="uni-input userManInput" v-model="ScoreMsg.Description" placeholder="请输入备注信息" /> height="80"
:show-bar="false"
></u-tabs>
<view style="margin-top: 20rpx">
<input
v-if="currentScore == 0"
class="uni-input userManInput"
v-model="ScoreMsg.Integral"
placeholder="请填写充值积分"
/>
<input
v-if="currentScore == 1"
class="uni-input userManInput"
v-model="ScoreMsg.Balance"
placeholder="请填写充值金额"
/>
<input
class="uni-input userManInput"
v-model="ScoreMsg.Description"
placeholder="请输入备注信息"
/>
</view> </view>
</template> </template>
</u-modal> </u-modal>
...@@ -134,10 +290,7 @@ ...@@ -134,10 +290,7 @@
</template> </template>
<script> <script>
export default { export default {
components: {
},
data() { data() {
return { return {
pageTitle: "用户管理", pageTitle: "用户管理",
...@@ -156,42 +309,55 @@ ...@@ -156,42 +309,55 @@
Id: "", Id: "",
Moblie: "", Moblie: "",
StartTime: "", StartTime: "",
EndTime: "" EndTime: "",
}, },
//分销商msg //分销商msg
dsMsg: { dsMsg: {
pageIndex: 1, pageIndex: 1,
pageSize: 15, pageSize: 15,
UserId: '', UserId: "",
AuditStatus: 0, AuditStatus: 0,
GradeId: -1, GradeId: -1,
Name: '', Name: "",
Source: 0, Source: 0,
NickName: '', NickName: "",
Mobile: '' Mobile: "",
}, },
list: [{ list: [
name: '全部用户' {
}, { name: "全部用户",
name: '分销商' },
}, { {
name: '核销员' name: "分销商",
}], },
listTwo: [{ // {
text: '修改备注' // name: "核销员",
}, { // },
text: '修改会员等级' ],
}], listTwo: [
listThree: [{ {
name: '扣积分' text: "修改备注",
}, { },
name: '扣金额' {
}], text: "修改会员等级",
listFour: [{ },
name: '充积分' ],
}, { listThree: [
name: '充金额' {
}], name: "扣积分",
},
{
name: "扣金额",
},
],
listFour: [
{
name: "充积分",
},
{
name: "充金额",
},
],
status: "loadmore", status: "loadmore",
loadText: { loadText: {
loadmore: "轻轻上拉,加载更多", loadmore: "轻轻上拉,加载更多",
...@@ -200,12 +366,12 @@ ...@@ -200,12 +366,12 @@
}, },
showInfoModel: false, showInfoModel: false,
addMsg: { addMsg: {
Id: '', Id: "",
SuperiorId: '', SuperiorId: "",
MemberGrade: '', MemberGrade: "",
ContactWay: '', ContactWay: "",
Remark: '', Remark: "",
AliasName: '', AliasName: "",
PostId: 0, //职位 PostId: 0, //职位
}, },
showRemarkBox: false, showRemarkBox: false,
...@@ -215,10 +381,10 @@ ...@@ -215,10 +381,10 @@
MallBaseId: 0, MallBaseId: 0,
Type: 1, Type: 1,
UserId: 0, UserId: 0,
Integral: '', Integral: "",
Image: "", Image: "",
Description: "", Description: "",
Balance: '' Balance: "",
}, },
}; };
}, },
...@@ -231,7 +397,7 @@ ...@@ -231,7 +397,7 @@
title: this.pageTitle, title: this.pageTitle,
}); });
}, },
onLoad: function(option) { onLoad: function (option) {
//this.current = option.status || -1; //this.current = option.status || -1;
this.init(); this.init();
}, },
...@@ -253,19 +419,15 @@ ...@@ -253,19 +419,15 @@
this.dataList = []; this.dataList = [];
} }
uni.showLoading({ uni.showLoading({
title: '加载中' title: "加载中",
}); });
this.requestAdmin( this.requestAdmin("/api/user/GetMemberUserPageList", this.msg, (res) => {
"/api/user/GetMemberUserPageList",
this.msg,
(res) => {
uni.hideLoading(); uni.hideLoading();
if (res.resultCode == 1) { if (res.resultCode == 1) {
this.dataList = this.dataList.concat(res.data.pageData); this.dataList = this.dataList.concat(res.data.pageData);
this.page_count = res.data.pageCount; this.page_count = res.data.pageCount;
} }
} });
);
}, },
lower(e) { lower(e) {
if (this.msg.pageIndex < this.page_count) { if (this.msg.pageIndex < this.page_count) {
...@@ -292,7 +454,7 @@ ...@@ -292,7 +454,7 @@
this.dataList = []; this.dataList = [];
} }
uni.showLoading({ uni.showLoading({
title: '加载中' title: "加载中",
}); });
this.requestAdmin( this.requestAdmin(
"/api/user/GetDistributorInfoPageList", "/api/user/GetDistributorInfoPageList",
...@@ -314,26 +476,30 @@ ...@@ -314,26 +476,30 @@
}, },
//保存修改信息 //保存修改信息
Save() { Save() {
this.requestAdmin("/api/user/SetMemberUserInfoForHT", this.addMsg, res => { this.requestAdmin(
"/api/user/SetMemberUserInfoForHT",
this.addMsg,
(res) => {
if (res.resultCode == 1) { if (res.resultCode == 1) {
this.init(1); this.init(1);
this.showRemarkBox = false; this.showRemarkBox = false;
} else { } else {
uni.showToast({ uni.showToast({
title: res.data.message title: res.data.message,
}); });
} }
}) }
);
}, },
//点击扣除按钮 //点击扣除按钮
kouchuBtn(item, type) { kouchuBtn(item, type) {
this.currentScore = 0; this.currentScore = 0;
this.ScoreMsg.Balance=''; this.ScoreMsg.Balance = "";
this.ScoreMsg.Integral=''; this.ScoreMsg.Integral = "";
this.ScoreMsg.Description=''; this.ScoreMsg.Description = "";
this.ScoreMsg.Type = type; this.ScoreMsg.Type = type;
this.ScoreMsg.UserId = item.Id; this.ScoreMsg.UserId = item.Id;
this.ScoreMsg.MallBaseId = uni.getStorageSync('mall_UserInfo').MallBaseId this.ScoreMsg.MallBaseId = uni.getStorageSync("mall_UserInfo").MallBaseId;
this.showKouchu = true; this.showKouchu = true;
}, },
//change //change
...@@ -342,51 +508,54 @@ ...@@ -342,51 +508,54 @@
}, },
//保存积分扣除充值 //保存积分扣除充值
SaveScore() { SaveScore() {
let cmd='' let cmd = "";
if (this.currentScore == 0) { if (this.currentScore == 0) {
cmd = "/api/user/SetMemberIntegralInfo"; cmd = "/api/user/SetMemberIntegralInfo";
} else { } else {
cmd = "/api/user/SetMemberBalanceInfo"; cmd = "/api/user/SetMemberBalanceInfo";
} }
this.requestAdmin(cmd,this.ScoreMsg,(res) => { this.requestAdmin(
cmd,
this.ScoreMsg,
(res) => {
if (res.resultCode === 1) { if (res.resultCode === 1) {
this.init(); this.init();
this.showKouchu = false; this.showKouchu = false;
uni.showToast({ uni.showToast({
title: '保存成功', title: "保存成功",
icon: 'none', icon: "none",
}) });
} else { } else {
uni.showToast({ uni.showToast({
title: res.data.message title: res.data.message,
}); });
} }
}, },
null null
); );
} },
} },
}; };
</script> </script>
<style> <style>
.userManage { .userManage {
width: 100%; width: 100%;
height: 100%; height: 100%;
background: #f3f4f6; background: #f3f4f6;
} }
.userManage .userList { .userManage .userList {
width: 100%; width: 100%;
background-color: #fff; background-color: #fff;
padding: 20rpx; padding: 20rpx;
margin-bottom: 25rpx; margin-bottom: 25rpx;
} }
.user_Top { .user_Top {
display: flex; display: flex;
} }
.orderList .listBox { .orderList .listBox {
background: #fff; background: #fff;
border-radius: 10px; border-radius: 10px;
display: flex; display: flex;
...@@ -395,9 +564,9 @@ ...@@ -395,9 +564,9 @@
padding: 20px; padding: 20px;
width: 100%; width: 100%;
margin-top: 30rpx; margin-top: 30rpx;
} }
.orderList .listBox .listBox_t { .orderList .listBox .listBox_t {
width: 100%; width: 100%;
display: flex; display: flex;
flex-direction: row; flex-direction: row;
...@@ -406,84 +575,84 @@ ...@@ -406,84 +575,84 @@
font-size: 28rpx; font-size: 28rpx;
margin-bottom: 20px; margin-bottom: 20px;
color: #000; color: #000;
} }
.orderList .listBox .listBox_c { .orderList .listBox .listBox_c {
width: 100%; width: 100%;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
} }
.orderList .listBox .box_bottom { .orderList .listBox .box_bottom {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
align-items: center; align-items: center;
width: 100%; width: 100%;
margin-bottom: 20px; margin-bottom: 20px;
} }
.orderList .handle { .orderList .handle {
width: 100%; width: 100%;
display: flex; display: flex;
flex-direction: row; flex-direction: row;
align-items: center; align-items: center;
justify-content: flex-end; justify-content: flex-end;
margin-top: 10rpx; margin-top: 10rpx;
} }
.orderList .handle_item { .orderList .handle_item {
padding: 0 24rpx; padding: 0 24rpx;
border: 1px solid #c8c9cc; border: 1px solid #c8c9cc;
margin-left: 20rpx; margin-left: 20rpx;
height: 50rpx; height: 50rpx;
border-radius: 25rpx; border-radius: 25rpx;
line-height: 50rpx; line-height: 50rpx;
} }
.listBox_c .goodboxmore { .listBox_c .goodboxmore {
margin-bottom: 20px; margin-bottom: 20px;
display: flex; display: flex;
width: 100%; width: 100%;
align-items: center; align-items: center;
} }
.listBox_c .goodboxmore .good-list { .listBox_c .goodboxmore .good-list {
display: flex; display: flex;
flex: 1; flex: 1;
overflow-x: auto; overflow-x: auto;
} }
.listBox_c .goodboxmore .good-list .item { .listBox_c .goodboxmore .good-list .item {
width: 70px; width: 70px;
height: 70px; height: 70px;
border-radius: 5px; border-radius: 5px;
margin-right: 10px; margin-right: 10px;
} }
.listBox_c .goodboxmore .infos { .listBox_c .goodboxmore .infos {
margin-left: 15px; margin-left: 15px;
} }
.listBox_c .goodboxmore .infos .text { .listBox_c .goodboxmore .infos .text {
text-align: center; text-align: center;
font-size: 12px; font-size: 12px;
margin-top: 5px; margin-top: 5px;
} }
.listBox_c .left { .listBox_c .left {
flex: 1; flex: 1;
color: #232323; color: #232323;
font-size: 16px; font-size: 16px;
flex: 1; flex: 1;
font-family: "oswald"; font-family: "oswald";
} }
.listBox_c .small { .listBox_c .small {
font-size: 13px; font-size: 13px;
} }
.listBox_c .topic_cont_text { .listBox_c .topic_cont_text {
font-size: 30rpx; font-size: 30rpx;
max-height: 90rpx; max-height: 90rpx;
overflow: hidden; overflow: hidden;
...@@ -497,85 +666,100 @@ ...@@ -497,85 +666,100 @@
/** 设置或检索伸缩盒对象的子元素的排列方式 **/ /** 设置或检索伸缩盒对象的子元素的排列方式 **/
-webkit-line-clamp: 2; -webkit-line-clamp: 2;
/** 显示的行数 **/ /** 显示的行数 **/
} }
.Um_Search { .Um_Search {
width: 100%; width: 100%;
padding: 30rpx 40rpx; padding: 30rpx 40rpx;
background-color: #EFEFF4; background-color: #efeff4;
} }
.userManage .u-content { .userManage .u-content {
background-color: #fff !important; background-color: #fff !important;
} }
.userName { .userName {
font-size: 30rpx; font-size: 30rpx;
color: #000; color: #000;
} }
.AliasName {
.userLevel { font-size: 20rpx;
line-height: 30rpx;
color: #999999;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.userLevel {
font-size: 26rpx; font-size: 26rpx;
color: #999999; color: #999999;
margin-left: 10rpx; margin-left: 10rpx;
} }
.user_Header { .user_Header {
width: 100rpx; width: 100rpx;
height: 100rpx; height: 100rpx;
border-radius: 10rpx; border-radius: 10rpx;
overflow: hidden; overflow: hidden;
margin-right: 20rpx; margin-right: 20rpx;
} }
.user_Header img { .user_Header img {
border-radius: 10rpx; border-radius: 10rpx;
} }
.user_ScoreBwt { .user_ScoreBwt {
display: flex; display: flex;
margin-top: 20rpx; margin-top: 20rpx;
} }
.user_ComBg { .user_ComBg {
background-color: #EFEFF4; background-color: #efeff4;
color: #999999; color: #999999;
margin-right: 20rpx; margin-right: 20rpx;
padding: 3rpx 8rpx; padding: 3rpx 8rpx;
} }
.user_Number { .user_Number {
color: #999999; color: #999999;
} }
.user_ScoreBwt>view { .user_ScoreBwt > view {
width: 50%; width: 50%;
} }
.ucustomStyle { .ucustomStyle {
margin-right: 20rpx; margin-right: 20rpx;
} }
.user_DisHeader { .user_DisHeader {
width: 130rpx; width: 130rpx;
height: 130rpx; height: 130rpx;
border-radius: 10rpx; border-radius: 10rpx;
overflow: hidden; overflow: hidden;
margin-right: 20rpx; margin-right: 20rpx;
} }
.inputRemark { .inputRemark {
border: 1px solid #d1d1d1; border: 1px solid #d1d1d1;
margin: 40rpx 0 40rpx 28rpx; margin: 40rpx 0 40rpx 28rpx;
padding:20rpx; padding: 20rpx;
width:500rpx; width: 500rpx;
} }
.userManInput { .userManInput {
height: 30px; height: 60rpx;
border: 1px solid #F2F3F6; border: 1px solid #f2f3f6;
width: 90%; width: 90%;
margin: auto; margin: auto;
margin-bottom: 20rpx; margin-bottom: 20rpx;
} background-color: #f7f7f7;
box-sizing: border-box;
font-size: 26rpx;
padding: 0 20rpx;
border-radius: 10rpx;
}
/deep/.u-model {
border-radius: 20rpx;
}
</style> </style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment