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.
66 lines
1.3 KiB
66 lines
1.3 KiB
<template>
|
|
<view class="">
|
|
<view class="head df" v-for="(item,index) in 5" :key="index" @click="btn">
|
|
<div class="img">
|
|
<image :src="$util.img(`/upload/weapp/pageSalesman/customer/sx.png`)"></image>
|
|
</div>
|
|
<div class="list">
|
|
<div class="list-name">路易拉菲 法国 原瓶进口红酒…</div>
|
|
<div class="list-time">×4</div>
|
|
</div>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
btn() {
|
|
uni.navigateTo({
|
|
// url:this.list[this.current.URL]
|
|
url:'../Focuson_commodities/Focuson_commodities'
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.head{
|
|
margin-top: 32rpx;
|
|
.img{
|
|
width: 176rpx;
|
|
height: 176rpx;
|
|
border-radius: 8rpx;
|
|
image{
|
|
width: 176rpx;
|
|
height: 176rpx;
|
|
border-radius: 8rpx;
|
|
}
|
|
}
|
|
.list{
|
|
margin-left: 24rpx;
|
|
.list-name{
|
|
font-size: 28rpx;
|
|
font-family: PingFangSC-Regular, PingFang SC;
|
|
font-weight: 400;
|
|
color: #333333;
|
|
line-height: 40rpx;
|
|
margin-top: 20rpx;
|
|
}
|
|
.list-time{
|
|
font-size: 28rpx;
|
|
font-family: PingFangSC-Regular, PingFang SC;
|
|
font-weight: 400;
|
|
color: #585858;
|
|
line-height: 40rpx;
|
|
margin-top: 52rpx;
|
|
}
|
|
}
|
|
}
|
|
</style>
|