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.
xuan-pay-cweb/pages/index/store-details/store-details.vue

113 lines
3.8 KiB

3 years ago
<template>
<view>
<view class="width100 mart10 backcorfff">
<view class="storelis">
<view class="namecont">门店名称</view>
<view class="font14 fcor333 text2 width75 fotrt">重庆中天广告</view>
</view>
<view class="storelis">
<view class="namecont">门店ID</view>
<view class="font14 fcor333 text2 width75 fotrt">98984</view>
</view>
<view class="storelis">
<view class="namecont">子商户号</view>
<view class="font14 fcor333 text2 width75 fotrt">9000934024</view>
</view>
<view class="storelis">
<view class="namecont">所在城市</view>
<view class="font14 fcor333 text2 width75 fotrt">重庆-重庆市-九龙坡区</view>
</view>
<view class="storelis">
<view class="namecont">门店地址</view>
<view class="font14 fcor333 text2 width75 fotrt">重庆中天广告客源一路3号</view>
</view>
<view class="storelis">
<view class="namecont">门店电话</view>
<view class="font14 fcor333 text2 width75 fotrt">143423424242</view>
</view>
<view class="storelis">
<view class="namecont">经营品类</view>
<view class="font14 fcor333 text2 width75 fotrt">线下零售-便利店</view>
</view>
<view class="width100 line10"></view>
<view class="storelis">
<view class="namecont">创建时间</view>
<view class="font14 fcor333 text2 width75 fotrt">2020-01-21 09-21-23</view>
</view>
<view class="storelis">
<view class="namecont">公司名称</view>
<view class="font14 fcor333 text2 width75 fotrt">重庆什么什么中天有限公司</view>
</view>
<view class="storelis">
<view class="namecont">营业执照号</view>
<view class="font14 fcor333 text2 width75 fotrt">34223424234SDFS24234</view>
</view>
<view class="storelis">
<view class="namecont">营业期限</view>
<view class="font14 fcor333 text2 width75 fotrt">长期有效</view>
</view>
<view class="width100 line10"></view>
<view class="storelis" style="border-bottom: 0px;">
<view class="namecont">门店照片</view>
</view>
<view class="width94 displ">
<image src="../../../static/img/businesslic1.png" mode="widthFix" class="width30"
@click="perImage('../../../static/img/businesslic1.png')" style="margin-left: 3%;"></image>
<image src="../../../static/img/businesslic1.png" mode="widthFix" class="width30"
@click="perImage('../../../static/img/businesslic1.png')" style="margin-left: 3%;"></image>
<image src="../../../static/img/businesslic1.png" mode="widthFix" class="width30"
@click="perImage('../../../static/img/businesslic1.png')" style="margin-left: 3%;"></image>
</view>
<view class="storelis" style="border-bottom: 0px;">
<view class="namecont">其他凭证</view>
</view>
<view class="width94 displ marb15">
<image src="../../../static/img/businesslic1.png" mode="widthFix" class="width30"
@click="perImage('../../../static/img/businesslic1.png')" style="margin-left: 3%;"></image>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
/**
* @param {Object} item 放大图片
*/
perImage(item) {
uni.previewImage({
current: 0, //预览图片的下标
urls: [item] //预览图片的地址,必须要数组形式,如果不是数组形式就转换成数组形式就可以
})
},
}
}
</script>
<style lang="scss">
page {
background-color: #f6f6f6;
}
.storelis {
width: calc(100% - 90upx);
height: 100upx;
display: flex;
align-items: center;
background-color: #FFFFFF;
border-bottom: 1px solid #f6f6f6;
padding: 8upx 45upx;
.namecont {
color: #666666;
width: 25%;
}
}
</style>