alipay.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <template>
  2. <view class="content">
  3. <view v-for="(item,index) in banklist" :key='index' class="row b-b">
  4. <view class="left">
  5. <view class="tit">
  6. <text>
  7. {{item.bank}}
  8. </text>
  9. </view>
  10. <view class="number">
  11. <text>
  12. {{item.banknum}}
  13. </text>
  14. </view>
  15. </view>
  16. <view class="rigth">
  17. <!-- <image class="icon" src="../../static/icon/img13.png" mode=""></image> -->
  18. <uni-icons type="compose"></uni-icons>
  19. <text class="bj">编辑</text>
  20. </view>
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. export default{
  26. data(){
  27. return{
  28. banklist:[
  29. {
  30. bank:'DFSDFSD',
  31. banknum:554545
  32. }
  33. ]
  34. }
  35. },
  36. onNavigationBarButtonTap(e)
  37. {
  38. uni.navigateTo({
  39. url: '/pages/wallet/nummanage?state=0'
  40. })
  41. },
  42. methods: {
  43. }
  44. }
  45. </script>
  46. <style lang="scss">
  47. page {
  48. background: $page-color-base;
  49. padding-top: 16rpx;
  50. }
  51. .row{
  52. display: flex;
  53. justify-content: space-between;
  54. align-items: center;
  55. width:750rpx;
  56. height:119rpx;
  57. background:rgba(255,255,255,1);
  58. padding: 15rpx;
  59. border-bottom: 1rpx solid rgba(240,240,240,1);
  60. .left{
  61. flex-grow: 1;
  62. }
  63. .tit{
  64. width:130rpx;
  65. height:26rpx;
  66. font-size:28rpx;
  67. font-family:PingFangSC;
  68. font-weight:500;
  69. color:rgba(51,51,51,1);
  70. margin-bottom: 15rpx;
  71. };
  72. .number{
  73. width:211rpx;
  74. height:17rpx;
  75. font-size:22rpx;
  76. font-family:PingFang SC;
  77. font-weight:400;
  78. color:rgba(153,153,153,1);
  79. };
  80. .icon{
  81. width:40rpx;
  82. height:40rpx;
  83. background:rgba(153,161,170,0);
  84. }
  85. .bj{
  86. width:46rpx;
  87. height:23rpx;
  88. font-size:24rpx;
  89. font-family:PingFangSC;
  90. font-weight:500;
  91. color:rgba(96,105,114,1);
  92. }
  93. }
  94. </style>