Sfoglia il codice sorgente

协议显示修改

lex-xin 4 anni fa
parent
commit
f56e6456b8
1 ha cambiato i file con 4 aggiunte e 1 eliminazioni
  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="协议名称">
             <template slot-scope="scope">
-              产品与服务协议{{ formatProtocol(scope.row.version) }}
+              <!-- {{ formatProtocol(scope.row.version) }} -->
+              <span v-html="`产品与服务协议${formatProtocol(scope.row.version)}`"></span>
             </template>
           </el-table-column>
           <el-table-column align="center" label="签署时间" prop="createTime">
@@ -785,6 +786,8 @@ export default {
             str = '(含系统)'
         } else if(version == 4) {
             str = '(含云教练)'
+        } else if(version == 5) {
+            str = '(含云教练<sup>+</sup>)'
         }
         return str
     },