pda-cli/src/components/card/storeGoodsBusinessStationMoveItem.vue
2025-08-15 16:25:44 +08:00

77 lines
1.4 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="myCard" @click="gotoDetailFun">
<view class="cardTopName">移仓单号{{item.BillNo}}</view>
<view class="cardRow">
<view>移仓日期</view>
<view>{{item.BillDate}}</view>
</view>
<view class="cardRow">
<view>仓库名称</view>
<view>{{item.StoreName}}</view>
</view>
<view class="cardRow">
<view>仓位名称</view>
<view>{{item.ScanStoreStationName}}</view>
</view>
<view class="cardRow">
<view> </view>
<view>{{item.OpName}} {{item.OpDate}}</view>
</view>
<view class="cardRow">
<view> </view>
<view>{{item.CommitName}} {{item.CommitDate}}</view>
</view>
<view v-if="!isDetail && !isSelect" class="lookDetail">
<text>查看详情</text>
<u-icon name="arrow-right" size="36"></u-icon>
</view>
</view>
</template>
<script>
export default {
props: {
item: {
type: Object,
default: () => {}
},
index: {
type: Number,
default: 0
},
isSelect: {
type: Boolean,
default: false
},
isDetail: {
type: Boolean,
default: false
}
},
data() {
return {
}
},
methods: {
onlaunch(e) {
console.log("---->>>" + item.OpDate);
},
gotoDetailFun: function() {
if(this.isSelect) {
return
}
uni.$bjInfo = this.item;
uni.navigateTo({
url: '/pages/saleship/detail?index=' + this.index
})
}
}
}
</script>
<style>
</style>