Browse Source

添加证书显示

lex-xin 5 years ago
parent
commit
2a707ea03f

File diff suppressed because it is too large
+ 0 - 0
dist/index.html


+ 1 - 1
dist/static/css/chunk-139f5a27.88f365e9.css → dist/static/css/chunk-241a78d4.a9701512.css

@@ -1 +1 @@
-.pagination-container[data-v-31cb099a]{background:#fff;padding:32px 16px;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.pagination-container.hidden[data-v-31cb099a]{display:none}.el-button--primary[data-v-25d034a0],.el-button--primary[data-v-25d034a0]:active,.el-button--primary[data-v-25d034a0]:focus,.el-button--primary[data-v-25d034a0]:hover{background:#14928a;border-color:#14928a;color:#fff}[data-v-25d034a0] .el-date-editor.el-input,[data-v-25d034a0] .el-select{width:100%!important}[data-v-25d034a0] .el-table .cell{display:-webkit-box;overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:3;-webkit-box-orient:vertical}
+.pagination-container[data-v-31cb099a]{background:#fff;padding:32px 16px;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.pagination-container.hidden[data-v-31cb099a]{display:none}.el-button--primary[data-v-7a16fdac],.el-button--primary[data-v-7a16fdac]:active,.el-button--primary[data-v-7a16fdac]:focus,.el-button--primary[data-v-7a16fdac]:hover{background:#14928a;border-color:#14928a;color:#fff}[data-v-7a16fdac] .el-date-editor.el-input,[data-v-7a16fdac] .el-select{width:100%!important}[data-v-7a16fdac] .el-table .cell{display:-webkit-box;overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:3;-webkit-box-orient:vertical}

File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.1fd028d0.js


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/chunk-139f5a27.9626a218.js


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/chunk-241a78d4.86b30bf7.js


+ 13 - 0
src/views/levelManager/levelManager.vue

@@ -58,6 +58,19 @@
                         {{ scope.row.status == 2 ? '缴费' : '报名' }}
                     </template>
                 </el-table-column>
+                <el-table-column align="center" label="证书">
+                    <template slot-scope="scope">
+                        <div v-if="scope.row.theoryCert">
+                            <el-image
+                                fit="cover"
+                                style="width: 100px; height: 100px"
+                                :src="scope.row.theoryCert"
+                                :preview-src-list="[scope.row.theoryCert]">
+                            </el-image>
+                        </div>
+                        <div v-else>--</div>
+                    </template>
+                </el-table-column>
                 <el-table-column align="center" prop="createTime" label="报名时间"></el-table-column>
                 <el-table-column align="center" prop="memo" label="备注"></el-table-column>
                 <!-- <el-table-column align="center" label="操作">

Some files were not shown because too many files changed in this diff