123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- <template>
- <div class="sld_myPoint_wrapper">
- <MemberTitle memberTitle="积分" style="padding-left: 20px"></MemberTitle>
- <div class="pointCon">
- <div class="jifen_top">
- <div class="itg">
- <span>{{ L["可用积分"] }}:</span>
- <span class="colr">{{ pointAva }}</span>
- </div>
- </div>
- <div class="content_tit">
- <ul class="tabsTitle">
- <li
- :class="{ current: indexNum == 0 }"
- id="all"
- @click="handleSwitch(0)"
- >
- {{ L["全部"] }}
- </li>
- <li
- :class="{ current: indexNum == 1 }"
- id="income"
- @click="handleSwitch(1)"
- >
- {{ L["收入"] }}
- </li>
- <li
- :class="{ current: indexNum == 2 }"
- id="expend"
- @click="handleSwitch(2)"
- >
- {{ L["支出"] }}
- </li>
- </ul>
- </div>
- <div class="point_list">
- <table class="point_table">
- <tbody>
- <tr class="voucher_tabeltitle">
- <th style="width: 30%">{{ L["日期"] }}</th>
- <th style="width: 30%">{{ L["收入/支出"] }}</th>
- <th style="width: 40%">{{ L["详细说明"] }}</th>
- </tr>
- <tr v-for="(item, index) in pointList.list" :key="index">
- <td>{{ item.createTime }}</td>
- <td>
- <span
- class="colr"
- v-if="
- item.type == 6 ||
- item.type == 7 ||
- item.type == 9 ||
- item.type == 12 ||
- item.type == 13 ||
- item.type == 14
- "
- >-{{ item.value }}</span
- >
- <span class="colr1" v-else>+{{ item.value }}</span>
- </td>
- <td>{{ item.description }}</td>
- </tr>
- </tbody>
- </table>
- <SldCommonEmpty
- v-if="!pointList.list.length"
- totalHeight="587"
- totalWidth="1003"
- tip="暂无积分记录~"
- />
- </div>
- <div class="flex_row_end_center sld_pagination">
- <el-pagination
- @current-change="handleCurrentChange"
- v-model:currentPage="pageData.page.current"
- :page-size="pageData.page.pageSize"
- layout="prev, pager, next, jumper"
- :total="pageData.page.total"
- :hide-on-single-page="true"
- >
- </el-pagination>
- </div>
- </div>
- </div>
- </template>
- <script setup>
- import { reactive, onMounted, getCurrentInstance, ref } from "vue";
- // import { lang_zn } from "@/assets/language/zh";
- import { getCurLanguage } from '@/composables/common.js';
- // const L = lang_zn;
- const L = getCurLanguage();
- definePageMeta({
- layout: "member",
- middleware: ["auth"],
- });
- const { proxy } = getCurrentInstance();
- const pointAva = ref(0);
- const pointList = reactive({ list: [] });
- const pageData = reactive({ page: {} });
- const indexNum = ref(0);
- const params = reactive({
- current: 1,
- pageSize: 20,
- type: "",
- });
- const getInitPoint = () => {
- get("v3/member/front/integralLog/getMemberIntegral").then((res) => {
- if (res.state == 200) {
- pointAva.value = res.data.memberIntegral;
- }
- });
- };
- const getPointList = () => {
- post("v3/member/front/integralLog/list", params).then((res) => {
- if (res.state == 200) {
- pointList.list = res.data.list;
- pageData.page = res.data.pagination;
- }
- });
- };
- const handleSwitch = (index) => {
- indexNum.value = index;
- params.type = index;
- params.current = 1;
- getPointList();
- };
- const handlePrevCilickChange = (e) => {
- params.current = e;
- getPointList();
- };
- const handleNextCilickChange = (e) => {
- params.current = e;
- getPointList();
- };
- const handleCurrentChange = (e) => {
- params.current = e;
- getPointList();
- };
- onMounted(() => {
- getInitPoint();
- getPointList();
- });
- </script>
- <style lang="scss">
- @import "@/assets/style/member/myPoint.scss";
- @import "@/assets/style/base.scss";
- .sld_pagination {
- margin-right: 40px;
- margin-bottom: 20px;
- }
- </style>
|