zhaoxiaoqiang
2021-08-30 151dcafcc9b5a91b544b65bd6a0e822cbd60e19b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!--
 * @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>