123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- <template>
- <view>
- <scroll-view :scroll-y="true" class="scroll-box" @scrolltolower="scroll_lower" lower-threshold="60">
- <view v-if="data_list.length > 0" class="padding-horizontal-main padding-top-main">
- <view v-for="(item, index) in data_list" :key="index" class="padding-main border-radius-main bg-white oh spacing-mb">
- <view class="br-b-dashed oh padding-bottom-main">
- <text class="fw-b">{{item.name}}</text>
- <text class="fr cr-base">{{item.add_time_time}}</text>
- </view>
- <view class="cr-gray margin-top-lg">{{item.content}}</view>
- <view v-if="(item.reply || null) != null" class="br-t margin-top-main padding-top-main">
- <text class="bg-main cr-white padding-top-xs padding-bottom-xs padding-left padding-right round margin-right-sm">答</text>
- <text class="cr-gray">{{item.reply}}</text>
- </view>
- </view>
- </view>
- <view v-else>
- <!-- 提示信息 -->
- <component-no-data :propStatus="data_list_loding_status"></component-no-data>
- </view>
- <!-- 结尾 -->
- <component-bottom-line :propStatus="data_bottom_line_status"></component-bottom-line>
- </scroll-view>
- <!-- 新增入口 -->
- <navigator url="/pages/answer-form/answer-form" hover-class="none">
- <view class="answer-add-submit bg-main cr-white round tc">+</view>
- </navigator>
- </view>
- </template>
- <script>
- const app = getApp();
- import componentNoData from "../../components/no-data/no-data";
- import componentBottomLine from "../../components/bottom-line/bottom-line";
- export default {
- data() {
- return {
- data_list: [],
- data_total: 0,
- data_page_total: 0,
- data_page: 1,
- data_list_loding_status: 1,
- data_bottom_line_status: false
- };
- },
- components: {
- componentNoData,
- componentBottomLine
- },
- props: {},
- onLoad() {},
- onShow() {
- this.init();
-
- // 分享菜单处理
- 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) {
- // 用户未绑定用户则转到登录页面
- if (app.globalData.user_is_need_login(user)) {
- uni.redirectTo({
- url: "/pages/login/login?event_callback=init"
- });
- return false;
- } else {
- // 获取数据
- 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;
- }
- }
-
- // 加载loding
- uni.showLoading({
- title: '加载中...'
- });
- this.setData({
- data_list_loding_status: 1
- });
-
- // 获取数据
- uni.request({
- url: app.globalData.get_request_url("index", "answer"),
- method: 'POST',
- data: {
- page: this.data_page
- },
- dataType: 'json',
- success: res => {
- uni.hideLoading();
- uni.stopPullDownRefresh();
- if (res.data.code == 0) {
- if (res.data.data.data.length > 0) {
- if (this.data_page <= 1) {
- var temp_data_list = res.data.data.data;
- } else {
- var temp_data_list = this.data_list || [];
- var temp_data = res.data.data.data;
- for (var i in temp_data) {
- temp_data_list.push(temp_data[i]);
- }
- }
- this.setData({
- data_list: temp_data_list,
- data_total: res.data.data.total,
- data_page_total: res.data.data.page_total,
- data_list_loding_status: 3,
- data_page: this.data_page + 1
- });
-
- // 是否还有数据
- 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
- });
- }
- } else {
- this.setData({
- data_list_loding_status: 0
- });
- if (app.globalData.is_login_check(res.data, this, 'get_data_list')) {
- app.globalData.showToast(res.data.msg);
- }
- }
- },
- fail: () => {
- uni.hideLoading();
- uni.stopPullDownRefresh();
- this.setData({
- data_list_loding_status: 2
- });
- app.globalData.showToast('服务器请求出错');
- }
- });
- },
- // 滚动加载
- scroll_lower(e) {
- this.get_data_list();
- }
- }
- };
- </script>
- <style>
- @import './user-answer-list.css';
- </style>
|