综合查询

This commit is contained in:
zzyuan 2024-12-26 13:16:04 +08:00
parent 433f26c4d0
commit 7418f743ed
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"> <el-table-column label="在库数量" align="center" prop="storeNum" :show-overflow-tooltip="true">
<template slot-scope="scope"> <template slot-scope="scope">
<!-- manageType '编码' 使用可点击的 span --> <!-- manageType '编码' 使用可点击的 span -->
<span class="clickText" @click="openRecords(scope.row)"> <span class="clickText" v-if="scope.row.manageType=='编码'" @click="openRecords(scope.row)">
{{ scope.row.storeNum }} {{ scope.row.storeNum }}
</span> </span>
<!-- 否则直接显示数字 --> <!-- 否则直接显示数字 -->
<!-- <span v-else> <span v-else>
{{ scope.row.storeNum }} {{ scope.row.storeNum }}
</span> --> </span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="在用数量" align="center" prop="usNum" :show-overflow-tooltip="true"> <el-table-column label="在用数量" align="center" prop="usNum" :show-overflow-tooltip="true">