| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372 |
- <template>
- <view class="container">
- <view class="line"></view>
- <view class="same-month">
- <view class="title">
- <view class="vertical-line"></view>
- <view class="title-txt"><text class="caption">当月详情</text><text class="hah">/</text>时间更新到{{sameMonthData.dataTime}}</view>
- </view>
- <view class="content-details">
- <view class="item">
- <view class="num">{{sameMonthData.zongStart}}</view>
- <view class="description">起码(度)</view>
- </view>
- <view class="item">
- <view class="num">{{sameMonthData.zongEnd}}</view>
- <view class="description">止码(度)</view>
- </view>
- <view class="item">
- <view class="num">{{sameMonthData.zongPower}}</view>
- <view class="description">用量(度)</view>
- </view>
- <view class="item">
- <view class="num">{{sameMonthData.zongMoney}}</view>
- <view class="description">消费(元)</view>
- </view>
- </view>
- <view class="txt-color">(注:电费标准:{{moneyPer}}元/度)</view>
- </view>
- <view class="line"></view>
- <view class="same-month">
- <view class="title">
- <view class="vertical-line"></view>
- <view class="title-txt"><text class="caption">每月账单</text></view>
- </view>
- <view class="content-details">
- <uni-table :border="true" :stripe="true" emptyText="暂无更多数据">
- <!-- 表头行 -->
- <uni-tr>
- <uni-th width="66" align="center">时间</uni-th>
- <uni-th width="64" align="center">起码(度)</uni-th>
- <uni-th width="64" align="center">止码(度)</uni-th>
- <uni-th width="64" align="center">用量(度)</uni-th>
- <uni-th width="64" align="center">消费</uni-th>
- </uni-tr>
- <!-- 表格数据行 -->
- <uni-tr v-for="(item, index) in tableData" :key="index">
- <uni-td align="center">{{item.dataTime}}</uni-td>
- <uni-td align="center">{{item.zongStart}}</uni-td>
- <uni-td align="center">{{item.zongEnd}}</uni-td>
- <uni-td align="center">{{item.totalPower}}</uni-td>
- <uni-td align="center">{{item.totalMoney}}</uni-td>
- </uni-tr>
- </uni-table>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- sameMonthData: {
- dataTime: '',
- zongEnd: 0.00.toFixed(2),
- zongMoney: 0.00.toFixed(2),
- zongPower: 0.00.toFixed(2),
- zongStart: 0.00.toFixed(2)
- },
- moneyPer: 0.62.toFixed(2),
- tableData: [],
- ceshi: 'code',
- stu_number: '', // 学号
- roomSelect: '', // 选择的宿舍号
- dom: ''
- }
- },
- onLoad(options) {
- try {
- this.stu_number = uni.getStorageSync('stu_number');
- this.roomSelect = uni.getStorageSync('roomSelect');
- if (this.stu_number == '' || this.roomSelect == '' || typeof(this.stu_number) == 'undefined' || typeof(this
- .roomSelect) == 'undefined') {
- // console.log(options);
- this.stu_number = options.card_number;
- this.roomSelect = options.roomSelect;
- }
- if (this.stu_number == '' || this.roomSelect == '' || typeof(this.stu_number) == 'undefined' || typeof(this
- .roomSelect) == 'undefined') {
- // 获取学号
- this.stu_number = this.$store.state.userInfo.card_number
- this.roomSelect = this.$store.state.building.roomSelect
- if (this.stu_number == '' || this.roomSelect == '' || typeof(this.stu_number) == 'undefined' || typeof(
- this
- .roomSelect) == 'undefined') {
- const userinfo = uni.getStorageSync('userinfo_storage_key')
- if (userinfo) {
- this.stu_number = userinfo.card_number
- this.roomSelect = userinfo.campus + userinfo.dorm_number
- } else {
- uni.redirectTo({
- url: '../../pages/index/index'
- })
- uni.showToast({
- icon: 'none',
- title: '学号或宿舍号为空,请授权',
- duration: 1500
- })
- return
- }
- }
- }
- // console.log(this.stu_number);
- // console.log(this.roomSelect);
- // 判断是否选择了宿舍号
- if (this.haveSelectRoom()) {
- uni.showToast({
- title: '宿舍号为空',
- icon: 'success'
- });
- }
- } catch (e) {
- console.log(e.message);
- }
- },
- methods: {
- /**
- * 判断是否选择了宿舍号
- */
- haveSelectRoom() {
- if (this.roomSelect == '' || typeof this.roomSelect == 'undefined') {
- return true
- } else {
- // 当月详情
- try {
- this.get_sameMonthDetails()
- } catch (e) {
- uni.showToast({
- title: '当月详情'
- })
- }
- // 每月账单
- try {
- this.get_history()
- } catch (e) {
- uni.showToast({
- title: '每月账单异常'
- })
- }
- }
- },
- /**
- * 当月详情
- */
- async get_sameMonthDetails() {
- let res = await this.$myRequest({
- host: this.ceshi,
- url: '/HotWaters/elnowElc.action',
- method: 'POST',
- header: {
- 'content-type': 'application/x-www-form-urlencoded'
- },
- data: {
- 'roomSelect': this.roomSelect
- }
- })
- // console.log(res.data)
- if (res.data.mess === '返回成功') {
- if (res.data.data.length == 0) {
- return
- }
- let zongEnd = res.data.data[0].zongEnd
- let zongMoney = res.data.data[0].zongMoney
- let zongPower = res.data.data[0].zongPower
- let zongStart = res.data.data[0].zongStart
- let dataTime = res.data.data[0].dataTime
- let dt = dataTime.split('-')
- this.sameMonthData.dataTime = dt[0] + '年' + parseInt(dt[1]) + '月'
- this.sameMonthData.zongEnd = zongEnd.toFixed(2)
- this.sameMonthData.zongMoney = zongMoney.toFixed(2)
- this.sameMonthData.zongPower = zongPower.toFixed(2)
- this.sameMonthData.zongStart = zongStart.toFixed(2)
- } else {
- uni.showToast({
- title: '加载数据异常',
- duration: 1500
- })
- return
- }
- },
- /**
- * 每月账单
- */
- async get_history() {
- var reg = /[\u4e00-\u9fa5]/g;
- var str = this.roomSelect;
- this.dom = str.replace(reg, "");
- let res = await this.$myRequest({
- host: this.ceshi,
- url: '/HotWaters/elMonthlist.action',
- method: 'POST',
- header: {
- 'content-type': 'application/x-www-form-urlencoded'
- },
- data: {
- 'dom': this.dom,
- 'page': 1,
- 'rows': 12
- }
- })
- // console.log(res.data)
- if (res.data.rows.length == 0) {
- return;
- }
- if (typeof res.data.rows === 'undefined') {
- uni.showToast({
- title: '加载数据异常',
- duration: 1500
- });
- return;
- } else {
- var tableData = []
- for (let i = 0; i < res.data.rows.length; i++) {
- let dataTime = res.data.rows[i].dataTime;
- let zongStart = res.data.rows[i].zongStart;
- let zongEnd = res.data.rows[i].zongEnd;
- let totalPower = res.data.rows[i].totalPower;
- let totalMoney = res.data.rows[i].totalMoney;
- zongStart = zongStart.toFixed(2);
- zongEnd = zongEnd.toFixed(2);
- totalPower = totalPower.toFixed(2);
- totalMoney = totalMoney.toFixed(2);
- if (this.moneyPer <= 0.00) {
- if (totalPower > 0.00 && totalMoney > 0.00) {
- let moneyPer = totalMoney / totalPower;
- this.moneyPer = moneyPer.toFixed(2);
- if (this.moneyPer <= 0.00) {
- this.moneyPer = 0.61;
- }
- }
- }
- totalMoney = '¥' + totalMoney;
- tableData.push({
- dataTime,
- zongStart,
- zongEnd,
- totalPower,
- totalMoney
- });
- }
- // 过滤掉重复数据
- this.tableData = tableData.filter(function(item, index, self) {
- return index === self.findIndex(function(t) {
- return t.dataTime === item.dataTime && t.totalPower === item.totalPower && t.totalMoney === item.totalMoney;
- });
- });
- }
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .container {
- display: flex;
- flex-direction: column;
- font-size: 29upx;
- font-family: "Microsoft YaHei";
- .line {
- height: 10rpx;
- background-color: #f5f5f5;
- }
- .same-month {
- display: flex;
- flex-direction: column;
- padding: 20rpx 30rpx;
- .title {
- display: flex;
- align-items: center;
- margin-bottom: 30rpx;
- .vertical-line {
- display: inline-block;
- margin-right: 20rpx;
- width: 10rpx;
- height: 45rpx;
- background-color: #0282F8;
- }
- .title-txt {
- display: flex;
- flex-direction: row;
- align-items: flex-end;
- color: #C1C1C1;
- .caption {
- color: #2b2b2b;
- font-size: 40upx;
- }
- .hah {
- display: flex;
- margin: 0 10rpx;
- }
- }
- }
- .content-details {
- display: flex;
- justify-content: space-around;
- .item {
- display: flex;
- flex-direction: column;
- align-items: center;
- .num {
- font-size: 40upx;
- }
- .description {
- color: #9a9a9a;
- }
- }
- /deep/ .uni-table {
- .uni-table-th {
- padding: 6px 8px;
- font-size: 26upx;
- white-space: nowrap;
- text-align: center;
- background-color: #E5F2FE;
- color: #5b5b5d;
- }
- .uni-table-td {
- padding: 3px 5px;
- font-size: 26upx;
- white-space: nowrap;
- text-align: center;
- color: #000000;
- }
- }
- }
- .txt-color {
- margin: 20rpx 0;
- color: #C1C1C1;
- }
- }
- }
- </style>
|