273 lines
11 KiB
Vue
273 lines
11 KiB
Vue
<template>
|
|
<view :class="theme_view">
|
|
<view v-if="data_list.length > 0" class="data-list">
|
|
<scroll-view :scroll-y="true" class="scroll-box" @scrolltolower="scroll_lower" lower-threshold="60">
|
|
<view class="padding-horizontal-main padding-top-main" :class="select_ids.length > 0 ? 'page-bottom-fixed' : ''">
|
|
<view v-for="(item, index) in data_list" :key="index" class="item padding-main border-radius-main oh bg-white spacing-mb">
|
|
<view class="base oh br-b-dashed padding-bottom-main">
|
|
<view class="dis-inline-block va-m" data-type="node":data-value="item.id" @tap="selected_event">
|
|
<iconfont
|
|
propClass="margin-right-sm pr top-xs"
|
|
:name="select_ids.indexOf(item.id) != -1 ? 'icon-zhifu-yixuan' : 'icon-zhifu-weixuan'"
|
|
size="40rpx"
|
|
:color="select_ids.indexOf(item.id) != -1 ? '#E22C08' : '#999'"
|
|
></iconfont>
|
|
</view>
|
|
<text class="va-m">{{ item.recharge_no }}</text>
|
|
<text class="fr">{{ item.pay_money }}</text>
|
|
</view>
|
|
<view :data-value="'/pages/plugins/wallet/user-recharge-detail/user-recharge-detail?id=' + item.id" @tap="url_event" class="content margin-top cp">
|
|
<component-panel-content :propData="item" :propDataField="field_list" propExcludeField="recharge_no,pay_money" :propIsTerse="true"></component-panel-content>
|
|
</view>
|
|
<view class="item-operation tr margin-top-main">
|
|
<button class="round bg-white br-grey-9 text-size-md" type="default" size="mini" hover-class="none" :data-ids="item.id" data-type="item" @tap="invoice_event">{{$t('invoice-saveinfo.invoice-saveinfo.89815t')}}</button>
|
|
</view>
|
|
</view>
|
|
<!-- 结尾 -->
|
|
<component-bottom-line :propStatus="data_bottom_line_status"></component-bottom-line>
|
|
</view>
|
|
</scroll-view>
|
|
<!-- 合并开票 -->
|
|
<view v-if="select_ids.length > 0" class="bottom-fixed" :style="bottom_fixed_style">
|
|
<view class="bottom-line-exclude">
|
|
<button class="item bg-white cr-main br-main round wh-auto" type="default" hover-class="none" data-type="all" @tap="invoice_event">{{$t('order.order.o411h6')}}</button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<block v-else>
|
|
<!-- 提示信息 -->
|
|
<component-no-data :propStatus="data_list_loding_status"></component-no-data>
|
|
</block>
|
|
|
|
<!-- 公共 -->
|
|
<component-common ref="common"></component-common>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
const app = getApp();
|
|
import componentCommon from '@/components/common/common';
|
|
import componentNoData from '@/components/no-data/no-data';
|
|
import componentBottomLine from '@/components/bottom-line/bottom-line';
|
|
import componentPanelContent from "@/components/panel-content/panel-content";
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
theme_view: app.globalData.get_theme_value_view(),
|
|
data_base: null,
|
|
field_list: [],
|
|
data_list: [],
|
|
data_total: 0,
|
|
data_page_total: 0,
|
|
data_page: 1,
|
|
data_list_loding_status: 1,
|
|
data_bottom_line_status: false,
|
|
data_is_loading: 0,
|
|
bottom_fixed_style: '',
|
|
params: null,
|
|
select_ids: [],
|
|
};
|
|
},
|
|
|
|
components: {
|
|
componentCommon,
|
|
componentNoData,
|
|
componentBottomLine,
|
|
componentPanelContent
|
|
},
|
|
|
|
onLoad(params) {
|
|
// 调用公共事件方法
|
|
app.globalData.page_event_onload_handle(params);
|
|
|
|
// 设置参数
|
|
this.setData({
|
|
params: params,
|
|
});
|
|
},
|
|
|
|
onShow() {
|
|
// 调用公共事件方法
|
|
app.globalData.page_event_onshow_handle();
|
|
|
|
// 加载数据
|
|
this.init();
|
|
|
|
// 公共onshow事件
|
|
if ((this.$refs.common || null) != null) {
|
|
this.$refs.common.on_show();
|
|
}
|
|
|
|
// 分享菜单处理
|
|
app.globalData.page_share_handle();
|
|
},
|
|
|
|
// 下拉刷新
|
|
onPullDownRefresh() {
|
|
this.setData({
|
|
data_page: 1,
|
|
});
|
|
this.get_data_list(1);
|
|
},
|
|
|
|
methods: {
|
|
init() {
|
|
var user = app.globalData.get_user_info(this, 'init');
|
|
if (user != false) {
|
|
this.get_data_list();
|
|
} else {
|
|
this.setData({
|
|
data_list_loding_status: 0,
|
|
data_bottom_line_status: false,
|
|
});
|
|
}
|
|
},
|
|
|
|
// 获取数据
|
|
get_data_list(is_mandatory) {
|
|
// 分页是否还有数据
|
|
if ((is_mandatory || 0) == 0) {
|
|
if (this.data_bottom_line_status == true) {
|
|
uni.stopPullDownRefresh();
|
|
return false;
|
|
}
|
|
}
|
|
|
|
// 是否加载中
|
|
if (this.data_is_loading == 1) {
|
|
return false;
|
|
}
|
|
this.setData({
|
|
data_is_loading: 1,
|
|
data_list_loding_status: 1,
|
|
});
|
|
|
|
// 加载loding
|
|
if(this.data_page > 1) {
|
|
uni.showLoading({
|
|
title: this.$t('common.loading_in_text'),
|
|
});
|
|
}
|
|
|
|
// 获取数据
|
|
uni.request({
|
|
url: app.globalData.get_request_url('index', 'recharge', 'invoice'),
|
|
method: 'POST',
|
|
data: {
|
|
page: this.data_page,
|
|
},
|
|
dataType: 'json',
|
|
success: (res) => {
|
|
if(this.data_page > 1) {
|
|
uni.hideLoading();
|
|
}
|
|
uni.stopPullDownRefresh();
|
|
if (res.data.code == 0) {
|
|
var data = res.data.data;
|
|
if (data.data_list.length > 0) {
|
|
if (this.data_page <= 1) {
|
|
var temp_data_list = data.data_list;
|
|
} else {
|
|
var temp_data_list = this.data_list || [];
|
|
var temp_data = data.data_list;
|
|
for (var i in temp_data) {
|
|
temp_data_list.push(temp_data[i]);
|
|
}
|
|
}
|
|
this.setData({
|
|
data_base: data.base || null,
|
|
field_list: data.field_list || [],
|
|
data_list: temp_data_list,
|
|
data_total: data.total,
|
|
data_page_total: data.page_total,
|
|
data_list_loding_status: 3,
|
|
data_page: this.data_page + 1,
|
|
data_is_loading: 0,
|
|
});
|
|
|
|
// 是否还有数据
|
|
this.setData({
|
|
data_bottom_line_status: this.data_page > 1 && this.data_page > this.data_page_total,
|
|
});
|
|
} else {
|
|
this.setData({
|
|
data_list_loding_status: 0,
|
|
data_bottom_line_status: false,
|
|
data_is_loading: 0,
|
|
});
|
|
}
|
|
} else {
|
|
this.setData({
|
|
data_list_loding_status: 0,
|
|
data_is_loading: 0,
|
|
});
|
|
if (app.globalData.is_login_check(res.data, this, 'get_data_list')) {
|
|
app.globalData.showToast(res.data.msg);
|
|
}
|
|
}
|
|
},
|
|
fail: () => {
|
|
if(this.data_page > 1) {
|
|
uni.hideLoading();
|
|
}
|
|
uni.stopPullDownRefresh();
|
|
this.setData({
|
|
data_list_loding_status: 2,
|
|
data_is_loading: 0,
|
|
});
|
|
app.globalData.showToast(this.$t('common.internet_error_tips'));
|
|
},
|
|
});
|
|
},
|
|
|
|
// 滚动加载
|
|
scroll_lower(e) {
|
|
this.get_data_list();
|
|
},
|
|
|
|
// 选择
|
|
selected_event(e) {
|
|
var value = e.currentTarget.dataset.value;
|
|
var temp_select_ids = this.select_ids;
|
|
var index = temp_select_ids.indexOf(value);
|
|
if (index == -1) {
|
|
temp_select_ids.push(value);
|
|
} else {
|
|
temp_select_ids.splice(index, 1);
|
|
}
|
|
this.setData({
|
|
select_ids: temp_select_ids,
|
|
});
|
|
},
|
|
|
|
// 合并开票
|
|
invoice_event(e) {
|
|
var type = e.currentTarget.dataset.type || 'all';
|
|
var ids = e.currentTarget.dataset.ids || null;
|
|
if (type == 'all') {
|
|
if (this.select_ids.length <= 0) {
|
|
app.globalData.showToast(this.$t('order.order.15k32o'));
|
|
return false;
|
|
} else {
|
|
ids = this.select_ids.join(',');
|
|
}
|
|
} else {
|
|
if (ids === null) {
|
|
app.globalData.showToast(this.$t('order.order.3fr155'));
|
|
return false;
|
|
}
|
|
}
|
|
app.globalData.url_open('/pages/plugins/invoice/invoice-saveinfo/invoice-saveinfo?ids=' + ids + '&type=1&is_redirect=1');
|
|
},
|
|
|
|
// url事件
|
|
url_event(e) {
|
|
app.globalData.url_event(e);
|
|
}
|
|
},
|
|
};
|
|
</script>
|
|
<style scoped>
|
|
@import './recharge.css';
|
|
</style>
|