20240225今日还款列表等

This commit is contained in:
Sliverber 2024-02-25 23:32:47 +08:00
parent 617edfb138
commit 3114de2973
8 changed files with 1517 additions and 477 deletions

View File

@ -61,7 +61,31 @@ export function couponSaveApi(data) {
data,
});
}
/**
* 会员管理 修改
* @param pram
*/
export function userUpdateApi(params, data) {
return request({
url: `/admin/user/update`,
method: 'post',
params,
data,
});
}
/**
* 备注列表 修改
* @param pram
*/
export function changeRepaymentStatus(params,data) {
return request({
url: `admin/user/installmentBill/update/?id=${params}`,
method: 'post',
// params,
data,
});
console.log(data,'dadada');
}
/**
* 优惠券 修改状态
* @param pram

View File

@ -84,6 +84,59 @@ export function infobyconditionApi(params) {
});
}
/**
* 会员管理 账户详情
* @param pram
*/
export function infobyconditionApiList(params) {
return request({
url: `/admin/user/installmentBill/list`,
method: 'get',
params,
});
}
/**
* 备注列表
* @param pram
*/
export function remarkList(params) {
return request({
url: `admin/user/remark/list`,
method: 'get',
params,
});
}
export function delRemark(id) {
return request({
url: `admin/user/remark/delete/?id=${id}`,
method: 'get',
// params,
});
}
/**
* 备注列表 修改
* @param pram
*/
export function remarkUpdata(params,data) {
return request({
url: `admin/user/remark/update/?id=${params}`,
method: 'post',
// params,
data,
});
console.log(data,'dadada');
}
export function addRemark(data) {
return request({
url: `admin/user/remark/save`,
method: 'post',
// params,
data,
});
console.log(data,'dadada');
}
/**
* 会员管理 账户详情top数据
* @param pram

View File

@ -325,6 +325,18 @@
"sort": 0,
"add_time": 1626837579
},
{
"id": 50,
"cate_id": 5,
"type": 3,
"name": "还款记录",
"url": "/pages/users/user_spread_money/index?type=2",
"param": " ",
"example": "/pages/users/user_spread_money/index?type=2",
"status": 1,
"sort": 0,
"add_time": 1626837579
},
{
"id": 49,
"cate_id": 5,

View File

@ -61,6 +61,9 @@ export default {
this.onlyOneChild = null;
return {};
},
mounted(){
console.log(this.item,'itemitem');
},
methods: {
hasOneShowingChild(child = [], parent) {
const showingChildren = child.filter((item) => {

View File

@ -48,12 +48,19 @@ const financialRouter = {
},
],
},
{
path: 'repayment',
component: () => import('@/views/financial/repayment/index'),
name: 'Repayment',
meta: { title: '还款记录', icon: '' },
},
{
path: 'brokerage',
component: () => import('@/views/financial/brokerage/index'),
name: 'Brokerage',
meta: { title: '佣金记录', icon: '' },
},
],
};

View File

@ -80,13 +80,13 @@ export default {
url: '/order/index',
perms: ['admin:order:list'],
},
// {
// bgColor: '#A277FF',
// icon: 'iconduanxinpeizhi',
// title: '',
// url: '/operation/onePass',
// perms: ['admin:pass:login'],
// },
{
bgColor: '#A277FF',
icon: 'iconduanxinpeizhi',
title: '还款记录',
url: '/financial/repayment',
perms: ['admin:pass:login'],
},
{
bgColor: '#E8B600',
icon: 'iconwenzhangguanli',
@ -112,9 +112,9 @@ export default {
statisticData: [
{ title: '待发货订单', num: 0, path: '/order/index', perms: ['admin:order:list'] },
{ title: '退款中订单', num: 0, path: '/order/index', perms: ['admin:order:list'] },
{ title: '待订单', num: 0, path: '/order/index', perms: ['admin:order:list'] },
{ title: '库存预警', num: 0, path: '/store/index', perms: ['admin:product:list'] },
{ title: '上架商品', num: 0, path: '/store/index', perms: ['admin:product:list'] },
{ title: '待核订单', num: 0, perms: ['admin:order:list'] },
{ title: '昨日回款率', num: 0, perms: ['admin:product:list'] },
{ title: '明日到期', num: 0, perms: ['admin:product:list'] },
{ title: '仓库商品', num: 0, path: '/store/index', perms: ['admin:product:list'] },
{ title: '提现待审核', num: 0, path: '/financial/commission/template', perms: ['admin:finance:apply:list'] },
{ title: '账户充值', num: 0, path: '/financial/record/charge', perms: ['admin:recharge:list'] },
@ -157,8 +157,8 @@ export default {
businessData().then((res) => {
this.statisticData[0].num = res.notShippingOrderNum; //
this.statisticData[1].num = res.refundingOrderNum; //退
this.statisticData[2].num = res.notWriteOffOrderNum; //
this.statisticData[3].num = res.vigilanceInventoryNum; //
this.statisticData[2].num = res.auditTotalNum; //
this.statisticData[3].num = res.yesterdayRateOfReturn; //
this.statisticData[4].num = res.onSaleProductNum; //
this.statisticData[5].num = res.notSaleProductNum; //
this.statisticData[6].num = res.notAuditNum; //

File diff suppressed because it is too large Load Diff

View File

@ -3,26 +3,16 @@
<el-card class="box-card">
<div class="clearfix">
<div class="container">
<el-form size="small"
label-width="100px">
<el-form size="small" label-width="100px">
<el-form-item label="订单类型:">
<el-radio-group v-model="tableFrom.type"
type="button"
class="mr20"
size="small"
@change="seachList">
<el-radio-button v-for="(item, i) in options"
:key="i"
:label="item.value">{{
<el-radio-group v-model="tableFrom.type" type="button" class="mr20" size="small" @change="seachList">
<el-radio-button v-for="(item, i) in options" :key="i" :label="item.value">{{
item.label
}}</el-radio-button>
</el-radio-group>
</el-form-item>
<el-form-item label="订单状态:"
v-if="checkPermi(['admin:order:status:num'])">
<el-radio-group v-model="tableFrom.status"
type="button"
@change="seachList">
<el-form-item label="订单状态:" v-if="checkPermi(['admin:order:status:num'])">
<el-radio-group v-model="tableFrom.status" type="button" @change="seachList">
<el-radio-button label="all">全部 {{ '(' + orderChartType.all ? orderChartType.all : 0 + ')'
}}</el-radio-button>
<el-radio-button label="unPaid">未支付 {{ '(' + orderChartType.unPaid ? orderChartType.unPaid : 0 + ')'
@ -54,61 +44,31 @@
}}</el-radio-button>
</el-radio-group>
</el-form-item>
<el-form-item label="时间选择:"
class="width100">
<el-radio-group v-model="tableFrom.dateLimit"
type="button"
class="mr20"
size="small"
<el-form-item label="时间选择:" class="width100">
<el-radio-group v-model="tableFrom.dateLimit" type="button" class="mr20" size="small"
@change="selectChange(tableFrom.dateLimit)">
<el-radio-button v-for="(item, i) in fromList.fromTxt"
:key="i"
:label="item.val">{{
<el-radio-button v-for="(item, i) in fromList.fromTxt" :key="i" :label="item.val">{{
item.text
}}</el-radio-button>
</el-radio-group>
<el-date-picker v-model="timeVal"
value-format="yyyy-MM-dd"
format="yyyy-MM-dd"
size="small"
type="daterange"
placement="bottom-end"
placeholder="自定义时间"
style="width: 220px"
@change="onchangeTime" />
<el-date-picker v-model="timeVal" value-format="yyyy-MM-dd" format="yyyy-MM-dd" size="small"
type="daterange" placement="bottom-end" placeholder="自定义时间" style="width: 220px" @change="onchangeTime" />
</el-form-item>
<el-form-item label="订单号:"
class="width100">
<el-input v-model="tableFrom.orderNo"
placeholder="请输入订单号"
class="selWidth"
size="small"
clearable>
<el-button slot="append"
icon="el-icon-search"
size="small"
@click="seachList" />
<el-form-item label="订单号:" class="width100">
<el-input v-model="tableFrom.orderNo" placeholder="请输入订单号" class="selWidth" size="small" clearable>
<el-button slot="append" icon="el-icon-search" size="small" @click="seachList" />
</el-input>
</el-form-item>
<el-form-item class="width100">
<el-button size="small"
@click="exports"
v-hasPermi="['admin:export:excel:order']">导出</el-button>
<el-button size="small" @click="exports" v-hasPermi="['admin:export:excel:order']">导出</el-button>
</el-form-item>
</el-form>
</div>
</div>
</el-card>
<el-card class="box-card">
<el-table v-loading="listLoading"
stripe="true"
border="true"
:data="tableData.data"
size="mini"
class="table"
highlight-current-row
:header-cell-style="{ fontWeight: 'bold' }"
:row-key="(row) => {
<el-table v-loading="listLoading" stripe="true" border="true" :data="tableData.data" size="mini" class="table"
highlight-current-row :header-cell-style="{ fontWeight: 'bold' }" :row-key="(row) => {
return row.orderId;
}
">
@ -124,15 +84,13 @@
<span v-show="scope.row.isDel" style="color: #ed4014; display: block">用户已删除</span>
</template>
</el-table-column> -->
<el-table-column label="ID"
min-width="50">
<el-table-column label="ID" min-width="50">
<template slot-scope="scope">
<span v-text="scope.row.id"></span>
</template>
</el-table-column>
<el-table-column label="订单信息"
min-width="265">
<el-table-column label="订单信息" min-width="265">
<template slot-scope="scope">
<div class="list">
<div class="li">订单编号 <span v-text="scope.row.orderId"></span></div>
@ -149,8 +107,7 @@
</template>
</el-table-column>
<el-table-column label="订单信息"
min-width="210">
<el-table-column label="订单信息" min-width="210">
<template slot-scope="scope">
<div class="list1">
<div class="img">
@ -171,22 +128,14 @@
</el-table-column>
<!-- <el-table-column prop="orderType" label="订单类型" min-width="110" v-if="checkedCities.includes('订单类型')" /> -->
<!-- <el-table-column prop="realName" label="收货人" min-width="100" v-if="checkedCities.includes('收货人')" /> -->
<el-table-column label="商品信息"
min-width="400"
v-if="checkedCities.includes('商品信息')">
<el-table-column label="商品信息" min-width="400" v-if="checkedCities.includes('商品信息')">
<template slot-scope="scope">
<el-popover trigger="hover"
placement="right"
:open-delay="800">
<div v-if="scope.row.productList && scope.row.productList.length"
slot="reference">
<div v-for="(val, i) in scope.row.productList"
:key="i"
class="tabBox acea-row row-middle"
<el-popover trigger="hover" placement="right" :open-delay="800">
<div v-if="scope.row.productList && scope.row.productList.length" slot="reference">
<div v-for="(val, i) in scope.row.productList" :key="i" class="tabBox acea-row row-middle"
style="flex-wrap: inherit">
<div class="demo-image__preview mr10">
<el-image :src="val.info.image"
:preview-src-list="[val.info.image]" />
<el-image :src="val.info.image" :preview-src-list="[val.info.image]" />
</div>
<div class="text_overflow">
<span class="tabBox_tit mr10">{{ val.info.productName + ' | ' }}{{ val.info.sku ? val.info.sku : '-'
@ -197,11 +146,8 @@
</div>
</div>
</div>
<div class="pup_card"
v-if="scope.row.productList && scope.row.productList.length">
<div v-for="(val, i) in scope.row.productList"
:key="i"
class="tabBox acea-row row-middle"
<div class="pup_card" v-if="scope.row.productList && scope.row.productList.length">
<div v-for="(val, i) in scope.row.productList" :key="i" class="tabBox acea-row row-middle"
style="flex-wrap: inherit">
<div class="">
<span class="tabBox_tit mr10">{{ val.info.productName + ' | ' }}{{ val.info.sku ? val.info.sku : '-'
@ -215,30 +161,19 @@
</el-popover>
</template>
</el-table-column>
<el-table-column prop="payPrice"
label="实际支付"
min-width="80"
v-if="checkedCities.includes('实际支付')" />
<el-table-column label="支付方式"
min-width="80"
v-if="checkedCities.includes('支付方式')">
<el-table-column prop="payPrice" label="实际支付" min-width="80" v-if="checkedCities.includes('实际支付')" />
<el-table-column label="支付方式" min-width="80" v-if="checkedCities.includes('支付方式')">
<template slot-scope="scope">
<span>{{ scope.row.payTypeStr }}</span>
</template>
</el-table-column>
<el-table-column label="订单状态"
min-width="100"
v-if="checkedCities.includes('订单状态')">
<el-table-column label="订单状态" min-width="100" v-if="checkedCities.includes('订单状态')">
<template slot-scope="scope">
<div>
<div v-if="scope.row.refundStatus === 1 || scope.row.refundStatus === 2"
class="refunding">
<div v-if="scope.row.refundStatus === 1 || scope.row.refundStatus === 2" class="refunding">
<template>
<el-popover trigger="hover"
placement="left"
:open-delay="500">
<b style="color: #f124c7; cursor: pointer"
slot="reference">{{ scope.row.statusStr.value }}</b>
<el-popover trigger="hover" placement="left" :open-delay="500">
<b style="color: #f124c7; cursor: pointer" slot="reference">{{ scope.row.statusStr.value }}</b>
<div class="pup_card flex-column">
<span>退款原因{{ scope.row.refundReasonWap }}</span>
<span>备注说明{{ scope.row.refundReasonWapExplain }}</span>
@ -246,16 +181,12 @@
<span class="acea-row">
退款凭证
<template v-if="scope.row.refundReasonWapImg">
<div v-for="(item, index) in scope.row.refundReasonWapImg.split(',')"
:key="index"
class="demo-image__preview"
style="width: 35px; height: auto; display: inline-block">
<el-image :src="item"
:preview-src-list="[item]" />
<div v-for="(item, index) in scope.row.refundReasonWapImg.split(',')" :key="index"
class="demo-image__preview" style="width: 35px; height: auto; display: inline-block">
<el-image :src="item" :preview-src-list="[item]" />
</div>
</template>
<span v-else
style="display: inline-block"></span>
<span v-else style="display: inline-block"></span>
</span>
</div>
</el-popover>
@ -265,31 +196,23 @@
</div>
</template>
</el-table-column>
<el-table-column prop="createTime"
label="下单时间"
min-width="150"
v-if="checkedCities.includes('下单时间')" />
<el-table-column label="操作"
min-width="250"
fixed="right"
align="center"
:render-header="renderHeader">
<el-table-column prop="createTime" label="下单时间" min-width="150" v-if="checkedCities.includes('下单时间')" />
<el-table-column label="操作" min-width="250" fixed="right" align="center" :render-header="renderHeader">
<template slot-scope="scope">
<el-button size="small"
@click.native="onOrderDetails(scope.row.orderId)">订单详情</el-button>
<el-button size="small" @click.native="onOrderDetails(scope.row.orderId)">订单详情</el-button>
<!-- scope.row.uid -->
<el-button size="small" @click.native="getuserinfo(scope.row.uid)">用户信息</el-button>
<el-button size="small"
style="margin-top: 10px;" v-if="scope.row.orderType == '[分期订单]' && scope.row.statusStr.key === 'audit' && checkPermi(['admin:order:audit'])" @click="onAudit(scope.row)">审核订单</el-button>
<el-button size="small" @click="sendOrder(scope.row)" v-if="
scope.row.statusStr.key === 'notShipped' &&
<el-button size="small" style="margin-top: 10px;"
v-if="scope.row.orderType == '[分期订单]' && scope.row.statusStr.key === 'audit' && checkPermi(['admin:order:audit'])"
@click="onAudit(scope.row)">审核订单</el-button>
<el-button size="small" @click="sendOrder(scope.row)" v-if="scope.row.statusStr.key === 'notShipped' &&
scope.row.refundStatus === 0 &&
checkPermi(['admin:order:send'])
">发货</el-button>
<el-button size="small"
style="margin-top: 10px;" @click="showht(scope.row.contractUrl)" v-show="scope.row.statusStr.value!='待审核'&&scope.row.statusStr.value!='待签约'">查看合同</el-button>
<el-button size="small"
style="margin-top: 10px;" @click.native="handleDelete(scope.row, scope.$index)">取消订单</el-button>
<el-button size="small" style="margin-top: 10px;" @click="showht(scope.row.contractUrl)"
v-show="scope.row.statusStr.value != '待审核' && scope.row.statusStr.value != '待签约'">查看合同</el-button>
<el-button size="small" style="margin-top: 10px;"
@click.native="handleDelete(scope.row, scope.$index)">取消订单</el-button>
<!-- <el-button
v-if="scope.row.paid === false && !scope.row.isAlterPrice && checkPermi(['admin:order:update:price'])"
type="text"
@ -352,14 +275,12 @@
@click="onWriteOff(scope.row)"
>立即核销</el-button
> -->
<el-dropdown trigger="click"
v-show="false">
<el-dropdown trigger="click" v-show="false">
<span class="el-dropdown-link"> 更多<i class="el-icon-arrow-down el-icon--right" /> </span>
<el-dropdown-menu slot="dropdown">
<el-dropdown-item @click.native="onOrderDetails(scope.row.orderId)"
v-if="checkPermi(['admin:order:info'])">订单详情</el-dropdown-item>
<el-dropdown-item @click.native="onInstallmentBills(scope.row.id)"
v-if="checkPermi(['admin:order:info'])"
<el-dropdown-item @click.native="onInstallmentBills(scope.row.id)" v-if="checkPermi(['admin:order:info'])"
v-show="scope.row.orderType == '[分期订单]' && scope.row.statusStr.key != 'audit' && scope.row.statusStr.key != 'auditReject'">查看账单</el-dropdown-item>
<el-dropdown-item @click.native="onOrderLog(scope.row.orderId)"
v-if="checkPermi(['admin:order:status:list'])">订单记录</el-dropdown-item>
@ -380,173 +301,85 @@
</el-table-column>
</el-table>
<div class="block">
<el-pagination :page-sizes="[20, 40, 60, 80]"
:page-size="tableFrom.limit"
:current-page="tableFrom.page"
layout="total, sizes, prev, pager, next, jumper"
:total="tableData.total"
@size-change="handleSizeChange"
<el-pagination :page-sizes="[20, 40, 60, 80]" :page-size="tableFrom.limit" :current-page="tableFrom.page"
layout="total, sizes, prev, pager, next, jumper" :total="tableData.total" @size-change="handleSizeChange"
@current-change="pageChange" />
</div>
</el-card>
<div class="card_abs"
v-show="card_select_show">
<div class="card_abs" v-show="card_select_show">
<template>
<div class="cell_ht">
<el-checkbox :indeterminate="isIndeterminate"
v-model="checkAll"
@change="handleCheckAllChange">全选</el-checkbox>
<el-button type="text"
@click="checkSave()">保存</el-button>
<el-checkbox :indeterminate="isIndeterminate" v-model="checkAll" @change="handleCheckAllChange">全选</el-checkbox>
<el-button type="text" @click="checkSave()">保存</el-button>
</div>
<el-checkbox-group v-model="checkedCities"
@change="handleCheckedCitiesChange">
<el-checkbox v-for="item in columnData"
:label="item"
:key="item"
class="check_cell">{{ item }}</el-checkbox>
<el-checkbox-group v-model="checkedCities" @change="handleCheckedCitiesChange">
<el-checkbox v-for="item in columnData" :label="item" :key="item" class="check_cell">{{ item }}</el-checkbox>
</el-checkbox-group>
</template>
</div>
<!--编辑-->
<el-dialog title="编辑订单"
:visible.sync="dialogVisible"
width="500px"
:before-close="handleClose">
<zb-parser v-if="dialogVisible"
:form-id="104"
:is-create="isCreate"
:edit-data="editData"
@submit="handlerSubmit"
<el-dialog title="编辑订单" :visible.sync="dialogVisible" width="500px" :before-close="handleClose">
<zb-parser v-if="dialogVisible" :form-id="104" :is-create="isCreate" :edit-data="editData" @submit="handlerSubmit"
@resetForm="resetForm" />
</el-dialog>
<!--记录-->
<el-dialog title="操作记录"
:visible.sync="dialogVisibleJI"
width="700px">
<el-table v-loading="LogLoading"
border
:data="tableDataLog.data"
style="width: 100%">
<el-table-column prop="oid"
align="center"
label="ID"
min-width="80" />
<el-table-column prop="changeMessage"
label="操作记录"
align="center"
min-width="280" />
<el-table-column prop="createTime"
label="操作时间"
align="center"
min-width="280" />
<el-dialog title="操作记录" :visible.sync="dialogVisibleJI" width="700px">
<el-table v-loading="LogLoading" border :data="tableDataLog.data" style="width: 100%">
<el-table-column prop="oid" align="center" label="ID" min-width="80" />
<el-table-column prop="changeMessage" label="操作记录" align="center" min-width="280" />
<el-table-column prop="createTime" label="操作时间" align="center" min-width="280" />
</el-table>
<div class="block">
<el-pagination :page-sizes="[10, 20, 30, 40]"
:page-size="tableFromLog.limit"
:current-page="tableFromLog.page"
layout="total, sizes, prev, pager, next, jumper"
:total="tableDataLog.total"
@size-change="handleSizeChangeLog"
<el-pagination :page-sizes="[10, 20, 30, 40]" :page-size="tableFromLog.limit" :current-page="tableFromLog.page"
layout="total, sizes, prev, pager, next, jumper" :total="tableDataLog.total" @size-change="handleSizeChangeLog"
@current-change="pageChangeLog" />
</div>
</el-dialog>
<!--账单记录-->
<el-dialog title="账单记录"
:visible.sync="dialogVisibleInstallment"
width="1200px">
<el-table v-loading="InstallmentLoading"
border
:data="tableDataInstallment.data"
style="width: 100%">
<el-table-column prop="id"
align="center"
label="ID"
min-width="80" />
<el-table-column prop="uid"
align="center"
label="客户"
min-width="80" />
<el-table-column prop="repaymentAmount"
align="center"
label="还款金额"
min-width="80" />
<el-table-column prop="installmentNumber"
align="center"
label="第几期"
min-width="80" />
<el-table-column prop="repaymentDeadline"
align="center"
label="还款时间"
min-width="280" />
<el-table-column prop="repaymentStatus"
align="center"
label="还款状态"
min-width="80" />
<el-table-column prop="paymentMethod"
align="center"
label="还款方式"
min-width="80" />
<el-table-column prop="createTime"
label="创建时间"
align="center"
min-width="280" />
<el-dialog title="账单记录" :visible.sync="dialogVisibleInstallment" width="1200px">
<el-table v-loading="InstallmentLoading" border :data="tableDataInstallment.data" style="width: 100%">
<el-table-column prop="id" align="center" label="ID" min-width="80" />
<el-table-column prop="uid" align="center" label="客户" min-width="80" />
<el-table-column prop="repaymentAmount" align="center" label="还款金额" min-width="80" />
<el-table-column prop="installmentNumber" align="center" label="第几期" min-width="80" />
<el-table-column prop="repaymentDeadline" align="center" label="还款时间" min-width="280" />
<el-table-column prop="repaymentStatus" align="center" label="还款状态" min-width="80" />
<el-table-column prop="paymentMethod" align="center" label="还款方式" min-width="80" />
<el-table-column prop="createTime" label="创建时间" align="center" min-width="280" />
</el-table>
<div class="block">
<el-pagination :page-sizes="[10, 20, 30, 40]"
:page-size="tableFromInstall.limit"
:current-page="tableFromInstall.page"
layout="total, sizes, prev, pager, next, jumper"
:total="tableDataInstallment.total"
@size-change="handleSizeChangeLog"
@current-change="pageChangeLog" />
<el-pagination :page-sizes="[10, 20, 30, 40]" :page-size="tableFromInstall.limit"
:current-page="tableFromInstall.page" layout="total, sizes, prev, pager, next, jumper"
:total="tableDataInstallment.total" @size-change="handleSizeChangeLog" @current-change="pageChangeLog" />
</div>
</el-dialog>
<!--详情-->
<details-from ref="orderDetail"
:orderId="orderId" />
<details-from ref="orderDetail" :orderId="orderId" />
<!--审核-->
<el-dialog title="审核"
v-if="AuditVisible"
:visible.sync="AuditVisible"
width="500px"
:before-close="AudithandleClose">
<zb-parser :form-id="145"
:is-create="1"
:edit-data="AuditData"
@submit="AudithandlerSubmit"
<el-dialog title="审核" v-if="AuditVisible" :visible.sync="AuditVisible" width="500px" :before-close="AudithandleClose">
<zb-parser :form-id="145" :is-create="1" :edit-data="AuditData" @submit="AudithandlerSubmit"
@resetForm="resetFormAudithand" />
</el-dialog>
<el-dialog title="合同详情"
:visible.sync="htVisible"
width="1000px"
:before-close="htClose">
<el-dialog title="合同详情" :visible.sync="htVisible" width="1000px" :before-close="htClose">
<div class="pdfCom">
<iframe :src="pdfUrl" width="100%" height="600px" frameborder="0" sandbox="allow-same-origin allow-scripts allow-forms"></iframe>
<iframe :src="pdfUrl" width="100%" height="600px" frameborder="0"
sandbox="allow-same-origin allow-scripts allow-forms"></iframe>
<!-- <canvas :id="'canvas'+item" v-for="item in pdfHTML" :key="item" /> -->
</div>
</el-dialog>
<el-dialog title=""
:visible.sync="dialogVisibles"
width="1388px"
:before-close="handleClose">
<el-dialog title="" :visible.sync="dialogVisibles" width="1388px" :before-close="handleClose">
<div class="detailbox" v-if="dialogVisibles">
<div class="titbox">
<div class="tit"
v-for="(item, index) in detaillist"
:key="index"
:class="detailindex == index ? 'act' : ''"
<div class="tit" v-for="(item, index) in detaillist" :key="index" :class="detailindex == index ? 'act' : ''"
@click="changeindex(index)">{{ item.tit }}</div>
</div>
<div class="info_box"
v-show="detailindex == 0">
<div class="info_box" v-show="detailindex == 0">
<div class="info">
<div class="infoli">用户姓名{{ userinfo.detailinfo.realName }}</div>
<div class="infoli">手机号{{ userinfo.detailinfo.phoneNumber }}</div>
@ -579,17 +412,13 @@
</div> -->
<div class="infoimg_box" style="margin-right: 200px;">
<div class="noimg" v-show="userinfo.detailinfo.idCardFrontPhoto == null">身份证正面</div>
<img :src="userinfo.detailinfo.idCardFrontPhoto"
alt=""
v-show="userinfo.detailinfo.idCardFrontPhoto!=''">
<img :src="userinfo.detailinfo.idCardFrontPhoto" alt="" v-show="userinfo.detailinfo.idCardFrontPhoto != ''">
<div class="text">身份证正面</div>
</div>
<div class="infoimg_box">
<div class="noimg" v-show="userinfo.detailinfo.idCardBackPhoto == null">身份证反面</div>
<img :src="userinfo.detailinfo.idCardBackPhoto"
alt=""
v-show="userinfo.detailinfo.idCardBackPhoto!=''">
<img :src="userinfo.detailinfo.idCardBackPhoto" alt="" v-show="userinfo.detailinfo.idCardBackPhoto != ''">
<div class="text">身份证反面</div>
</div>
</div>
@ -621,16 +450,12 @@
<!-- <div class="infoli">福建省 福鼎市</div> -->
</div>
</div>
<div class="fkbox"
v-if="detailindex == 3 && userinfo.tlxinfo && userinfo.zwxinfo" >
<div class="titbox"
style="justify-content: center;margin-top: 10px;">
<div class="tit"
:class="fkxindex == 0 ? 'act' : ''" @click="fkxindex=0">
<div class="fkbox" v-if="detailindex == 3 && userinfo.tlxinfo && userinfo.zwxinfo">
<div class="titbox" style="justify-content: center;margin-top: 10px;">
<div class="tit" :class="fkxindex == 0 ? 'act' : ''" @click="fkxindex = 0">
天狼星报告
</div>
<div class="tit"
:class="fkxindex == 1 ? 'act' : ''" @click="fkxindex=1">
<div class="tit" :class="fkxindex == 1 ? 'act' : ''" @click="fkxindex = 1">
紫微星报告
</div>
</div>
@ -652,72 +477,82 @@
</div>
</div>
<div class="zdbox" v-if="detailindex!=0 && userinfo && detailindex!=3 " style="width: 1500px;">
<div class="zdbox" v-if="detailindex != 0 && userinfo && detailindex != 3 && detailindex != 9" style="width: 1500px;">
<el-col :span="20">
<el-table :data="tableDatas.data" style="width: 1200px;" v-loading="loading" max-height="700">
<el-table-column
:prop="item.key"
:label="item.title"
width="item.minWidth"
:show-overflow-tooltip="true"
v-for="(item, index) in columns"
:key="index"
/>
<el-table-column :prop="item.key" :label="item.title" width="item.minWidth" :show-overflow-tooltip="true"
v-for="(item, index) in columns" :key="index" />
</el-table>
<div class="block">
<el-pagination
:page-sizes="[6, 12, 18, 24]"
:page-size="tableFroms.limit"
:current-page="tableFroms.page"
layout="total, sizes, prev, pager, next, jumper"
:total="tableDatas.total"
@size-change="handleSizeChanges"
@current-change="pageChanges"
/>
<el-pagination :page-sizes="[6, 12, 18, 24]" :page-size="tableFroms.limit" :current-page="tableFroms.page"
layout="total, sizes, prev, pager, next, jumper" :total="tableDatas.total"
@size-change="handleSizeChanges" @current-change="pageChanges" />
</div>
</el-col>
</div>
<div class="remake" v-if="detailindex == 9">
<el-popover placement="right" width="400" trigger="manual" v-model="visibl">
<el-input
type="textarea"
:rows="2"
placeholder="请输入内容"
v-model="adremake">
</el-input>
<el-button type="text" size="small" class="mr10" @click="addremark()">确认添加</el-button>
<el-button type="text" size="small" class="mr10" @click="visibl=false">取消</el-button>
<el-button type="text" size="small" slot="reference" class="mr10" @click="visibl=!visibl">添加备注</el-button>
</el-popover>
<el-table :data="remakeData.data" style="width: 100%" size="mini">
<el-table-column prop="updateTime" label="备注时间" min-width="50" align="center" />
<el-table-column prop="remark" label="备注内容" min-width="50" align="center" />
<el-table-column label="操作" min-width="120" fixed="right" align="center">
<template slot-scope="scope">
<el-button type="text" size="small" @click="delremark(scope.row)" class="mr10"
v-hasPermi="['admin:channel:update']">删除备注</el-button>
<el-popover placement="right" width="400" trigger="manual" v-model="visible">
<el-input
type="textarea"
:rows="2"
placeholder="请输入内容"
v-model="upremake">
</el-input>
<el-button type="text" size="small" class="mr10" @click="upRemake(scope.row)">确认修改</el-button>
<el-button type="text" size="small" class="mr10" @click="visible=false">取消</el-button>
<el-button type="text" size="small" slot="reference" class="mr10" @click="visible=!visible">修改备注</el-button>
</el-popover>
<!-- <el-switch v-model="scope.row.status" :active-value="true" :inactive-value="false" active-text="打开"
inactive-text="关闭" @change="onchangeIsShow(scope.row)" /> -->
</template>
</el-table-column>
<!-- <el-table-column prop="installmentNumber" label="期数" min-width="50" align="center"/> -->
</el-table>
</div>
</div>
</el-dialog>
<!-- 发送货 -->
<order-send ref="send"
:orderId="orderId"
@submitFail="getList"
:expressListNormal="expressListNormal"
:expressListElec="expressListElec"
:orderDetail="orderDetail"></order-send>
<order-send ref="send" :orderId="orderId" @submitFail="getList" :expressListNormal="expressListNormal"
:expressListElec="expressListElec" :orderDetail="orderDetail"></order-send>
<!-- 发送货视频号商品 -->
<order-video-send ref="videoSend"
:orderId="orderId"
@submitFail="getList"></order-video-send>
<order-video-send ref="videoSend" :orderId="orderId" @submitFail="getList"></order-video-send>
<!--拒绝退款-->
<el-dialog title="拒绝退款原因"
v-if="RefuseVisible"
:visible.sync="RefuseVisible"
width="500px"
<el-dialog title="拒绝退款原因" v-if="RefuseVisible" :visible.sync="RefuseVisible" width="500px"
:before-close="RefusehandleClose">
<zb-parser :form-id="106"
:is-create="1"
:edit-data="RefuseData"
@submit="RefusehandlerSubmit"
<zb-parser :form-id="106" :is-create="1" :edit-data="RefuseData" @submit="RefusehandlerSubmit"
@resetForm="resetFormRefusehand" />
</el-dialog>
<!--立即退款-->
<el-dialog title="退款处理"
:visible.sync="refundVisible"
width="500px"
:before-close="refundhandleClose">
<zb-parser :form-id="107"
:is-create="1"
:edit-data="refundData"
@submit="refundhandlerSubmit"
v-if="refundVisible"
<el-dialog title="退款处理" :visible.sync="refundVisible" width="500px" :before-close="refundhandleClose">
<zb-parser :form-id="107" :is-create="1" :edit-data="refundData" @submit="refundhandlerSubmit" v-if="refundVisible"
@resetForm="resetFormRefundhandler" />
</el-dialog>
</div>
@ -741,7 +576,7 @@ import {
orderDetailApi, orderAuditApi
} from '@/api/order'
import {
getIdentityInfos,getZwxReportCache,getTlxReportCache,infobyconditionApi,getZwxReport,getTlxReport
getIdentityInfos, getZwxReportCache, getTlxReportCache, infobyconditionApi, getZwxReport, getTlxReport, remarkList,remarkUpdata,addRemark,delRemark
} from '@/api/user'
import zbParser from '@/components/FormGenerator/components/parser/ZBParser';
import detailsFrom from './orderDetail';
@ -780,12 +615,15 @@ export default {
{ tit: '用户基础信息 ' },
{ tit: ' 订单记录 ' },
{ tit: '账单列表 ' },
{ tit: '分险报告 ' },
{ tit: '风控报告 ' },
{ tit: '余额变动 ' },
{ tit: '好友关系 ' },
{ tit: '积分明细 ' },
{ tit: '签到记录 ' },
{ tit: '持有优惠券 ' },
{ tit: '备注' },
],
htVisible: false,
@ -795,8 +633,10 @@ export default {
type: '0',
userId: '',
},
upremake:'',
adremake:'',
visible:false,
visibl:false,
dialogVisibles: false,
options: [
@ -864,10 +704,20 @@ export default {
limit: 20,
type: 3,
},
remarkFrom: {
page: 1,
limit: 6,
type: '0',
uid: ''
},
tableDatas: {
data: [],
total: 0,
},
remakeData: {
data: [],
total: 0,
},
columns: [],
Visible: false,
orderChartType: {},
@ -930,6 +780,37 @@ export default {
// this.init(obj);
// this.htVisible=true
// },
async upRemake(row){
console.log(this.upremake,'idididid');
let data ={
remark:this.upremake,
}
let id =row.id
await remarkUpdata(id,data).then((res) => {
this.upremake=''
this.visible=false
this.getremake()
});
},
delremark(row){
delRemark(row.id).then((res) => {
this.getremake()
});
},
addremark(){
let data ={
remark:this.adremake,
uid:this.uid
}
addRemark(data).then((res) => {
this.adremake=''
this.visibl=false
this.getremake()
});
},
htClose() {
this.htVisible = false
},
@ -1032,6 +913,7 @@ export default {
console.log(this.userinfo, 'detailinfodetailinfodetailinfo');
},
changeindex(index) {
console.log(index, 'indexindexindex');
this.detailindex = index
if (index == 2) {
this.tableFroms.type = '6'
@ -1054,8 +936,22 @@ export default {
} else if (index == 8) {
this.tableFroms.type = '3'
this.getInfos()
} else if (index == 9) {
this.getremake()
}
},
getremake() {
this.remarkFrom.uid = this.uid
remarkList(this.remarkFrom)
.then((res) => {
this.remakeData.data = res.list;
this.remakeData.total = res.total;
})
.catch(() => {
});
},
integral() {
this.loading = true;
integralListApi({ limit: this.tableFroms.limit, page: this.tableFroms.page }, { uid: this.uid })
@ -1714,12 +1610,14 @@ export default {
.pdfCom::-webkit-scrollbar-thumb:hover {
background-color: #EAF4FF;
}
.pdfCom {
margin: 20px auto;
max-height: 600px;
overflow-x: hidden;
overflow-y: auto;
}
.detailbox::-webkit-scrollbar {
width: 10px;
}
@ -2046,4 +1944,5 @@ export default {
.el-form-item__content {
float: right;
}</style>
}
</style>