|
@@ -82,7 +82,7 @@
|
|
|
<template slot-scope="scope">
|
|
|
<el-button type="text" @click.native.prevent="details(scope.row)">详情</el-button>
|
|
|
<el-button type="text" @click.native.prevent="setIntegral(scope.row)">设置积分</el-button>
|
|
|
- <el-button type="text" @click.native.prevent="makeTag(scope.row.buyerUserId)">打标签</el-button>
|
|
|
+ <el-button type="text" @click.native.prevent="makeTag(scope.row)">打标签</el-button>
|
|
|
<el-button type="text" size="small" @click.native.prevent="addBlackList(scope.row)">
|
|
|
{{ scope.row.ifBlack ? "取消黑名单" : "加入黑名单" }}
|
|
|
</el-button>
|
|
@@ -377,17 +377,19 @@ export default {
|
|
|
this.getAll(this.formParams)
|
|
|
},
|
|
|
// 打标签
|
|
|
- makeTag(buyerUserId) {
|
|
|
- this.checkList = []
|
|
|
+ makeTag(row) {
|
|
|
+ this.checkList = row.labelIds
|
|
|
this.tipsForm.labelName = ''
|
|
|
this.addFormDialog = true
|
|
|
- this.buyerUserId = buyerUserId
|
|
|
+ this.buyerUserId = row.buyerUserId
|
|
|
},
|
|
|
details(row) {
|
|
|
// this.$router.push({
|
|
|
// name: 'customerDetails',
|
|
|
// params: { buyerUserId: row.buyerUserId, orderFormid: row.orderFormid }
|
|
|
// })
|
|
|
+ this.$refs.memberDetails.checkList = row.labelIds
|
|
|
+ console.log(this.$refs.memberDetails);
|
|
|
this.$refs.memberDetails.getUser({ buyerUserId: row.buyerUserId, orderFormid: row.orderFormid })
|
|
|
},
|
|
|
// 初始化查询所有数据
|