| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239 |
- <template>
- <view class="page">
- <scroll-view :style="{'height':windowHeight}" scroll-y>
- <view class="service-object-wrap">
- <view class="service-object-list" >
- <view v-for="(item,index) in serviceObjectList" class="store-content" :key="index">
- <view class="store-img">
- <image :src="item.facePhotoUrl || '/static/logo.png'" mode="aspectFit" @click="magnify(item.facePhotoUrl)"></image>
- </view>
- <view class="content">
- <view class="title-price">
- <view class="title">
- <text>{{item.nickName || '未填写'}}{{ "(" + item.no + ")" }}</text>
- </view>
- <view @click="gotoUpdateServiceObject(item)" class="icon-btn">
- <image src="/static/me/u2299.png" mode="aspectFit"></image>
- </view>
- </view>
- <view class="desc">
- <view class="in-progress">
- <text>关系:{{item.blood}}</text> <text v-if="item.haveEquityCard" class="b">88卡</text>
- </view>
- <view class="completed" >
- 备注:<text>{{item.remark || '无'}}</text>
- </view>
- <view class="completed" >
- 小主卡:<text class="tab" :style="{'backgroundColor': item.minMainCardStatus ? '#85ce63':'#a6a9ad' }" >{{item.minMainCardStatus ? "已开通" : "未开通"}}</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </scroll-view>
- <view @click="gotoAddServiceObject()" class="add">
- +<text class="name">添加服务对象</text>
- </view>
- <uni-popup ref="popup">
- <view class="magnifyUrlView">
- <image :src="magnifyUrl" mode="widthFix"></image>
- </view>
- </uni-popup>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- magnifyUrl:'',
- windowHeight:'',
- reqParm: {
- auth: true
- },
- serviceObjectList: [],
- images: [],
- };
- },
- mounted() {
- },
- onLoad() {
- let sysInfo = uni.getSystemInfoSync()
- this.windowHeight =sysInfo.windowHeight -100 +'px'//除标题栏栏外的屏幕可用高度
- },
- onShow(){
- // 查询服务对象列表
- this.listServiceObject();
- },
- methods: {
- magnify(url){
- if (!url){
- return
- }
- this.magnifyUrl = url
- this.$refs.popup.open()
- },
- // 查询服务对接信息列表
- listServiceObject(){
- this.$api.listServiceObject(this.reqParm).then((res)=>{
- console.log(res)
- this.serviceObjectList = res.data.data
- this.getImgUrlByBannerOssId(this.serviceObjectList);
- })
- },
- // 获取图片
- getImgUrlByBannerOssId(items){
- for(let i = 0; i <items.length; i++) {
- if (items[i].facePhoto){
- this.$api.getImgUrlByOssId({ossId:items[i].facePhoto}).then(res=>{
- items[i].facePhotoUrl = res.data.data[0].url.replace(/^http:/, "https:")
- this.$set(this.serviceObjectList,i,items[i])
- })
- }
- }
- },
- /* 添加服务对象 */
- gotoAddServiceObject(){
- uni.navigateTo({
- url: '/myPages/serviceObjectFaceAuth/index',
- })
- },
- // 去修改服务对象
- gotoUpdateServiceObject(item){
- if(item.wardship == '1'){ // 监护人
- uni.navigateTo({
- url: '/myPages/serviceObjectAllInfo/index?data=' + JSON.stringify(item),
- })
- } else { // 不是监护人
- item.opType = '2';
- uni.navigateTo({
- url: '/myPages/serviceObjectInfo/index?data=' + JSON.stringify(item) ,
- })
- }
- },
- }
- };
- </script>
- <style lang="scss" scoped>
- .page{
- background: #f7f7f7;
- border-top: 1px solid #f7f7f7;
- }
- .magnifyUrlView{
- border-radius: 20rpx;
- overflow: hidden;
- }
- .add{
- width: 686rpx;
- margin-left: 32rpx;
- margin-top: 30px;
- text-align: center;
- color: #333333;
- line-height: 42px;
- border-radius: 6px;
- font-size: 16px;
- height: 42px;
- background: #FFE05C;
- border-radius: 27px;
- .name{
- padding-left: 6px;
- }
- }
- .service-object-wrap{
- margin-left: 12px;
- margin-right: 12px;
- .service-object-list{
- .store-content{
- padding:10px;
- margin-top: 16px;
- background: #fff;
- display: flex;
- border-radius: 6px;
- .store-img{
- image{
- width: 90px;
- height: 90px;
- border-radius: 3px;
- }
- }
- .content{
- width: 100%;
- padding-left: 8px;
- padding-top: 4px;
- .title-price{
- display: flex;
- font-size: 20px;
- .title{
- font-size: 16px;
- color: #111111;
- width: 100%;
- font-family: "黑体", sans-serif;
- line-height: 30px;
- }
- .icon-btn{
- text-align: right;
- padding-right: 12px;
- image{
- height: 60rpx;
- width: 60rpx;
- }
- }
- }
- .desc{
- line-height: 26px;
- color: #999999;
- font-size: 12px;
- white-space: nowrap; /* Prevent line breaks */
- overflow: hidden; /* Hide overflowing content */
- text-overflow: ellipsis; /* Show ellipsis (...) for overflow */
- .teacher{
- padding-left: 6px;
- }
- .completed{
- }
- }
- }
- }
- }
- }
- .in-progress{
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- }
- .b{
- font-size: 24rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- color: #9ed733;
- background: #e9f6d1;
- padding: 6rpx 16rpx;
- margin-left: 16rpx;
- border-radius: 12rpx;
- }
- .tab{
- padding:5rpx 10rpx ;
- color: white;
- border-radius:5rpx ;
- }
- </style>
|