<!--
|
* @Author: 小明丶
|
* @Date: 2019-08-15 16:25:46
|
* @LastEditors: 小明丶
|
* @LastEditTime: 2019-08-22 15:58:16
|
* @Description: !!!
|
-->
|
<template>
|
<div class="channel-detail-box h-100-g">
|
<v-navbar title="渠道信息" fixed rightText='保存'></v-navbar>
|
<div class="cell-group">
|
<v-cell v-model="aa" label='渠道名称' icon='iconyonghu'></v-cell>
|
<v-cell label='营业执照号' icon='iconmobanguanliliebiao'></v-cell>
|
<v-cell label='身份证号' icon='iconyinhangka'></v-cell>
|
<v-cell label='所在地区' icon='icondingwei' isLink></v-cell>
|
<v-cell label='详细地址' icon='icontishi'></v-cell>
|
</div>
|
|
<div class="cell-group">
|
<v-cell label='负责人姓名'></v-cell>
|
<v-cell label='负责人手机号'></v-cell>
|
</div>
|
|
<div class="cell-group">
|
<v-cell label='产品配置' isLink></v-cell>
|
</div>
|
|
<footer class="flex-center-g footer">
|
<van-button class="btn left">冻结渠道</van-button>
|
<van-button class="btn right">商户查询</van-button>
|
</footer>
|
</div>
|
</template>
|
|
<script>
|
export default {
|
data() {
|
return {
|
aa: '阿里巴巴'
|
}
|
},
|
}
|
</script>
|
<style lang="less" scoped>
|
.channel-detail-box {
|
background-color: @c-bg-f5;
|
padding-top: 44px;
|
}
|
|
.cell-group {
|
margin: 10px 8px 0;
|
}
|
|
.footer{
|
margin-top: 60px;
|
padding-bottom: 30px;
|
.btn{
|
width: 170px;
|
height: 44px;
|
border: none;
|
font-size: @font-16;
|
&.left{
|
background-color: @c-bg-eee;
|
color: @c-text-666;
|
border-radius:22px 0px 0px 22px;
|
}
|
&.right{
|
background-color: @c-bg-default;
|
color: @c-text-fff;
|
border-radius:0px 22px 22px 0px;
|
}
|
}
|
}
|
</style>
|