Browse Source

不知道

Hongxilin
donghaolin 7 months ago
parent
commit
00110e54b8
  1. 7
      vue/gold-system/src/views/recharge/adminRecharge.vue
  2. 7
      vue/gold-system/src/views/recharge/allRecharge.vue
  3. 26
      vue/gold-system/src/views/refund/allRefund.vue

7
vue/gold-system/src/views/recharge/adminRecharge.vue

@ -430,7 +430,12 @@ onMounted(async function () {
label="活动名称" label="活动名称"
width="150px" width="150px"
/> />
<el-table-column prop="paidGold" label="充值金额" width="120px" />
<el-table-column
prop="paidGold"
label="充值金额"
width="120px"
sortable
/>
<el-table-column prop="paidGold" label="充值金币" width="100px" /> <el-table-column prop="paidGold" label="充值金币" width="100px" />
<el-table-column prop="freeGold" label="免费金币" width="100px" /> <el-table-column prop="freeGold" label="免费金币" width="100px" />
<el-table-column <el-table-column

7
vue/gold-system/src/views/recharge/allRecharge.vue

@ -397,7 +397,12 @@ onMounted(async function () {
label="活动名称" label="活动名称"
width="150px" width="150px"
/> />
<el-table-column prop="paidGold" label="充值金额" width="120px" />
<el-table-column
prop="paidGold"
label="充值金额"
width="120px"
sortable
/>
<el-table-column <el-table-column
prop="rechargeWay" prop="rechargeWay"
label="充值方式" label="充值方式"

26
vue/gold-system/src/views/refund/allRefund.vue

@ -21,8 +21,6 @@ const getObj = ref({
const total = ref(100); const total = ref(100);
// //
const getTime = ref([]); const getTime = ref([]);
//
const activity = ref([]);
// //
const allData = ref([]); const allData = ref([]);
// //
@ -188,25 +186,6 @@ const handleClick = function (tab, event) {
adminReject(); adminReject();
} }
}; };
//
const getActivity = async function () {
try {
// POST
const result = await API.post(
"http://192.168.8.93:10010/recharge/activity/select",
{}
);
//
console.log("请求成功", result);
//
activity.value = result.data;
console.log("activity", activity.value);
} catch (error) {
console.log("请求失败", error);
//
}
};
// //
const getArea = async function () { const getArea = async function () {
try { try {
@ -231,7 +210,6 @@ const getArea = async function () {
// //
onMounted(async function () { onMounted(async function () {
await get(); await get();
getActivity();
await getArea(); await getArea();
}); });
// //
@ -326,7 +304,6 @@ const checkNumber = function () {
> >
<el-option <el-option
v-for="item in consumeType" v-for="item in consumeType"
:key="item.activityId"
:label="item.label" :label="item.label"
:value="item.value" :value="item.value"
/> />
@ -517,7 +494,8 @@ const checkNumber = function () {
</div> </div>
<!-- 分页 --> <!-- 分页 -->
<div class="pagination">
<!-- 分页 -->
<div class="pagination" style="margin-top: 20px">
<el-pagination <el-pagination
background background
:page-size="getObj.pageSize" :page-size="getObj.pageSize"

Loading…
Cancel
Save