123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214 |
- <template>
- <view>
- <u-navbar title="计费规则" title-color="#101010" ></u-navbar>
- <view class="background">
- <!-- 单位 -->
- <view class="unit">
- <view class="title">
- 所属收款单位
- </view>
- <view class="value">
- 湖北荆鹏集团有限公司
- </view>
- </view>
- </view>
- <!-- 规则 -->
- <view class="rules">
- <view class="tabs">
- <u-tabs font-size="24" :gutter="30" :item-width="100" :list="list" :is-scroll="false" :current="current" @change="change"></u-tabs>
- </view>
- <view class="content">
- <view class="rule1">
- <view class="title">
- 用电分类
- </view>
- <view class="value">
- 年用电2160度以内
- </view>
- <view class="value">
- 年用电2161至4800度
- </view>
- <view class="value">
- 年用电4800度以上
- </view>
- </view>
- <view class="rule2">
- <view class="title">
- 电压等级
- </view>
- <view class="value">
- 不满1千伏
- </view>
- <view class="value">
- 不满1千伏
- </view>
- <view class="value">
- 不满1千伏
- </view>
- </view>
- <view class="rule3">
- <view class="title">
- 电度电价
- </view>
- <view class="value">
- 0.5580元/度
- </view>
- <view class="value">
- 0.6080元/度
- </view>
- <view class="value">
- 0.8580元/度
- </view>
- </view>
- </view>
- <!-- 备注 -->
- <view class="remark">
- <view class="title">
- 备注说明:
- </view>
- <view class="value">
- <view class="item">
- 1.居民生活用电价格含农网还贷资金2分钱、大中型水库移民后期扶持几斤0.62分钱、可再生能源店家附加0.1分钱,共2.72分钱。
- </view>
-
- <view class="item">
- 2.抗灾救灾用电价格含按表列分类电价降低2分钱执行。
- 店加一句湖北省发展和改革委员委颁布的《湖北省发改委关于湖北电网2020-2022年输配电价和销售电价有关事项的通知》(鄂发改价管[2020]439号)标准执行。
- </view>
- </view>
- </view>
- </view>
-
-
- </view>
- </template>
- <script>
- import * as API from '@/apis/pagejs/hall/deduction.js'
-
- export default {
- data() {
- return {
- formData:{
- pageIndex:1,
- pageSize:9999,
- },
- list: [{
- name: '电费'
- }, {
- name: '水费'
- }, {
- name: '租金',
-
- }, {
- name: '保洁费',
-
- }, {
- name: '物业服务费',
-
- }],
- current: 0,
- queryList:[],
- }
- },
- onReady() {
- this.contractList();
- },
- methods: {
- contractList(){
-
- API.contractList(this.formData).then((response) => {
- uni.hideLoading();
- this.queryList=response.data.data;
- }).catch(error => {
- uni.hideLoading();
-
- })
- },
- change(index) {
- this.current = index;
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .background{
- background-color: rgba(61,134,255,1);
- position: relative;
- height: 160rpx;
- .unit{
- background-color: #fff;
- position: absolute;
- top: 24rpx;
- left: 32rpx;
- right: 32rpx;
- border-radius: 8px;
- padding: 32rpx;
- .title{
- color: rgba(153,153,153,1);
- }
- .value{
- color: rgba(51,51,51,1);
- font-size: 40rpx;
- margin-top: 16rpx;
- }
- }
- }
- // 规则
- .rules{
- margin: 68rpx 32rpx 40rpx;
- background-color: #fff;
- padding-bottom: 24rpx;
- border-radius: 8px;
- /deep/.u-tabs{
- border-radius: 8px;
-
- }
- .content{
- padding:24rpx;
- display: flex;
- .rule1{
- width: 298rpx;
- .title{
- line-height: 96rpx;
- color: rgba(51,51,51,1);
- font-size: 32rpx;
- }
- .value{
- color: rgba(51,51,51,1);
- line-height: 96rpx;
- }
- }
- .rule2,.rule3{
- width: 160rpx;
- .title{
- color: rgba(119,119,119,1);
- font-size: 32rpx;
- line-height: 96rpx;
- }
- .value{
- color: rgba(119,119,119,1);
- line-height: 96rpx;
- }
- }
-
- }
- // 备注
- .remark{
- padding: 40rpx 32rpx;
- margin: 0 24rpx;
- border-radius: 8px;
- background-color: rgba(242,244,246,1);
- color: rgba(16,16,16,1);
- font-size: 24rpx;
- line-height: 34rpx;
- .value{
- margin-top: 16rpx;
- }
- .item{
- margin-bottom: 8rpx;
- }
- }
- }
- </style>
|