修改图标

This commit is contained in:
limengnan 2026-03-12 18:17:40 +08:00
parent 4de48dc5b9
commit 15d442d9ec
4 changed files with 3 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 579 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 647 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 665 B

View File

@ -430,12 +430,14 @@ function confirmsClick(){
<img src="@/assets/table/view.png" alt="" title="查看详情"
@click="viewClick(scope.row)" style="cursor: pointer; ">
<img src="@/assets/table/annotation.png" alt="" title="发布模型" v-if="scope.row.status == 'Success'"
<img src="@/assets/table/release.png" alt="" title="发布模型" v-if="scope.row.status == 'Success'"
@click="releaseClick(scope.row)" style="cursor: pointer; ">
<img v-else src="@/assets/table/release_disabled.png" alt="" title="发布模型">
<img v-if="scope.row.status == 'Success' ||scope.row.status == 'Failed' " src="@/assets/table/del.png" alt="" title="删除"
@click="delAloneClick(scope.row)" style="cursor: pointer; ">
<img v-else src="@/assets/table/del_disabled.png" alt="" title="删除">
</span>
</template>
</el-table-column>