blob: 7430f4baec43563c7773af50f80a538f5dc1ec38 [file] [log] [blame]
guangchao.xu070005a2020-12-07 09:56:40 +08001<template>
2 <view class="getCityCard">
3 <view class="getCityCard-list">
4 <u-cell-group>
guangchao.xu6cdd45e2021-04-16 17:44:30 +08005 <u-cell-item title="挂失" @click="toPath('/pages/sub_mine/reportheLoss')">
guangchao.xu070005a2020-12-07 09:56:40 +08006 <u-icon slot="icon" size="32" name="gs" custom-prefix="custom-icon"></u-icon>
7 </u-cell-item>
8 <u-cell-item title="开卡" @click="toPath('')">
9 <u-icon slot="icon" size="32" name="file-text"></u-icon>
10 </u-cell-item>
11 <u-cell-item title="年检" @click="toPath()">
12 <u-icon slot="icon" size="32" name="jc" custom-prefix="custom-icon"></u-icon>
13 </u-cell-item>
guangchao.xu6cdd45e2021-04-16 17:44:30 +080014 <u-cell-item title="卡应用" @click="toPath('/pages/sub_index/cardApply')">
guangchao.xu070005a2020-12-07 09:56:40 +080015 <u-icon slot="icon" size="32" name="card" custom-prefix="custom-icon"></u-icon>
16 </u-cell-item>
17 </u-cell-group>
18 </view>
19 </view>
20</template>
21
22<script>
23 export default {
24 data() {
25 return {
26
27 }
28 },
29 methods: {
30
31 }
32 }
33</script>
34
35<style scoped lang="scss">
36 /deep/.u-cell_title{
37 margin-left: 30rpx;
38 }
39 .getCityCard {
40 width: 100vw;
41 // height: 100vh;
42 background-color: #F3F3F3;
43 overflow: hidden;
44 padding-bottom: 30rpx;
45 &-list {
46 margin-top: 30rpx;
47 }
48 }
49</style>