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.
133 lines
2.4 KiB
133 lines
2.4 KiB
9 months ago
|
<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="toAddEquip"></u-icon>
|
||
|
</view>
|
||
|
</u-sticky>
|
||
|
<view class="main" v-for="(item, index) in deviceList" :key="index">
|
||
|
|
||
|
<view class="u-img">
|
||
|
<img src="../../static/sb.png"></img>
|
||
|
</view>
|
||
|
<view class="content" @click="toAdd(item)">
|
||
|
<view class="c-name">
|
||
|
<u-text :text="'设备名称:'+item.name"></u-text>
|
||
|
</view>
|
||
|
<view class="c-addtime">
|
||
|
<u-text :text="'设备编号:'+item.eno"></u-text>
|
||
|
</view>
|
||
|
<view class="c-status">
|
||
|
<u-text :text="'设备库存:'+item.stockNum"></u-text>
|
||
|
</view>
|
||
|
</view>
|
||
|
<u-icon name="arrow-right" @click="toAdd(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/equipList',{"name":this.keyword})
|
||
|
if (res.code) return
|
||
|
this.deviceList = res.data
|
||
|
},
|
||
|
|
||
|
// // 跳转详情页
|
||
|
toAdd(item) {
|
||
|
wx.navigateTo({
|
||
|
url: 'add?equip=' + JSON.stringify(item),
|
||
|
})
|
||
|
},
|
||
|
toAddEquip(){
|
||
|
wx.navigateTo({
|
||
|
url: 'add',
|
||
|
})
|
||
|
},
|
||
|
}
|
||
|
}
|
||
|
</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;
|
||
|
|
||
|
.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>
|