Merge remote-tracking branch 'origin/material-ui' into material-ui

This commit is contained in:
mashuai 2024-12-26 13:16:48 +08:00
commit b2e784cfc5
1 changed files with 3 additions and 3 deletions

View File

@ -70,13 +70,13 @@
<el-table-column label="在库数量" align="center" prop="storeNum" :show-overflow-tooltip="true">
<template slot-scope="scope">
<!-- manageType '编码' 使用可点击的 span -->
<span class="clickText" @click="openRecords(scope.row)">
<span class="clickText" v-if="scope.row.manageType=='编码'" @click="openRecords(scope.row)">
{{ scope.row.storeNum }}
</span>
<!-- 否则直接显示数字 -->
<!-- <span v-else>
<span v-else>
{{ scope.row.storeNum }}
</span> -->
</span>
</template>
</el-table-column>
<el-table-column label="在用数量" align="center" prop="usNum" :show-overflow-tooltip="true">