customerDetails.vue 10.8 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420
<template>
  <div class="custom_info_page">
    <h2>客户信息</h2>
    <div class="custom_info">
      <div class="info_item">
        <img :src="userObj.headImage" alt>
      </div>
      <div class="info_item">
        <ul>
          <li v-for="(item, index) in infoList" :key="index">
            <p>
              <span>{{ item.name }} :</span>
              <span>{{ item.value }}</span>
            </p>
          </li>
        </ul>
      </div>
    </div>
    <div class="custom_tag">
      <h2>客户标签</h2>
      <div class="Tag">
        <p v-for="(item, index) in tagList" :key="index">{{ item }}</p>
        <p @click="addTag">贴标签</p>
      </div>
    </div>
    <div class="custom_data">
      <h2>消费数据</h2>
      <div class="data_list">
        <p>
          <span>
            下 单 数:
            <font>{{ userObj.orders }}</font>
          </span>
          支付成功数:
          <font>{{ userObj.pays }}</font>
        </p>
        <p>
          <span>
            售后次数:
            <font>{{ userObj.afters }}</font>
          </span>
          售后单数:
          <font>{{ userObj.afterOrders }}</font>
        </p>
      </div>
      <div class="tab_list">
        <p
          v-for="(item, index) in tabList"
          :key="index"
          :class="[{ active: componentName === item.componentName }]"
          @click="changeTab(item)"
        >{{ item.tabName }}</p>
      </div>
    </div>
    <div v-if="componentName === 'order'">
      <el-form :inline="true" :model="userForm" class="demo-form-inline">
        <el-form-item label="订单编号">
          <el-input v-model="userForm.orderFormid" placeholder="请输入订单编号" />
        </el-form-item>
        <el-form-item>
          <el-button @click="searchOrders" type="primary" plain>查询</el-button>
        </el-form-item>
      </el-form>
      <el-table
        :data="userObj.orderList"
        border
        :header-cell-style="{ background: '#EEF3FF', color: '#333333' }"
        style="width: 100%"
      >
        <el-table-column prop="orderFormid" label="订单编号" />
        <el-table-column prop="shopName" label="店铺名称" />
        <el-table-column prop="products" label="商品数量" />
        <el-table-column prop="price" label="订单金额(元)" />
        <el-table-column label="状态">
          <template slot-scope="scope">
            <span v-if="scope.row.state === 1">待付款</span>
            <span v-if="scope.row.state === 2">待发货</span>
            <span v-if="scope.row.state === 3">待收货</span>
            <span v-if="scope.row.state === 4">已完成</span>
            <span v-if="scope.row.state === 5">已关闭</span>
          </template>
        </el-table-column>
      </el-table>
    </div>
    <div v-if="componentName === 'comment'">
      <el-table
        :data="userObj.comments"
        border
        :header-cell-style="{ background: '#EEF3FF', color: '#333333' }"
        style="width: 100%"
      >
        <el-table-column prop="shopName" label="店铺名称" />
        <el-table-column prop="productName" label="商品名称" />
      </el-table>
    </div>
    <div v-if="componentName === 'addressInfo'">
      <el-table
        :data="userObj.receives"
        border
        :header-cell-style="{ background: '#EEF3FF', color: '#333333' }"
        style="width: 100%"
      >
        <el-table-column prop="receiveName" label="姓名" />
        <el-table-column prop="receivePhone" label="电话" />
        <el-table-column prop="receiveAdress" label="地址" />
      </el-table>
      <!-- <el-pagination
        :current-page="currentPage"
        :page-sizes="[10, 20, 50, 100]"
        :page-size="10"
        layout="total, sizes, prev, pager, next, jumper"
        :total="total"
        @size-change="handleSizeChange"
        @current-change="handleCurrentChange"
      /> -->
    </div>
    <!-- *************对话框开始************* -->
    <!-- 打标签 -->
    <el-dialog
      title="选择标签"
      :visible.sync="addFormDialog"
      width="30%"
      center
      :close-on-click-modal="false"
    >
      <div>
        <!-- 表单搜索 -->
        <el-form :inline="true" :model="tipsForm" class="demo-form-inline">
          <el-form-item label="标签名称">
            <el-input v-model="tipsForm.labelName" placeholder="请输入标签名称" />
          </el-form-item>
          <el-form-item>
            <el-button @click="searchTips">查询</el-button>
          </el-form-item>
          <el-form-item>
            <el-button type="text" @click="runTips">管理标签</el-button>
          </el-form-item>
        </el-form>
        <!-- 多选 -->
        <el-checkbox-group v-model="checkList">
          <el-checkbox
            v-for="(item, index) in tipsList"
            :key="index"
            class="checkBoxStyle"
            :label="item.buyerLabelId"
          >{{ item.labelName }}</el-checkbox>
        </el-checkbox-group>
      </div>
      <span slot="footer" class="dialog-footer">
        <el-button @click="addFormDialog = false">取 消</el-button>
        <el-button type="primary" @click="saveTips">确定</el-button>
      </span>
    </el-dialog>
  </div>
</template>

<script>
import { customerMageGetById, getLabels, customerSaveUserLabel } from '@/api/customerMage'
export default {
  props: {
    ids: {
      type: Object,
      default: () => ({
        buyerUserId: null,
        orderFormid: null
      })
    },
    buyerUserId: {
      type: Number,
      default: null
    }
  },
  data () {
    return {
      infoList: [
        { name: '用户昵称', value: '', fields: 'name' },
        { name: '手 机 号', value: '', fields: 'phone' },
        { name: '性  别', value: '', fields: 'sex' },
        { name: '注册时间', value: '', fields: 'createTime' },
        { name: '生   日', value: '', fields: 'birthday' }
      ],
      tagList: [],
      tabList: [
        { tabName: 'TA的订单', componentName: 'order' },
        { tabName: 'TA的评论', componentName: 'comment' },
        { tabName: 'TA的收货地址', componentName: 'addressInfo' }
      ],
      componentName: 'order',
      customData: {},
      dialog: {},
      user: '',
      userObj: {},
      addFormDialog: false,
      tipsForm: {
        labelName: ''
      },
      userForm: {
        orderFormid: ''
      },
      checkList: [],
      tipsList: []
    }
  },
  watch: {
    ids: {
      handler (nVal, oVal) {
        console.log('watch', nVal)
        this.user = nVal
        this.getUser(this.ids)
      },
      deep: true
    },
  },
  created () {
    // this.user = this.$route.params
    // console.log(this.user)
    this.getUser(this.ids)
  },
  methods: {
    // 客户详情
    async getUser (obj) {
      const res = await customerMageGetById({
        buyerUserId: obj.buyerUserId,
        orderFormid: obj.orderFormid
      })
      this.userObj = res.data
      this.tagList = res.data.labels
      this.formateUserInfo(this.userObj)
    },
    // 获取客户信息
    formateUserInfo (ob) {
      this.infoList.map(item => {
        item.value = ob[item.fields] || ''
        if (item.fields === 'sex') {
          item.value = item.value === '1' ? '男' : '女'
        }
      })
    },
    // 贴标签
    addTag () {
      this.addFormDialog = true
      this.getSelect({ labelName: this.tipsForm.labelName })
    },
    // 查询订单
    searchOrders () {
      this.user.orderFormid = this.userForm.orderFormid
      this.getUser(this.user)
    },
    // 查询标签
    searchTips () {
      console.log(this.tipsForm)
      this.getSelect({ labelName: this.tipsForm.labelName })
    },
    // 跳转标签页面
    runTips () {
      this.$router.push({
        path: '/customer/tips'
      })
    },
    // 打标签
    async saveTips (row) {
      const res = await customerSaveUserLabel({
        buyerUserId: this.user.buyerUserId,
        buyerLabelIds: this.checkList
      })
      if (res.code === '') {
        this.$message({
          message: '成功',
          type: 'success'
        })
        this.getUser(this.user)
        this.checkList = []
        this.addFormDialog = false
      }
    },
    changeTab (item) {
      this.componentName = item.componentName
    },
    // 初始化查询所有标签
    async getSelect (name) {
      const res = await getLabels(name)
      this.tipsList = res.data
    }
  }
}
</script>

<style lang='scss' scoped>
h2 {
  font-size: 24px;
  font-weight: 500;
  position: relative;
  &::before {
    content: "";
    height: 24px;
    width: 4px;
    background-color: #3a68f2;
    position: absolute;
    left: -10px;
    top: 2px;
    display: block;
  }
}
.custom_info_page {
  margin-top: 20px;
  padding: 20px 100px;
  background-color: #fff;
  min-height: 500px;

  .custom_info {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    .info_item {
      &:nth-child(1) {
        height: 180px;
        width: 100px;
        img {
          width: 100px;
          height: 100px;
          border-radius: 50px;
          text-align: center;
          margin-top: 40px;
        }
      }
      &:nth-child(2) {
        margin-left: 100px;
        ul {
          overflow: hidden;
          list-style: none;
          li {
            float: left;
            width: 50%;
            p {
              font-size: 16px;
              color: #333;
              line-height: 40px;
              span:nth-child(2) {
                color: #666;
              }
            }
          }
        }
      }
    }
  }

  .custom_tag {
    margin-bottom: 30px;
    .Tag{
      padding-top: 20px ;
    }
    p {
      display: inline-block;
      background-color: #d8e1fc;
      font-size: 16px;
      color: #333;
      text-align: center;
      margin-right: 20px;
      border-radius: 4px;
      padding: 8px 15px;
      &:last-child {
        background-color: #fff;
        color: #3a68f2;
        &:hover {
          cursor: pointer;
        }
      }
    }
  }

  .custom_data {
    .data_list {
      padding: 20px 0 40px 0;
      p {
        font-size: 16px;
        line-height: 40px;
        font {
          color: #666;
        }
        span {
          display: inline-block;
          width: 200px;
        }
      }
    }
    .tab_list {
      overflow: hidden;
      margin-bottom: 20px;
      p {
        float: left;
        padding: 0 50px;
        font-size: 16px;
        border: 1px #e0e5eb solid;
        box-sizing: border-box;
        color: #999999;
        height: 48px;
        line-height: 48px;
        &:nth-child(-n + 2) {
          border-right: 0;
        }
        &:nth-child(1) {
          border-radius: 4px 0 0 4px;
        }
        &:nth-child(3) {
          border-radius: 0 4px 4px 0;
        }
        &:hover {
          cursor: pointer;
        }
      }
      .active {
        background-color: #3a68f2;
        color: #fff;
        border: 0;
      }
    }
  }
}
</style>