You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
140 lines
2.6 KiB
140 lines
2.6 KiB
<template> |
|
<!-- 设备入库列表 --> |
|
<view class="overview"> |
|
<u-sticky zIndex="3"> |
|
<view class="head"> |
|
<u-search placeholder="请输入设备名称" v-model="keyword" @search="getList" @custom="getList"></u-search> |
|
<u-icon name="plus" @click="add"></u-icon> |
|
</view> |
|
</u-sticky> |
|
<view class="main" v-for="(item, index) in deviceList" :key="index"> |
|
|
|
<view class="u-img"> |
|
<img src="../../static/rk.png"></img> |
|
</view> |
|
<view class="content" @click="toDetails(item)"> |
|
<view> |
|
<u-text :text="'设备名称:'+item.equipName"></u-text> |
|
</view> |
|
<view class='tt'> |
|
设备批次:{{item.batch}} |
|
</view> |
|
<view> |
|
<u-text :text="'入库数量:'+item.num"></u-text> |
|
</view> |
|
|
|
</view> |
|
<u-icon name="arrow-right" @click="toDetails(item)"></u-icon> |
|
</view> |
|
<u-divider text="没有更多数据了"></u-divider> |
|
</view> |
|
</template> |
|
|
|
<script> |
|
export default { |
|
data() { |
|
return { |
|
// 1.2搜索内容 |
|
keyword: '', |
|
|
|
// 3.设备列表 |
|
deviceList: [], |
|
} |
|
}, |
|
|
|
onShow: function() { |
|
this.getList() |
|
}, |
|
methods: { |
|
async getList() { |
|
const { |
|
data: res |
|
} = await this.$http('/app/inList',{"equipName":this.keyword}) |
|
if (res.code) return |
|
this.deviceList = res.data |
|
}, |
|
// // 跳转详情页 |
|
toDetails(item) { |
|
item.type = '1' |
|
wx.navigateTo({ |
|
url: 'in_details?equip=' + JSON.stringify(item), |
|
}) |
|
}, |
|
add(){ |
|
wx.navigateTo({ |
|
url: 'addIn', |
|
}) |
|
}, |
|
|
|
} |
|
} |
|
</script> |
|
|
|
<style lang="scss"> |
|
.overview { |
|
background: #f6f6f6; |
|
// padding: 2.667vw 0; |
|
.head { |
|
background: #fff; |
|
padding: 2.667vw; |
|
display: flex; |
|
justify-content: space-evenly; |
|
align-items: center; |
|
input { |
|
padding: 1vw; |
|
border-radius: 1vw; |
|
} |
|
} |
|
.submit { |
|
margin: 2.667vw 2.667vw; |
|
} |
|
// 展示信息 |
|
.main { |
|
background: #ffffff; |
|
margin: 1.667vh; |
|
display: flex; |
|
justify-content: space-around; |
|
padding: 2vh 0; |
|
.tt{ |
|
width: 200px; |
|
white-space: nowrap;/*强制在一行显示*/ |
|
text-overflow:ellipsis; |
|
overflow: hidden;/*溢出隐藏*/ |
|
color: rgb(48, 49, 51); |
|
font-size: 15px; |
|
} |
|
.u-image { |
|
float: left; |
|
} |
|
|
|
.content { |
|
flex-direction: column; |
|
align-items: flex-start; |
|
justify-content: space-around; |
|
display: flex; |
|
width: 55vw; |
|
|
|
.c-status { |
|
display: flex; |
|
} |
|
} |
|
|
|
.u-img { |
|
height: 80px; |
|
width: 80px; |
|
position: relative; |
|
|
|
img { |
|
height: 60px; |
|
width: 60px; |
|
position: absolute; |
|
top: 0; |
|
bottom: 0; |
|
left: 0; |
|
right: 0; |
|
margin: auto; |
|
} |
|
} |
|
} |
|
} |
|
</style>
|
|
|