resourDetail.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <template>
  2. <view class="content">
  3. <view class="top hflex acenter">
  4. <image src="/static/images/comment/company1.png" class="top_img"></image>
  5. <view class="top_text">{{pageData.name}}</view>
  6. </view>
  7. <view class="box">
  8. <view class="tabs hflex acenter jcenter">
  9. <view class="tabs_item" :class="tab_active == 1 ? 'tab_active' : ''" @click="changeTab(1)">规则</view>
  10. <view class="tabs_item" :class="tab_active == 2 ? 'tab_active' : ''" @click="changeTab(2)">公约</view>
  11. </view>
  12. <view class="text">
  13. <u-parse :content="content"></u-parse>
  14. </view>
  15. </view>
  16. </view>
  17. </template>
  18. <script>
  19. import $api from '@/static/js/api.js'
  20. var that = ''
  21. export default {
  22. data() {
  23. return {
  24. pageData: {
  25. name: '重庆长江轮船有限公司江湾船厂',
  26. rule: '根据《中华人民共和国价格法》、《中华人民共和国商业银行法》、《商业银行服务价格管理办法》、《国家发展改革委 中国银监会关于印发商业银行服务政府指导价政府定价目录的通知》、《中国银保监会关于规范银行服务市场调节价管理的指导意见》等规定,按照“收费项目公开、服务质价公开、效用功能公开、优惠政策公开”的“四公开”要求,现将本行各项金融服务价格标准予以公告。本公告内容包括服务提示、政府指导价政府定价项目价格标准、中国农业银行免费服务项目及中国农业银行市场调节价服务价格标准等,自2022年4月30日起执行。',
  27. convention:'根据《中华人民共和国价格法》、《中华人民共和国商业银行法》、《商业银行服务价格管理办法》、《国家发展改革委 中国银监会关于印发商业银行服务政府指导价政府定价目录的通知》、《中国银保监会关于规范银行服务市场调节价管理的指导意见》等规定,按照“收费项目公开、服务质价公开、效用功能公开、优惠政策公开”的“四公开”要求,现将本行各项金融服务价格标准予以公告。本公告内容包括服务提示、政府指导价政府定价项目价格标准、中国农业银行免费服务项目及中国农业银行市场调节价服务价格标准等,自2022年4月30日起执行。',
  28. },
  29. content: '',
  30. tab_active: 1
  31. }
  32. },
  33. onLoad() {
  34. that = this
  35. that.content = that.pageData.rule
  36. },
  37. methods: {
  38. // 切换tab
  39. changeTab(index) {
  40. that.tab_active = index
  41. if(index == 1) {
  42. that.content = that.pageData.rule
  43. } else {
  44. that.content = that.pageData.convention
  45. }
  46. }
  47. },
  48. }
  49. </script>
  50. <style lang="scss" scoped>
  51. .content {
  52. background: #F4F4F4;
  53. .top {
  54. width: 100%;
  55. height: 120rpx;
  56. background: #FFFFFF;
  57. box-sizing: border-box;
  58. padding: 36rpx 30rpx;
  59. .top_img {
  60. width: 48rpx;
  61. height: 48rpx;
  62. }
  63. .top_text {
  64. font-size: 36rpx;
  65. font-weight: 500;
  66. color: #222222;
  67. line-height: 50rpx;
  68. padding-left: 12rpx;
  69. }
  70. }
  71. .box {
  72. margin: 20rpx 0 0;
  73. width: 100%;
  74. min-height: calc(100vh - 140rpx);
  75. background: #FFFFFF;
  76. .tabs {
  77. width: 100%;
  78. padding: 24rpx 0 16rpx;
  79. border-bottom: 1rpx solid #F4F4F4;
  80. .tabs_item {
  81. width: 50%;
  82. text-align: center;
  83. font-size: 30rpx;
  84. font-weight: 400;
  85. color: #222222;
  86. line-height: 42rpx;
  87. }
  88. .tab_active {
  89. color: #506DFF;
  90. position: relative;
  91. }
  92. .tab_active::after {
  93. position: absolute;
  94. content: "";
  95. bottom: -16rpx;
  96. left: 160rpx;
  97. width: 60rpx;
  98. height: 6rpx;
  99. background: #506DFF;
  100. border-radius: 8rpx;
  101. }
  102. }
  103. .text {
  104. width: 100%;
  105. box-sizing: border-box;
  106. padding: 30rpx;
  107. }
  108. }
  109. }
  110. </style>