소스 검색

协议显示修改

lex-xin 4 년 전
부모
커밋
f56e6456b8
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. 4 1
      src/views/studentManager/studentList.vue

+ 4 - 1
src/views/studentManager/studentList.vue

@@ -638,7 +638,8 @@
         >
         >
           <el-table-column align="center" prop="studentId" label="协议名称">
           <el-table-column align="center" prop="studentId" label="协议名称">
             <template slot-scope="scope">
             <template slot-scope="scope">
-              产品与服务协议{{ formatProtocol(scope.row.version) }}
+              <!-- {{ formatProtocol(scope.row.version) }} -->
+              <span v-html="`产品与服务协议${formatProtocol(scope.row.version)}`"></span>
             </template>
             </template>
           </el-table-column>
           </el-table-column>
           <el-table-column align="center" label="签署时间" prop="createTime">
           <el-table-column align="center" label="签署时间" prop="createTime">
@@ -785,6 +786,8 @@ export default {
             str = '(含系统)'
             str = '(含系统)'
         } else if(version == 4) {
         } else if(version == 4) {
             str = '(含云教练)'
             str = '(含云教练)'
+        } else if(version == 5) {
+            str = '(含云教练<sup>+</sup>)'
         }
         }
         return str
         return str
     },
     },