fix: 领用显示优化

property-only-app
wx-jincw 1 month ago
parent 82f5c0185c
commit 529a69c773

@ -150,15 +150,21 @@
<view class="row"> <view class="row">
<text class="label">领用用途</text> <text class="label">领用用途</text>
<text class="value"> <text class="value">
{{ item.purpose || '—' }} {{ item.remark || '—' }}
</text>
</view>
<!-- <view class="row">
<text class="label">领用部门</text>
<text class="value">
{{ item.ckBillCargos && item.ckBillCargos.length > 0 ? (item.ckBillCargos[0].receiveDeptName || '—') : '—' }}
</text> </text>
</view> </view>
<view class="row"> <view class="row">
<text class="label">领用人</text> <text class="label">领用人</text>
<text class="value"> <text class="value">
{{ item.applicant || '—' }} {{ item.ckBillCargos && item.ckBillCargos.length > 0 ? (item.ckBillCargos[0].receiverName || '—') : '—' }}
</text> </text>
</view> </view> -->
<view class="row" v-if="item.ckBillCargos && item.ckBillCargos.length > 0"> <view class="row" v-if="item.ckBillCargos && item.ckBillCargos.length > 0">
<text class="label">领用物资</text> <text class="label">领用物资</text>
<text class="value"> <text class="value">
@ -476,7 +482,7 @@ export default {
}, },
// //
queryList(pageNo, pageSize) { queryList(pageNo, pageSize) {
stockPageList({ page: pageNo, limit: pageSize }).then(res => { stockPageList({ page: pageNo, limit: pageSize, billType: 2 }).then(res => {
if (res.code === 200) { if (res.code === 200) {
const list = res.data.list; const list = res.data.list;
// completez-paging // completez-paging

Loading…
Cancel
Save