Files
shanghaiganxiangtuzhuangwor…/pages/watchGoods/goodsdetail/goodsdetail.vue

104 lines
2.1 KiB
Vue
Raw Normal View History

2024-04-07 19:05:18 +08:00
<template>
2024-04-25 12:48:39 +08:00
<view class="common-nav-container">
<u-list height="640px">
<u-list-item v-for="(item, index) in dataList" :key="index">
<u-cell :title="'批次号:'+item.packageCodeClient"
:label="'零件号:'+item.partnumber + '\n库位:'+item.locationCode + '\n入库时间:'+item.entryWarehouseTime + '\n备注:'+item.remark"
:value="'零件数:'+item.goodsNumAction">
</u-cell>
</u-list-item>
</u-list>
<!-- <view class="body card" v-for="(item, index) in dataList" :key="index">
2024-04-07 19:05:18 +08:00
<view class="title">{{ item.packageCodeClient }}</view>
2024-04-14 11:17:15 +08:00
<view >
<text>库位</text>
<text>{{ item.locationCode }}</text>
2024-04-07 19:05:18 +08:00
</view>
2024-04-14 11:17:15 +08:00
<view >
<text>零件号</text>
<text>{{ item.partnumber }}</text>
2024-04-07 19:05:18 +08:00
</view>
2024-04-14 11:17:15 +08:00
<view >
<text>数量</text>
2024-04-25 12:48:39 +08:00
<text>{{ item.goodsNumAction }}</text>
2024-04-07 19:05:18 +08:00
</view>
2024-04-14 11:17:15 +08:00
<view >
<text>入库时间</text>
<text>{{ item.entryWarehouseTime }}</text>
2024-04-07 19:05:18 +08:00
</view>
2024-04-14 11:17:15 +08:00
<view >
<text>备注</text>
<text>{{ item.remark }}</text>
2024-04-07 19:05:18 +08:00
</view>
2024-04-25 12:48:39 +08:00
</view> -->
2024-04-07 19:05:18 +08:00
</view>
</template>
<script>
2024-04-25 12:48:39 +08:00
import * as watchGoodsApi from '@/api/watchGoods/watchGoods.js';
export default {
onLoad: function(option) {
this.shortpatchcode = option.shortpatchcode;
},
data() {
return {
shortpatchcode: '',
dataList: []
};
},
mounted() {
this.getList();
},
methods: {
getList() {
const query = {
packageCodeClient: this.shortpatchcode
};
watchGoodsApi.GetGoodsNowProduction_detail(query).then((res) => {
if (res.code == 200) {
this.dataList = res.data;
}
});
}
2024-04-07 19:05:18 +08:00
}
2024-04-25 12:48:39 +08:00
};
2024-04-07 19:05:18 +08:00
</script>
<style scoped lang="scss">
2024-04-25 12:48:39 +08:00
.body {
background-color: white;
margin-top: 10px;
.title {
color: #2979ff;
2024-04-07 19:05:18 +08:00
2024-04-25 12:48:39 +08:00
font-size: 50rpx;
font-weight: 50;
}
2024-04-07 19:05:18 +08:00
}
2024-04-14 11:17:15 +08:00
2024-04-25 12:48:39 +08:00
.card {
background-color: #fff;
/* 白色背景 */
border-radius: 8px;
/* 圆角边框 */
padding: 12px;
/* 内边距 */
margin-bottom: 16px;
/* 底部间距 */
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
/* 阴影效果 */
}
2024-04-14 11:17:15 +08:00
2024-04-25 12:48:39 +08:00
.card text {
font-weight: bold;
/* 文本加粗 */
margin-bottom: 6px;
/* 底部间距 */
}
.card view {
color: #333;
/* 文本颜色 */
}
</style>