综合查询
This commit is contained in:
parent
433f26c4d0
commit
7418f743ed
|
|
@ -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">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue