Your ROOT_URL in app.ini is http://git.zky.com/ but you are visiting http://61.178.84.89:8998/wangxy/hyp-front/commit/777c69e55be51f63cc0f17444629c6b639c2e0be?style=unified&whitespace=ignore-eol You should set ROOT_URL correctly, otherwise the web may not work correctly.

提交修改

dev
dsh 12 months ago
parent 02f0765c2b
commit 777c69e55b

@ -62,7 +62,8 @@
</el-table-column>
<el-table-column label="上传状态" prop="status">
<template v-slot:default="scope">
{{ scope.row.childrenList.length === 0 ? '未上传' : '已上传' }}
<el-tag v-if="scope.row.childrenList.length === 0" type="warning"></el-tag>
<el-tag v-else type="success">已上传</el-tag>
</template>
</el-table-column>
<el-table-column label="操作">

Loading…
Cancel
Save