wansfa 2 years ago
parent
commit
48e65a758c
2 changed files with 1 additions and 2 deletions
  1. 0 1
      src/views/crm/components/customerDetails.vue
  2. 1 1
      src/views/crm/customer/my.vue

+ 0 - 1
src/views/crm/components/customerDetails.vue

@@ -371,7 +371,6 @@
             getDetails(customerId) {
                 var data={customerId:customerId}
                 this.customerId=customerId;
-               
                 var that=this;
                 this.exts=[];
                 listCustomerExt(data).then(response => {

+ 1 - 1
src/views/crm/customer/my.vue

@@ -176,7 +176,7 @@
       </el-table-column>
       <el-table-column  label="跟进阶段"  width="200" align="center" prop="visitStatus">
         <template slot-scope="scope">
-            <el-tag prop="visitStatus" v-for="(item, index) in statusOptions"    v-if="scope.row.status==item.dictValue">{{item.dictLabel}}</el-tag><br/>
+            <el-tag prop="visitStatus" v-for="(item, index) in statusOptions"    v-if="scope.row.visitStatus==item.dictValue">{{item.dictLabel}}</el-tag><br/>
             <el-button  v-hasPermi="['crm:customer:addVisitStatus']"  type="text" size="mini" @click="handleVisitStatus(scope.row)">修改</el-button>
           </template>
       </el-table-column>