123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <template>
- <view class="content">
- <view class="top hflex acenter">
- <image src="/static/images/comment/company1.png" class="top_img"></image>
- <view class="top_text">{{pageData.name}}</view>
- </view>
- <view class="box">
- <view class="tabs hflex acenter jcenter">
- <view class="tabs_item" :class="tab_active == 1 ? 'tab_active' : ''" @click="changeTab(1)">规则</view>
- <view class="tabs_item" :class="tab_active == 2 ? 'tab_active' : ''" @click="changeTab(2)">公约</view>
- </view>
- <view class="text">
- <u-parse :content="content"></u-parse>
- </view>
- </view>
- </view>
- </template>
- <script>
- import $api from '@/static/js/api.js'
- var that = ''
- export default {
- data() {
- return {
- pageData: {
- name: '重庆长江轮船有限公司江湾船厂',
- rule: '根据《中华人民共和国价格法》、《中华人民共和国商业银行法》、《商业银行服务价格管理办法》、《国家发展改革委 中国银监会关于印发商业银行服务政府指导价政府定价目录的通知》、《中国银保监会关于规范银行服务市场调节价管理的指导意见》等规定,按照“收费项目公开、服务质价公开、效用功能公开、优惠政策公开”的“四公开”要求,现将本行各项金融服务价格标准予以公告。本公告内容包括服务提示、政府指导价政府定价项目价格标准、中国农业银行免费服务项目及中国农业银行市场调节价服务价格标准等,自2022年4月30日起执行。',
- convention:'根据《中华人民共和国价格法》、《中华人民共和国商业银行法》、《商业银行服务价格管理办法》、《国家发展改革委 中国银监会关于印发商业银行服务政府指导价政府定价目录的通知》、《中国银保监会关于规范银行服务市场调节价管理的指导意见》等规定,按照“收费项目公开、服务质价公开、效用功能公开、优惠政策公开”的“四公开”要求,现将本行各项金融服务价格标准予以公告。本公告内容包括服务提示、政府指导价政府定价项目价格标准、中国农业银行免费服务项目及中国农业银行市场调节价服务价格标准等,自2022年4月30日起执行。',
- },
- content: '',
- tab_active: 1
- }
- },
- onLoad() {
- that = this
- that.content = that.pageData.rule
- },
- methods: {
- // 切换tab
- changeTab(index) {
- that.tab_active = index
- if(index == 1) {
- that.content = that.pageData.rule
- } else {
- that.content = that.pageData.convention
- }
- }
- },
- }
- </script>
- <style lang="scss" scoped>
- .content {
- background: #F4F4F4;
- .top {
- width: 100%;
- height: 120rpx;
- background: #FFFFFF;
- box-sizing: border-box;
- padding: 36rpx 30rpx;
- .top_img {
- width: 48rpx;
- height: 48rpx;
- }
- .top_text {
- font-size: 36rpx;
- font-weight: 500;
- color: #222222;
- line-height: 50rpx;
- padding-left: 12rpx;
- }
- }
- .box {
- margin: 20rpx 0 0;
- width: 100%;
- min-height: calc(100vh - 140rpx);
- background: #FFFFFF;
- .tabs {
- width: 100%;
- padding: 24rpx 0 16rpx;
- border-bottom: 1rpx solid #F4F4F4;
- .tabs_item {
- width: 50%;
- text-align: center;
- font-size: 30rpx;
- font-weight: 400;
- color: #222222;
- line-height: 42rpx;
- }
- .tab_active {
- color: #506DFF;
- position: relative;
- }
- .tab_active::after {
- position: absolute;
- content: "";
- bottom: -16rpx;
- left: 160rpx;
- width: 60rpx;
- height: 6rpx;
- background: #506DFF;
- border-radius: 8rpx;
- }
- }
- .text {
- width: 100%;
- box-sizing: border-box;
- padding: 30rpx;
- }
- }
- }
- </style>
|