aliyun0758874076 1 年之前
父节点
当前提交
0327017385

+ 2 - 1
src/views/member/memberList/details.vue

@@ -295,6 +295,7 @@ export default {
     // 贴标签
     addTag() {
       this.addFormDialog = true
+      // this.checkList
       this.getSelect({ labelName: this.tipsForm.labelName })
     },
     // 查询订单
@@ -346,7 +347,7 @@ export default {
     // 获取客户信息
     getInfoList(ob) {
       this.infoList.map((item) => {
-        console.log(item)
+        // console.log(item)
         item.value = ob[item.fields] || ''
         if (item.fields === 'sex') {
           item.value = item.value === '1' ? '男' : '女'

+ 6 - 4
src/views/member/memberList/index.vue

@@ -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 })
     },
     // 初始化查询所有数据

+ 1 - 1
src/views/renovation/commoditySystem/index.vue

@@ -49,7 +49,7 @@
           <el-table-column prop="productId" label="商品id" show-overflow-tooltip width="80" />
           <el-table-column label="商品主图" width="150" align="center">
             <template slot-scope="scope">
-              <img height="80" width="80" :src="scope.row.image?scope.row.image.replace('http://', 'https://'):''" alt srcset>
+              <img height="80" width="80" :src="scope.row.image.replace('http://', 'https://')" alt srcset>
             </template>
           </el-table-column>
           <el-table-column prop="productName" label="商品名称" width="180" />

+ 2 - 2
vue.config.js

@@ -41,8 +41,8 @@ module.exports = {
     // before: require('./mock/mock-server.js'),
     proxy: {
       '/api': {
-        // target: 'https://nsadminapi.tuanfengkeji.cn', // 测试
-        target: 'http://192.168.0.91:9103', // 平台端
+        target: 'https://nsadminapi.tuanfengkeji.cn', // 测试
+        // target: 'http://192.168.0.91:9103', // 平台端
         // target: 'http://192.168.0.91:9003', // 商家端
         changeOrigin: true,
         pathRewrite: {