Compare commits

...

10 Commits

Author SHA1 Message Date
faiz 68b687a455 增加多个信息列,查询 2025-01-03 14:54:21 +08:00
faiz 02acceb3bc 年货礼包 2024-12-30 15:32:13 +08:00
faiz 47fdf715f3 优惠活动,ID号 2024-12-25 14:03:15 +08:00
faiz d14e2c9eab 铸源星,优惠券,能量 2024-12-24 17:39:10 +08:00
faiz aff27335bf 提现记录方式更改,铸源星记录订单号增加 2024-12-20 14:01:45 +08:00
faiz 8a868b0272 银行卡记录导出,铸源星查询 2024-12-20 11:48:34 +08:00
faiz 0bcc07119e 更换下载方式 2024-12-20 10:12:47 +08:00
faiz a75b47c218 更换下载方式 2024-12-20 09:09:42 +08:00
faiz 3f94799b5f 退款订单异步导出 2024-12-19 09:24:27 +08:00
faiz efc090f4c8 同步导出,异步导出兼容 2024-12-17 18:09:45 +08:00
21 changed files with 4832 additions and 202 deletions
.env.development
src
api
components/referrerList
filters
router/modules
views
accounts/extract
marketing
energy
integral/log
order
product/productExamine
promoter
bankCard
bonusLog
system/exportFile
user/list

View File

@ -5,7 +5,7 @@ ENV = 'development'
# base api
# www.shop.xyz
# VUE_APP_BASE_API = 'http://zkx.tropjoin.com'
VUE_APP_BASE_API = 'http://testg.tropjoin.com'
VUE_APP_BASE_API = 'http://test.tropjoin.com'
# VUE_APP_BASE_API = 'https://api.tropjoin.com'
# socket 连接地址

View File

@ -415,6 +415,12 @@ export function brokerageLogExport(data) {
export function bonusExport(data) {
return request.get(`user/brokerage/bonus/excel`, data)
}
/**
* @description 提现记录 -- 导出
*/
export function backListExport(data) {
return request.get(`user/extract/export/back_list`, data)
}
/**
* @description 签到配置 -- 列表
*/

View File

@ -8,6 +8,15 @@
<el-form-item label="手机号:">
<el-input v-model="tableFrom.phone" @keyup.enter.native="getList(1)" placeholder="请输入用户名称" clearable class="selWidth" />
</el-form-item>
<el-form-item label="ID号">
<el-input v-model="tableFrom.number" @keyup.enter.native="getList(1)" placeholder="请输入ID号" clearable class="selWidth" />
</el-form-item>
<el-form-item label="身份证:">
<el-input v-model="tableFrom.card_id" @keyup.enter.native="getList(1)" placeholder="请输入身份证" clearable class="selWidth" />
</el-form-item>
<el-form-item label="真实姓名:">
<el-input v-model="tableFrom.real_name" @keyup.enter.native="getList(1)" placeholder="请输入真实姓名" clearable class="selWidth" />
</el-form-item>
<el-form-item>
<el-button type="primary" size="small" @click="getList(1)">查询</el-button>
</el-form-item>
@ -26,6 +35,9 @@
</template>
</el-table-column>
<el-table-column prop="uid" label="ID" min-width="50" />
<el-table-column prop="number" label="ID号" min-width="50" />
<el-table-column prop="card_id" label="身份证号" min-width="50" />
<el-table-column prop="real_name" label="真实姓名" min-width="50" />
<el-table-column label="昵称" min-width="90">
<template slot-scope="{row}">
<div class="acea-row">

View File

@ -104,7 +104,8 @@ export function extractTypeFilter(status) {
0: '银行卡',
1: '微信',
2: '支付宝',
3: '微信零钱'
3: '微信零钱',
5: '铸源星'
}
return statusMap[status]
}

View File

@ -199,6 +199,36 @@ const marketingRouter =
}
]
},
{
path: 'energy',
name: 'energy',
meta: {
title: '能量管理',
noCache: true
},
redirect: 'noRedirect',
component: () => import('@/views/marketing/energy/index'),
children: [
{
path: 'energyConfig',
name: 'energyConfig',
meta: {
title: '能量配置',
noCache: true
},
component: () => import('@/views/marketing/energy/energyConfig/index')
},
{
path: 'list',
name: 'energyList',
meta: {
title: '能量列表',
noCache: true
},
component: () => import('@/views/marketing/energy/energyGoods/index.vue')
}
]
},
{
path: 'allDiscount',
name: 'allDiscount',

View File

@ -30,13 +30,12 @@
class="selWidth"
@change="getList(1)"
>
<el-option
<el-option
v-for="(item, key) in status_name"
:label="item"
:value="key"
/>
</el-select>
</el-select>
</el-form-item>
<el-form-item label="方式:" prop="extract_type">
<el-select
@ -47,11 +46,12 @@
class="selWidth"
@change="getList(1)"
>
<el-option label="全部" value="" />
<!-- <el-option label="全部" value="" /> -->
<el-option label="银行卡" value="0" />
<el-option label="支付宝" value="2" />
<el-option label="铸源星" value="5" />
<!-- <el-option label="支付宝" value="2" />
<el-option label="微信" value="1" />
<el-option label="微信零钱" value="3" />
<el-option label="微信零钱" value="3" /> -->
</el-select>
</el-form-item>
<el-form-item label="关键字:" prop="keyword">
@ -137,9 +137,7 @@
</el-table-column>
<el-table-column label="审核状态" min-width="90">
<template slot-scope="scope">
<span class="spBlock">{{
status_name[scope.row.status]
}}</span>
<span class="spBlock">{{ status_name[scope.row.status] }}</span>
<!-- <template v-if="scope.row.status === 0">
<el-button type="danger" icon="el-icon-close" size="mini" @click="onExamine(scope.row.extract_id)">未通过</el-button>
<el-button type="primary" icon="el-icon-check" size="mini" @click="ok(scope.row.extract_id)">通过</el-button>
@ -148,9 +146,7 @@
</el-table-column>
<el-table-column label="失败原因" min-width="120">
<template slot-scope="scope">
<span class="spBlock">{{
scope.row.error_msg
}}</span>
<span class="spBlock">{{ scope.row.error_msg }}</span>
</template>
</el-table-column>
<el-table-column label="拒绝原因" min-width="120">

View File

@ -0,0 +1,201 @@
<template>
<div class="divBox">
<div class="selCard">
<el-form size="small" label-width="85px" :inline="true">
<el-form-item label="是否显示:">
<el-select
v-model="tableFrom.status"
placeholder="请选择"
class="selWidth"
clearable
@change="getList"
>
<el-option label="显示" :value="1" />
<el-option label="不显示" :value="0" />
</el-select>
</el-form-item>
</el-form>
</div>
<el-card class="mt14">
<div class="mb14">
<el-button size="small" type="primary" @click="addSpike">添加配置</el-button>
</div>
<el-table
v-loading="listLoading"
:data="tableData.data"
size="small"
highlight-current-row
>
<el-table-column prop="seckill_time_id" label="编号" min-width="100" />
<el-table-column prop="title" label="名称" min-width="120" />
<el-table-column label="开始时间(整数小时)" min-width="120">
<template slot-scope="scope">
<span>{{ scope.row.start_time }} :00</span>
</template>
</el-table-column>
<el-table-column label="结束时间(整点)" min-width="120">
<template slot-scope="scope">
<span>{{ scope.row.end_time }} :00</span>
</template>
</el-table-column>
<el-table-column label="图片" min-width="100">
<template slot-scope="scope">
<div class="demo-image__preview">
<el-image
style="width: 36px; height: 36px"
:src="scope.row.pic"
:preview-src-list="[scope.row.pic]"
/>
</div>
</template>
</el-table-column>
<el-table-column label="是否可用" min-width="120">
<template slot-scope="scope">
<el-switch
v-model="scope.row.status"
:active-value="1"
:inactive-value="0"
active-text="启用"
inactive-text="禁用"
@click.native="onchangeIsShow(scope.row)"
/>
</template>
</el-table-column>
<el-table-column label="操作" min-width="90" fixed="right">
<template slot-scope="scope">
<el-button
type="text"
size="small"
class="mr10"
@click="handleEdit(scope.row.seckill_time_id)"
>编辑</el-button>
<el-button type="text" size="small" @click="handleDelete(scope.row.seckill_time_id,scope.$index)">删除</el-button>
</template>
</el-table-column>
</el-table>
<div class="block">
<el-pagination
background
:page-size="tableFrom.limit"
:current-page="tableFrom.page"
layout="total, prev, pager, next, jumper"
:total="tableData.total"
@size-change="handleSizeChange"
@current-change="pageChange"
/>
</div>
</el-card>
</div>
</template>
<script>
import {
spikeConfigLstApi,
spikeConfigDeleteApi,
spikeConfigurationApi,
spikeConfigUpdateApi,
spikeConfigStatusApi
} from '@/api/marketing'
import { roterPre } from '@/settings'
export default {
name: 'CouponList',
data() {
return {
Loading: false,
dialogVisible: false,
roterPre: roterPre,
listLoading: true,
tableData: {
data: [],
total: 0
},
tableFrom: {
page: 1,
limit: 20,
status: ""
},
tableFromIssue: {
page: 1,
limit: 10,
coupon_id: 0
},
issueData: {
data: [],
total: 0
}
}
},
mounted() {
this.getList()
},
methods: {
//
addSpike() {
this.$modalForm(spikeConfigurationApi().then()).then(() =>
this.getList()
)
},
//
handleEdit(id) {
this.$modalForm(spikeConfigUpdateApi(id).then()).then(() =>
this.getList()
)
},
//
handleDelete(id, idx) {
this.$modalSure().then(() => {
spikeConfigDeleteApi(id)
.then(({ message }) => {
this.$message.success(message)
this.tableData.data.splice(idx, 1)
})
.catch(({ message }) => {
this.$message.error(message)
})
})
},
handleClose() {
this.dialogVisible = false
},
//
getList() {
this.listLoading = true
console.log(this.tableFrom)
spikeConfigLstApi(this.tableFrom)
.then((res) => {
this.tableData.data = res.data.list
this.tableData.total = res.data.count
this.listLoading = false
})
.catch((res) => {
this.listLoading = false
this.$message.error(res.message)
})
},
pageChange(page) {
this.tableFrom.page = page
this.getList()
},
handleSizeChange(val) {
this.tableFrom.limit = val
this.getList()
},
//
onchangeIsShow(row) {
spikeConfigStatusApi(row.seckill_time_id, row.status )
.then(({ message }) => {
this.$message.success(message)
this.getList()
})
.catch(({ message }) => {
this.$message.error(message)
})
}
}
}
</script>
<style scoped lang="scss">
@import '@/styles/form.scss';
</style>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,3 @@
<template>
<router-view />
</template>

View File

@ -45,7 +45,10 @@
</div>
<el-table v-loading="listLoading" :data="tableData.data" size="small">
<el-table-column prop="bill_id" label="ID" min-width="50" />
<el-table-column label="用户昵称" prop="nickname" min-width="150" />
<el-table-column prop="user.number" label="用户ID" min-width="50" />
<el-table-column prop="order_sn" label="订单号" min-width="120" />
<el-table-column label="用户昵称" prop="nickname" min-width="100" />
<el-table-column label="手机号" prop="phone" min-width="150" />
<el-table-column label="铸源星标题" prop="title" min-width="120" />
<el-table-column label="铸源星变动" prop="number" min-width="90">
<template slot-scope="scope">

View File

@ -835,7 +835,69 @@ export default {
exportRecord(excelData) {
exportOrderApi(excelData)
.then((res) => {
.then(async (res) => {
if (res.data.filename) {
const loading = this.$loading({
lock: true,
text: "导出中...",
spinner: "el-icon-loading",
background: "hsla(0, 0%, 100%, .9)",
});
let excelData = JSON.parse(JSON.stringify(this.tableFrom)),
data = [];
excelData.page = 1;
excelData.limit = 200;
let pageCount = 1;
let lebData = {};
// let work;
for (let i = 0; i < pageCount; i++) {
lebData = await this.downData(excelData);
// if(work){
// work.setContent(lebData.export)
// }else{
// work = createWorkBook(lebData.header, lebData.title, data, lebData.foot,lebData.filename);
// }
//
pageCount = Math.ceil(lebData.count / excelData.limit);
//
if (lebData.export.length) {
data = data.concat(lebData.export);
excelData.page++;
}
}
console.log("开始处理");
//
let start = performance.now();
// 线
let worker = new Worker();
// 线postMessage
worker.postMessage({
header: lebData.header,
title: lebData.title,
data,
foot: lebData.foot,
filename: lebData.filename,
});
// message
worker.addEventListener("message", (e) => {
// 线
worker.terminate();
//
let end = performance.now();
//
let durationTime = end - start;
console.log("计算结果:", e.data);
let { blob, filename } = e.data;
FileSaver.saveAs(blob, filename + ".xlsx");
loading.close();
console.log(`代码执行了 ${durationTime} 毫秒`);
});
// this.exportCsv(lebData.header,data,lebData.filename)
// createWorkBook(lebData.header, lebData.title, data, lebData.foot,lebData.filename)
// work.saveAndDowloade(lebData.filename)
return;
}
const h = this.$createElement;
this.$msgbox({
title: "提示",

View File

@ -175,10 +175,10 @@
}}
</div>
</li>
<!-- <li class="item">
<li class="item">
<div>优惠券金额</div>
<div class="value">{{ orderDetailList.coupon_price ? orderDetailList.coupon_price : '-' }}</div>
</li> -->
</li>
<li v-if="orderDetailList.integral" class="item">
<div>铸源星抵扣</div>
<div class="value">
@ -223,7 +223,7 @@
{{ orderDetailList.delivery_type | sendWay }}
</div>
</li>
<li
<!-- <li
v-if="orderDetailList.platform_coupon_price > 0"
class="item"
>
@ -241,7 +241,7 @@
orderDetailList.platform_coupon_price
}}
</div>
</li>
</li> -->
<li class="item">
<div>支付运费</div>
<div class="value">{{ orderDetailList.pay_postage }}</div>
@ -310,9 +310,13 @@
<div class="value">{{ orderDetailList.extension_one }}</div>
</li>
<li class="item">
<div>上级成长值</div>
<div>邀请人成长值</div>
<div class="value">{{ orderDetailList.extension_two }}</div>
</li>
<li class="item">
<div>优惠活动</div>
<div class="value">{{ orderDetailList.luck_prizes }}</div>
</li>
</ul>
</div>
<div class="section" v-if="orderDetailList.delivery_type === '1'">

View File

@ -1,25 +1,57 @@
<template>
<div class="divBox">
<div class="selCard">
<el-form size="small" inline :model="tableFrom" ref="searchForm" label-width="90px">
<el-form
size="small"
inline
:model="tableFrom"
ref="searchForm"
label-width="90px"
>
<el-form-item label="退款单状态:" class="width100" prop="status">
<el-radio-group v-model="tableFrom.status" type="button" @change="getList(1)">
<el-radio-button label>全部 {{ '(' +orderChartType.all?orderChartType.all:0 + ')' }}</el-radio-button>
<el-radio-button
label="0"
>待审核 {{ '(' +orderChartType.audit?orderChartType.audit:0+ ')' }}</el-radio-button>
<el-radio-button
label="-1"
>审核未通过 {{ '(' +orderChartType.refuse?orderChartType.refuse:0+ ')' }}</el-radio-button>
<el-radio-button
label="1"
>审核通过 {{ '(' +orderChartType.agree?orderChartType.agree:0+ ')' }}</el-radio-button>
<el-radio-button
label="2"
>待收货 {{ '(' +orderChartType.backgood?orderChartType.backgood:0+ ')' }}</el-radio-button>
<el-radio-button
label="3"
>已完成 {{ '(' +orderChartType.end?orderChartType.end:0+ ')' }}</el-radio-button>
<el-radio-group
v-model="tableFrom.status"
type="button"
@change="getList(1)"
>
<el-radio-button label
>全部
{{
"(" + orderChartType.all ? orderChartType.all : 0 + ")"
}}</el-radio-button
>
<el-radio-button label="0"
>待审核
{{
"(" + orderChartType.audit ? orderChartType.audit : 0 + ")"
}}</el-radio-button
>
<el-radio-button label="-1"
>审核未通过
{{
"(" + orderChartType.refuse ? orderChartType.refuse : 0 + ")"
}}</el-radio-button
>
<el-radio-button label="1"
>审核通过
{{
"(" + orderChartType.agree ? orderChartType.agree : 0 + ")"
}}</el-radio-button
>
<el-radio-button label="2"
>待收货
{{
"(" + orderChartType.backgood
? orderChartType.backgood
: 0 + ")"
}}</el-radio-button
>
<el-radio-button label="3"
>已完成
{{
"(" + orderChartType.end ? orderChartType.end : 0 + ")"
}}</el-radio-button
>
</el-radio-group>
</el-form-item>
<el-form-item label="时间选择:">
@ -31,7 +63,7 @@
type="datetimerange"
placement="bottom-end"
placeholder="自定义时间"
style="width: 280px;"
style="width: 280px"
:picker-options="pickerOptions"
@change="onchangeTime"
/>
@ -97,29 +129,33 @@
</el-select>
</el-form-item>
<el-form-item label="发起方:" prop="user_type">
<el-select
v-model="tableFrom.user_type"
placeholder="请选择"
class="selWidth"
clearable
@change="getList(1)"
>
<el-option
v-for="item in refundUserList"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
<el-form-item>
<el-button type="primary" size="small" @click="getList(1)">搜索</el-button>
<el-button size="small" @click="searchReset()">重置</el-button>
<el-select
v-model="tableFrom.user_type"
placeholder="请选择"
class="selWidth"
clearable
@change="getList(1)"
>
<el-option
v-for="item in refundUserList"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
</el-form>
<el-form-item>
<el-button type="primary" size="small" @click="getList(1)"
>搜索</el-button
>
<el-button size="small" @click="searchReset()">重置</el-button>
</el-form-item>
</el-form>
</div>
<el-card class="mt14">
<el-button size="small" type="primary" class="mb20" @click="exports">导出列表</el-button>
<el-button size="small" type="primary" class="mb20" @click="exports"
>导出列表</el-button
>
<el-table
v-loading="listLoading"
:data="tableData.data"
@ -129,7 +165,11 @@
>
<el-table-column type="expand">
<template slot-scope="props">
<el-form label-position="left" inline class="demo-table-expand demo-table-expands">
<el-form
label-position="left"
inline
class="demo-table-expand demo-table-expands"
>
<el-form-item label="退款商品总价:">
<span>{{ getTotal(props.row.refundProduct) }}</span>
</el-form-item>
@ -150,53 +190,87 @@
</el-table-column>
<el-table-column label="退款单号" min-width="170">
<template slot-scope="scope">
<span style="display: block;" v-text="scope.row.refund_order_sn" />
<span v-show="scope.row.is_del > 0" style="color: #ED4014;display: block;">用户已删除</span>
<span style="display: block" v-text="scope.row.refund_order_sn" />
<span
v-show="scope.row.is_del > 0"
style="color: #ed4014; display: block"
>用户已删除</span
>
</template>
</el-table-column>
<el-table-column prop="order.order_sn" label="订单号" min-width="130" />
<el-table-column prop="user.nickname" label="用户信息" min-width="130" />
<el-table-column prop="merchant.mer_name" label="商户名称" min-width="130" />
<el-table-column prop="merchant.ext.com.name" label="商户名称" min-width="130" />
<el-table-column
prop="user.nickname"
label="用户信息"
min-width="130"
/>
<el-table-column
prop="merchant.mer_name"
label="商户名称"
min-width="130"
/>
<el-table-column
prop="merchant.ext.com.name"
label="商户名称"
min-width="130"
/>
<el-table-column prop="mer_name" label="商户类别" min-width="90">
<template slot-scope="scope">
<span v-if="scope.row.merchant" class="spBlock">{{ scope.row.merchant.is_trader ? '自营' : '非自营' }}</span>
<span v-if="scope.row.merchant" class="spBlock">{{
scope.row.merchant.is_trader ? "自营" : "非自营"
}}</span>
</template>
</el-table-column>
<el-table-column prop="refund_price" label="退款金额" min-width="130" />
<el-table-column label="退款类型" min-width="80">
<template slot-scope="scope">
<span >{{ scope.row.refund_type==1?'退款':'退款退货' }}</span>
<span>{{ scope.row.refund_type == 1 ? "退款" : "退款退货" }}</span>
</template>
</el-table-column>
<el-table-column prop="nickname" label="商品信息" min-width="330">
<template slot-scope="scope">
<div
v-for="(val, i ) in scope.row.refundProduct"
v-for="(val, i) in scope.row.refundProduct"
:key="i"
class="tabBox acea-row row-middle"
>
<div class="demo-image__preview">
<el-image
:src="val.product && val.product.cart_info.product.image"
:preview-src-list="[val.product && val.product.cart_info.product.image]"
:preview-src-list="[
val.product && val.product.cart_info.product.image,
]"
/>
</div>
<span
class="tabBox_tit"
>{{ val.product && val.product.cart_info.product.store_name + ' | ' }}{{ val.product && val.product.cart_info.productAttr.sku }}</span>
<span
class="tabBox_pice"
>{{ '¥'+ val.product.cart_info.productAttr.price + ' x '+ val.product.product_num }}</span>
<span class="tabBox_tit"
>{{
val.product &&
val.product.cart_info.product.store_name + " | "
}}{{
val.product && val.product.cart_info.productAttr.sku
}}</span
>
<span class="tabBox_pice">{{
"¥" +
val.product.cart_info.productAttr.price +
" x " +
val.product.product_num
}}</span>
</div>
</template>
</el-table-column>
<el-table-column prop="serviceScore" label="订单状态" min-width="250">
<template slot-scope="scope">
<span style="display: block">{{ scope.row.status | orderRefundFilter }}</span>
<span style="display: block">退款原因{{ scope.row.refund_message }}</span>
<span style="display: block">状态变更时间{{ scope.row.status_time }}</span>
<span style="display: block">{{
scope.row.status | orderRefundFilter
}}</span>
<span style="display: block"
>退款原因{{ scope.row.refund_message }}</span
>
<span style="display: block"
>状态变更时间{{ scope.row.status_time }}</span
>
</template>
</el-table-column>
<el-table-column label="操作" min-width="90" fixed="right">
@ -205,10 +279,28 @@
type="text"
size="small"
@click="onOrderDetail(scope.row.order.order_sn)"
>订单详情</el-button>
<el-button v-if="scope.row.status === 0" type="text" size="small" @click="onOrderStatus(scope.row.refund_order_id)">退款</el-button>
<el-button v-if="scope.row.status === 0" type="text" size="small" @click="onOrdermanual(scope.row.refund_order_id)">手动退款</el-button>
<el-button type="text" size="small" @click="onRefundOrderDetail(scope.row.refund_order_id)">退款单详情</el-button>
>订单详情</el-button
>
<el-button
v-if="scope.row.status === 0"
type="text"
size="small"
@click="onOrderStatus(scope.row.refund_order_id)"
>退款</el-button
>
<el-button
v-if="scope.row.status === 0"
type="text"
size="small"
@click="onOrdermanual(scope.row.refund_order_id)"
>手动退款</el-button
>
<el-button
type="text"
size="small"
@click="onRefundOrderDetail(scope.row.refund_order_id)"
>退款单详情</el-button
>
</template>
</el-table-column>
</el-table>
@ -226,9 +318,13 @@
</el-card>
<!--导出订单列表-->
<file-list ref="exportList" />
<!--详情-->
<details-from ref="orderDetail" :order-datalist="orderDatalist" @get-logistics="openLogistics" />
<el-dialog
<!--详情-->
<details-from
ref="orderDetail"
:order-datalist="orderDatalist"
@get-logistics="openLogistics"
/>
<el-dialog
v-if="dialogLogistics"
title="物流查询"
:visible.sync="dialogLogistics"
@ -246,7 +342,6 @@
</template>
<script>
import {
refundorderListApi,
orderUpdateApi,
@ -254,23 +349,24 @@ import {
refundorderDetailApi,
refundorderExpressApi,
onOrdermanualApi,
orderDeliveryApi, exportRefundOrderApi
orderDeliveryApi,
exportRefundOrderApi,
} from "@/api/order";
import createWorkBook from '@/utils/newToExcel.js';
import detailsFrom from './refundDetail'
import logisticsFrom from '../logistics'
import createWorkBook from "@/utils/newToExcel.js";
import detailsFrom from "./refundDetail";
import logisticsFrom from "../logistics";
import { fromList } from "@/libs/constants.js";
import fileList from '@/components/exportFile/fileList'
import fileList from "@/components/exportFile/fileList";
import { roterPre } from "@/settings";
import timeOptions from '@/utils/timeOptions';
import timeOptions from "@/utils/timeOptions";
export default {
components: { fileList,detailsFrom,logisticsFrom },
components: { fileList, detailsFrom, logisticsFrom },
name: "OrderRefund",
data() {
return {
pickerOptions: timeOptions,
orderId: 0,
logisticsName: 'refund',
logisticsName: "refund",
roterPre: roterPre,
tableData: {
data: [],
@ -278,24 +374,26 @@ export default {
},
listLoading: true,
orderStatusOptions: {
'交易完成': '3',
交易完成: "3",
},
tableFrom: {
refund_order_sn: this.$route.query.refund_order_sn ? this.$route.query.refund_order_sn : "",
refund_order_sn: this.$route.query.refund_order_sn
? this.$route.query.refund_order_sn
: "",
order_sn: "",
status: "",
date: "",
page: 1,
limit: 20,
is_trader: '',
refund_type:'',
user_type:'',
order_status:''
is_trader: "",
refund_type: "",
user_type: "",
order_status: "",
},
refundUserList: [
{ value: 1, label: '用户' },
{ value: 3, label: '商户' },
{ value: 4, label: '平台' }
{ value: 1, label: "用户" },
{ value: 3, label: "商户" },
{ value: 4, label: "平台" },
],
orderChartType: {},
timeVal: [],
@ -316,7 +414,7 @@ export default {
orderDatalist: null,
orderDetails: {},
result: [],
dialogLogistics:false
dialogLogistics: false,
};
},
mounted() {
@ -325,7 +423,7 @@ export default {
} else {
this.tableFrom.order_sn = "";
}
this.getList('');
this.getList("");
},
//
activated() {
@ -334,69 +432,71 @@ export default {
} else {
this.tableFrom.order_sn = "";
}
this.getList('');
this.getList("");
},
methods: {
// 退
// 退
onOrderStatus(id) {
this.$modalForm(refundorderStatusApi(id)).then(() => this.getList(''))
this.$modalForm(refundorderStatusApi(id)).then(() => this.getList(""));
},
onOrdermanual(id){
this.$confirm('请确认该订单已线下退款,请谨慎操作', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
onOrdermanualApi(id).then((res)=>{
this.$message.success(res.message)
this.getList('');
}).catch(({ message }) => {
this.$message.error(message)
onOrdermanual(id) {
this.$confirm("请确认该订单已线下退款,请谨慎操作", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
}).then(() => {
onOrdermanualApi(id)
.then((res) => {
this.$message.success(res.message);
this.getList("");
})
.catch(({ message }) => {
this.$message.error(message);
});
})
});
},
//
//
onRefundOrderDetail(id) {
this.orderId = id
this.$refs.orderDetail.dialogVisible = true
this.loading = true
this.orderId = id;
this.$refs.orderDetail.dialogVisible = true;
this.loading = true;
refundorderDetailApi(id)
.then(res => {
this.orderDatalist = res.data
this.loading = false
this.$refs.orderDetail.onOrderLog(id)
.then((res) => {
this.orderDatalist = res.data;
this.loading = false;
this.$refs.orderDetail.onOrderLog(id);
})
.catch(({ message }) => {
this.loading = false
this.$message.error(message)
})
this.loading = false;
this.$message.error(message);
});
},
openLogistics(row) {
this.orderDetails = row
this.getOrderData(row.refund_order_id)
this.dialogLogistics = true
this.orderDetails = row;
this.getOrderData(row.refund_order_id);
this.dialogLogistics = true;
},
handleClose() {
this.dialogLogistics = false
this.dialogConfirm = false
this.dialogLogistics = false;
this.dialogConfirm = false;
},
//
//
getOrderData(id) {
refundorderExpressApi(id)
.then(async res => {
this.result = res.data
})
.catch(res => {
this.$message.error(res.message)
.then(async (res) => {
this.result = res.data;
})
.catch((res) => {
this.$message.error(res.message);
});
},
/**重置 */
searchReset(){
this.timeVal = []
this.tableFrom.date = ""
this.$refs.searchForm.resetFields()
this.tableFrom.order_sn = ""
this.getList(1)
searchReset() {
this.timeVal = [];
this.tableFrom.date = "";
this.$refs.searchForm.resetFields();
this.tableFrom.order_sn = "";
this.getList(1);
},
//
onOrderDetail(order_sn) {
@ -408,54 +508,64 @@ export default {
});
},
async exports() {
let excelData = JSON.parse(JSON.stringify(this.tableFrom)), data = []
excelData.page = 1
excelData.limit = 200
let pageCount = 1
let lebData = {};
for (let i = 0; i < pageCount; i++) {
lebData = await this.downData(excelData)
pageCount = Math.ceil(lebData.count/excelData.limit)
if (lebData.export.length) {
data = data.concat(lebData.export)
excelData.page++
}
}
createWorkBook(lebData.header, lebData.title, data, lebData.foot,lebData.filename);
return
let excelData = JSON.parse(JSON.stringify(this.tableFrom));
this.exportRecord(excelData);
},
/**订单列表 */
downData(excelData) {
return new Promise((resolve, reject) => {
exportRefundOrderApi(excelData).then((res) => {
return resolve(res.data)
})
})
return resolve(res.data);
});
});
},
//
exportRecord() {
exportRecord(excelData) {
exportRefundOrderApi(this.tableFrom)
.then((res) => {
.then(async (res) => {
if (res.data.filename) {
let data = [];
excelData.page = 1;
excelData.limit = 200;
let pageCount = 1;
let lebData = {};
for (let i = 0; i < pageCount; i++) {
lebData = await this.downData(excelData);
pageCount = Math.ceil(lebData.count / excelData.limit);
if (lebData.export.length) {
data = data.concat(lebData.export);
excelData.page++;
}
}
createWorkBook(
lebData.header,
lebData.title,
data,
lebData.foot,
lebData.filename
);
return;
}
const h = this.$createElement;
this.$msgbox({
title: '提示',
message: h('p', null, [
h('span', null, '文件正在生成中,请稍后点击"'),
h('span', { style: 'color: teal' }, '导出记录'),
h('span', null, '"查看~ '),
title: "提示",
message: h("p", null, [
h("span", null, '文件正在生成中,请稍后点击"'),
h("span", { style: "color: teal" }, "导出记录"),
h("span", null, '"查看~ '),
]),
confirmButtonText: '我知道了',
}).then(action => {
confirmButtonText: "我知道了",
}).then((action) => {
this.$router.push({ path: this.roterPre + "/group/exportList" });
});
})
.catch((res) => {
this.$message.error(res.message)
})
this.$message.error(res.message);
});
},
//
getExportFileList() {
this.$refs.exportList.exportFileList()
this.$refs.exportList.exportFileList();
},
getTotal(row) {
let sum = 0;
@ -466,7 +576,7 @@ export default {
},
pageChangeLog(page) {
this.tableFromLog.page = page;
this.getList('');
this.getList("");
},
handleSizeChangeLog(val) {
this.tableFromLog.limit = val;
@ -477,22 +587,22 @@ export default {
this.tableFrom.date = tab;
this.tableFrom.page = 1;
this.timeVal = [];
this.getList('');
this.getList("");
},
//
onchangeTime(e) {
this.timeVal = e;
this.tableFrom.date = e ? this.timeVal.join("-") : "";
this.tableFrom.page = 1;
this.getList('');
this.getList("");
},
//
edit(id) {
this.$modalForm(orderUpdateApi(id)).then(() => this.getList(''));
this.$modalForm(orderUpdateApi(id)).then(() => this.getList(""));
},
//
send(id) {
this.$modalForm(orderDeliveryApi(id)).then(() => this.getList(''));
this.$modalForm(orderDeliveryApi(id)).then(() => this.getList(""));
},
//
getList(num) {
@ -513,7 +623,7 @@ export default {
},
pageChange(page) {
this.tableFrom.page = page;
this.getList('');
this.getList("");
},
handleSizeChange(val) {
this.tableFrom.limit = val;
@ -526,7 +636,7 @@ export default {
<style lang="scss" scoped>
.demo-table-expands ::v-deep label {
width: 110px !important;
color: #99a9bf;
color: #99a9bf;
}
.el-dropdown-link {
cursor: pointer;

View File

@ -74,6 +74,9 @@
退货金额{{ orderDatalist.refund_good_price }}
</div>
<div class="description-term">退折扣{{ orderDatalist.amount }}</div>
<div class="description-term">
退铸源星{{ orderDatalist.integral }}
</div>
<div class="description-term">
退运费金额{{ orderDatalist.refund_postage }}
</div>

View File

@ -936,6 +936,11 @@ const proOptions = [
name: "能量",
value: "is_energy",
},
{
name: "年货礼包",
value: "is_new_year",
},
// {
// name: "",
// value: "is_activities",
@ -1014,6 +1019,10 @@ export default {
name: "能量",
value: "is_energy",
},
{
name: "年货礼包",
value: "is_new_year",
},
// {
// name: "",
// value: "activity",
@ -1027,6 +1036,7 @@ export default {
is_new: 0,
is_benefit: 0,
is_energy: 0,
is_new_year: 0,
ficti: 0,
is_ficti: "",
content: "",
@ -1203,9 +1213,32 @@ export default {
});
},
//
exportRecord() {
exportRecord(excelData) {
exportProductApi(this.tableFrom)
.then((res) => {
.then(async (res) => {
if (res.data.filename) {
let data = [];
excelData.page = 1;
excelData.limit = 200;
let pageCount = 1;
let lebData = {};
for (let i = 0; i < pageCount; i++) {
lebData = await this.downData(excelData);
pageCount = Math.ceil(lebData.count / excelData.limit);
if (lebData.export.length) {
data = data.concat(lebData.export);
excelData.page++;
}
}
createWorkBook(
lebData.header,
lebData.title,
data,
lebData.foot,
lebData.filename
);
return;
}
const h = this.$createElement;
this.$msgbox({
title: "提示",
@ -1405,6 +1438,7 @@ export default {
is_new: info.is_new,
is_benefit: info.is_benefit,
is_energy: info.is_energy,
is_new_year: info.is_new_year,
ficti: info.ficti,
content: info.content,
store_name: info.store_name,
@ -1424,6 +1458,7 @@ export default {
if (info.is_best === 1) this.checkboxGroup.push("is_best");
if (info.is_new === 1) this.checkboxGroup.push("is_new");
if (info.is_energy === 1) this.checkboxGroup.push("is_energy");
if (info.is_new_year === 1) this.checkboxGroup.push("is_new_year");
this.fullscreenLoading = false;
})
.catch((res) => {
@ -1488,6 +1523,10 @@ export default {
? (this.formValidate.is_energy = 1)
: (this.formValidate.is_energy =
0 && this.checkboxGroup.remove("is_energy"));
this.checkboxGroup.includes("is_new_year")
? (this.formValidate.is_new_year = 1)
: (this.formValidate.is_new_year =
0 && this.checkboxGroup.remove("is_new_year"));
},
onChangeRecommend() {
this.recommendForm.is_benefit = Number(
@ -1505,6 +1544,9 @@ export default {
this.recommendForm.is_energy = Number(
this.recommendGroup.includes("is_energy")
);
this.recommendForm.is_new_year = Number(
this.recommendGroup.includes("is_new_year")
);
},
handleClose() {
this.dialogVisible = false;

View File

@ -58,9 +58,9 @@
</div>
<!-- <cards-data v-if="cardLists.length > 0" :card-lists="cardLists" /> -->
<el-card>
<!-- <div class="mb20">
<div class="mb20">
<el-button size="small" type="primary" @click="exports">导出</el-button>
</div> -->
</div>
<el-table v-loading="listLoading" :data="tableData.data" size="small">
<!-- <el-table-column prop="bill_id" label="ID" min-width="50" /> -->
<!-- <el-table-column label="用户昵称" prop="real_name" min-width="150" /> -->
@ -104,7 +104,7 @@
</div>
</template>
<script>
import { backListApi, bonusExport } from "@/api/marketing";
import { backListApi, bonusExport, backListExport } from "@/api/marketing";
import fileList from "@/components/exportFile/fileList";
import cardsData from "@/components/cards/index";
import createWorkBook from "@/utils/newToExcel.js";
@ -187,7 +187,7 @@ export default {
/**列表 */
downData(excelData) {
return new Promise((resolve, reject) => {
bonusExport(excelData).then((res) => {
backListExport(excelData).then((res) => {
return resolve(res.data);
});
});

View File

@ -61,7 +61,8 @@
<el-button size="small" type="primary" @click="exports">导出</el-button>
</div>
<el-table v-loading="listLoading" :data="tableData.data" size="small">
<el-table-column prop="bill_id" label="ID" min-width="50" />
<el-table-column prop="bill_id" label="ID" min-width="60" />
<el-table-column prop="user.number" label="ID号" min-width="70" />
<el-table-column label="用户昵称" prop="nickname" min-width="150" />
<el-table-column prop="user.phone" label="手机号" min-width="120" />
<el-table-column
@ -105,11 +106,7 @@
</div>
</template>
<script>
import {
integralLogTitle,
bonusLogLst,
bonusExport,
} from "@/api/marketing";
import { integralLogTitle, bonusLogLst, bonusExport } from "@/api/marketing";
import fileList from "@/components/exportFile/fileList";
import cardsData from "@/components/cards/index";
import createWorkBook from "@/utils/newToExcel.js";

View File

@ -74,6 +74,7 @@
<script>
import { exportFileLstApi, excelFileType } from "@/api/order";
import axios from 'axios';
export default {
name: "FileList",
data() {
@ -126,8 +127,33 @@ export default {
},
//
downLoad(path) {
window.open(path)
// downLoad(path) {
// // window.open(path)
// const fileUrl = path; // URL
// const link = document.createElement('a');
// link.href = fileUrl;
// document.body.appendChild(link);
// link.click();
// document.body.removeChild(link);
// },
//
async downLoad(path) {
try {
const response = await axios.get(path, {
responseType: 'blob'
});
const url = window.URL.createObjectURL(new Blob([response.data]));
const a = document.createElement('a');
a.href = url;
a.download = path.split('/').pop(); // 使
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
window.URL.revokeObjectURL(url);
} catch (error) {
console.error('下载错误:', error);
this.$message.error('文件下载失败');
}
},
pageChange(page) {
this.tableFrom.page = page;

View File

@ -1077,7 +1077,37 @@ export default {
},
exportRecord(excelData) {
exportUserApi(excelData)
.then((res) => {
.then(async (res) => {
if (res.data.filename) {
const loading = this.$loading({
lock: true,
text: "正在拼命导出中,请耐心等待...",
spinner: "el-icon-loading",
background: "hsla(0, 0%, 100%, .9)",
});
let data = [];
excelData.page = 1;
excelData.limit = 500;
let pageCount = 1;
let lebData = {};
for (let i = 0; i < pageCount; i++) {
lebData = await this.downData(excelData);
pageCount = Math.ceil(lebData.count / excelData.limit);
if (lebData.export.length) {
data = data.concat(lebData.export);
excelData.page++;
}
}
createWorkBook(
lebData.header,
lebData.title,
data,
lebData.foot,
lebData.filename
);
loading.close();
return;
}
const h = this.$createElement;
this.$msgbox({
title: "提示",