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.
58 lines
1.2 KiB
58 lines
1.2 KiB
<template>
|
|
<view>
|
|
<view class="height120 width94 backcorfff mart10 border-r" @click="jumpmerdetails" v-for="(item,index) in merlist">
|
|
<image class="merleft flleft mart10 margle10" src="../../../static/logo.png"></image>
|
|
<view class="merright">
|
|
<view class="merbtnrig">优选商家</view>
|
|
<view class="font16 fcor333 text2 width100 paddtop5">重庆观音桥步行街124号附3单元</view>
|
|
<view class="font14 fcor666 text1 paddtop10">进件时间: 2021-12-10-17:52:12</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
merlist:[1,2,3,4,5]
|
|
}
|
|
},
|
|
methods: {
|
|
/**
|
|
* 跳转商户详情
|
|
*/
|
|
jumpmerdetails(){
|
|
uni.navigateTo({
|
|
url:'../merchant-details/merchant-details'
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
page {
|
|
background-color: #F5F5F5;
|
|
}
|
|
|
|
.merleft {
|
|
width: 100px;
|
|
max-height: 100px;
|
|
}
|
|
|
|
.merright {
|
|
margin-left: 115px;
|
|
.merbtnrig{
|
|
height: 30px;
|
|
text-align: center;
|
|
line-height: 30px;
|
|
width: 80px;
|
|
border-radius: 0 5px 0 15px;
|
|
background: linear-gradient(to right, #ec775c, #f19b71);
|
|
color: #FFFFFF;
|
|
font-size: 14px;
|
|
float: right;
|
|
}
|
|
}
|
|
</style>
|
|
|