| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338 |
- <template>
- <view class="container">
- <view class="show-item">
- <view class="show-elec-label">
- <view class="show-item-logol">
- <image class="show-item-logo-left" src="../static/images/show.png"></image>
- </view>
- <view class="show-item-label">消费走势图</view>
- </view>
- <view class="charts-box">
- <qiun-data-charts type="line" :chartData="chartData" :opts="chartOpts" :ontouch="true"
- tooltipFormat="tooltipDemo1" />
- </view>
- <view class="select-show">
- <button :class="[btn ? 'first-button-bg' : 'first-button']"
- @tap="getEnergyConsumption('month')">月</button>
- <button :class="[btn ? 'first-button' : 'first-button-bg']"
- @tap="getEnergyConsumption('year')">年</button>
- </view>
- </view>
- <view class="show-item-date">
- <view class="show-elec-label">
- <view class="show-item-logol">
- <image class="show-item-logo-left" src="../static/images/record.png"></image>
- </view>
- <view class="show-item-label show-label">缴费记录</view>
- </view>
- <view class="select-date">
- <picker mode="date" fields="month" :start="startDate" :end="endDate" @change="bindDateChange">
- <view class="uni-input">
- <text class="uni-input-label">{{date}}</text>
- <text class="iconfont icon-arrow-down"></text>
- </view>
- </picker>
- <view class="uni-list">
- <view class="item-list" v-for="(item, i) in list" :key="i">
- <view class="item-list-left">
- <text class="item-list-txt">{{item.user_name}}</text>
- <view class="info-txt">
- <view class="up-txt">
- <text class="item-list-txt">{{item.school}}</text>
- <text class="item-list-txt">{{item.room}}</text>
- </view>
- <view class="bottom-txt">
- <text class="item-list-txt">{{item.re_time}}</text>
- </view>
- </view>
- </view>
- <text class="item-list-txt show-money">{{item.account}}</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- btn: false,
- chartData: {
- categories: [],
- series: []
- },
- chartOpts: {
- color: ["#1890FF", "#91CB74", "#FAC858"],
- padding: [15, 10, 0, 15],
- legend: {},
- xAxis: {
- disableGrid: true
- },
- yAxis: {
- data: [{
- max: 0
- }]
- },
- extra: {
- line: {
- type: "curve",
- width: 2
- }
- }
- },
- date: this.$getDate({
- format: true
- }),
- startDate: this.$getDate('start_date'),
- endDate: this.$getDate('end_date'),
- all_data: '', // 所有数据
- list: [], // 消费列表
- code: '',
- ceshi: 'code',
- stu_number: '', // 学号
- roomSelect: '', // 选择的宿舍号
- changeDate: false // 是否是手动选择日期
- }
- },
- onLoad() {
- try {
- // 获取学号
- 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: '../index/index'
- })
- uni.showToast({
- icon: 'none',
- title: '学号或宿舍号为空,请授权',
- duration: 3000
- })
- return
- }
- }
- // console.log(this.stu_number);
- // console.log(this.roomSelect);
- // 缴费记录
- this.get_jiaofeijilu()
- } catch (e) {
- console.log(e);
- }
- },
- onReady() {
- // 消费走势
- this.getEnergyConsumption('month')
- },
- methods: {
- /**
- * 按月、年获取消费记录
- */
- getEnergyConsumption(dayOrMonth) {
- // 按月、年获取消费记录
- this.get_nenghaojilu(dayOrMonth)
- },
- /**
- * 获取选择日期
- */
- bindDateChange: function(e) {
- this.date = e.detail.value
- this.changeDate = true
- // 缴费记录
- this.get_jiaofeijilu()
- },
- /**
- * 获取缴费记录
- */
- async get_jiaofeijilu() {
- // console.log(this.stu_number);
- if (this.stu_number != '') {
- const res = await this.$myRequest({
- host: this.ceshi,
- url: '/HotWaters/elqueyRecordEle.action',
- method: 'POST',
- header: {
- 'content-type': 'application/x-www-form-urlencoded'
- },
- data: {
- 'stu_number': this.stu_number,
- 're_time': this.date
- }
- })
- // console.log(res);
- if (res.data.mess == '未查到记录') {
- if (this.changeDate) {
- uni.showToast({
- title: '该月无缴费记录',
- icon: 'success',
- success: (res) => {
- this.changeDate = false
- }
- });
- this.list = []
- }
- } else {
- // 充值绑定显示到界面
- for (var i = 0; i < res.data.data.length; i++) {
- this.list.push(res.data.data[i])
- }
- }
- } else {
- uni.showToast({
- title: '学号为空',
- icon: 'success'
- });
- }
- },
- /**
- * 按月、年获取消费记录
- */
- async get_nenghaojilu(dayOrMonth) {
- // console.log(this.roomSelect);
- var reg = /[\u4e00-\u9fa5]/g;
- var str = this.roomSelect;
- var dom = str.replace(reg, "");
- if (dom != '' && typeof(dom) != 'undefined') {
- let res = null;
- if (dayOrMonth == 'month') {
- this.btn = true
- res = await this.$myRequest({
- host: this.ceshi,
- // url: '/HotWaters/elqueryDayPower.action',
- url: '/HotWaters/elMonthlist.action',
- method: 'POST',
- header: {
- 'content-type': 'application/x-www-form-urlencoded'
- },
- data: {
- 'dom': dom,
- 'page': 1,
- 'rows': 12
- }
- })
- // console.log(res.data.rows);
- // console.log(res.data);
- if (res.data.rows.length == 0) {
- return
- }
- if (typeof res.data.rows === 'undefined') {
- uni.showToast({
- title: '加载数据异常',
- duration: 1500
- })
- return
- }
- let chrt_data = {
- categories: [],
- series: [],
- }
- let elc_max = -1.0
- let dt = ''
- let temp = 0
- let data = []
- for (var i = 0; i < res.data.rows.length; i++) {
- dt = res.data.rows[i].dataTime
- chrt_data.categories.push(parseInt(dt.substr(dt.indexOf('-') + 1, dt.length)) + '月')
- temp = res.data.rows[i].totalMoney
- temp = temp.toFixed(2)
- data.push(temp)
- if (parseFloat(temp) > parseFloat(elc_max)) {
- elc_max = temp
- }
- }
- let items = {
- name: '金额',
- data: data
- }
- chrt_data.series.push(items)
- let m = parseFloat(Math.abs(elc_max))
- // console.log(chrt_data);
- if (elc_max == 0.0) {
- setTimeout(() => {
- this.chartOpts.yAxis.data[0].max = parseInt(10)
- this.chartData = chrt_data;
- }, 1000);
- } else {
- setTimeout(() => {
- this.chartOpts.yAxis.data[0].max = parseInt(m + 5)
- this.chartData = chrt_data;
- }, 1000);
- }
- } else {
- this.btn = false
- let _this = this
- uni.showToast({
- mask: true,
- title: '年消费更新中…',
- success() {
- _this.btn = true
- }
- })
- return
- res = await this.$myRequest({
- host: this.ceshi,
- url: '/HotWaters/buildgetMonthBill.action',
- method: 'POST',
- header: {
- 'content-type': 'application/x-www-form-urlencoded'
- },
- data: {
- 'roomSelect': this.roomSelect
- }
- })
- // console.log(res);
- if (res.data.mess == '未查询到数据') {
- return
- }
- let chrt_data = {
- categories: [],
- series: [{
- data: [],
- }],
- }
- let elc_max = 0.0
- for (var i = 0; i < res.data.date_time.length; i++) {
- chrt_data.categories.push(res.data.date_time[i])
- chrt_data.series[0].data.push(res.data.use_elc[i])
- if (parseFloat(res.data.use_elc[i]) > parseFloat(elc_max)) {
- elc_max = res.data.use_elc[i]
- }
- }
- let m = parseFloat(Math.abs(elc_max))
- // console.log(chrt_data);
- setTimeout(() => {
- this.chartOpts.yAxis.data[0].max = parseInt(m + (m / 4.0))
- this.chartData = chrt_data;
- }, 1000);
- }
- } else {
- uni.showToast({
- title: '宿舍号为空',
- icon: 'success'
- });
- }
- }
- }
- }
- </script>
- <style>
- @import url("show.css");
- </style>
|