guangchao.xu | 070005a | 2020-12-07 09:56:40 +0800 | [diff] [blame] | 1 | <template> |
| 2 | <view class="getCityCard"> |
| 3 | <view class="getCityCard-list"> |
| 4 | <u-cell-group> |
guangchao.xu | 6cdd45e | 2021-04-16 17:44:30 +0800 | [diff] [blame^] | 5 | <u-cell-item title="挂失" @click="toPath('/pages/sub_mine/reportheLoss')"> |
guangchao.xu | 070005a | 2020-12-07 09:56:40 +0800 | [diff] [blame] | 6 | <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.xu | 6cdd45e | 2021-04-16 17:44:30 +0800 | [diff] [blame^] | 14 | <u-cell-item title="卡应用" @click="toPath('/pages/sub_index/cardApply')"> |
guangchao.xu | 070005a | 2020-12-07 09:56:40 +0800 | [diff] [blame] | 15 | <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> |