소스 검색

feat: 家庭成员列表新增所属渠道列

Developer 21 시간 전
부모
커밋
b3b262d5eb
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      src/views/modules/member/components/familyMember.vue

+ 3 - 0
src/views/modules/member/components/familyMember.vue

@@ -15,6 +15,9 @@
         <template slot-scope="scope">{{ genderDict[scope.row.gender] }}</template>
       </el-table-column>
       <el-table-column prop="currentSchool" label="就读学校"></el-table-column>
+      <el-table-column label="所属渠道">
+        <template slot-scope="scope">{{ scope.row.channelNames || '-' }}</template>
+      </el-table-column>
       <el-table-column prop="xxx" label="义工时长">
         <template slot-scope="scope">{{ scope.row.volunteerHours||0 }}h</template>
       </el-table-column>