Browse Source

出入库记录 修改页面显示

master
邓宏 1 year ago
parent
commit
ca06ea9b12
  1. 17
      pages/stock/record.vue

17
pages/stock/record.vue

@ -118,6 +118,12 @@
color:#333;
margin-top:10rpx;
}
&>.date{
display:flex;
align-items: center;
justify-content: space-between;
color:#999;
}
}
}
}
@ -142,7 +148,11 @@
<view class="company">
<text>{{v.supplier}}</text> <text>{{v.number}}{{v.packgeUnit}}({{v.equivalentAmount}}{{v.unit}})</text>
</view>
<view class="date"> 操作日期{{v.operateTime}} </view>
<view class="date">
<span>操作人{{v.operateUser}}</span>
<span v-if="v.inOutType=='领用出库'">领用人{{v.reciveUser}}</span>
<span>日期{{v.operateTime}}</span>
</view>
</template>
<template v-else>
<view class="head">
@ -154,7 +164,10 @@
<text>{{v.number}}{{v.unit}}</text>
</view>
<view class="warehouse"> 所在仓库{{v.warehouseName}} </view>
<view class="date"> 操作日期{{v.operateTime}} </view>
<view class="date">
<span>操作人{{v.operateUser}}</span>
<span>操作日期{{v.operateTime}}</span>
</view>
</template>
</view>
<u-empty v-if="list.length<=0" text="为查询到相关信息" width="70%" icon="/static/noData.png"/>

Loading…
Cancel
Save