|
@@ -8,11 +8,16 @@
|
|
@init="init"
|
|
@init="init"
|
|
/>
|
|
/>
|
|
<div style="margin-bottom: 12px">
|
|
<div style="margin-bottom: 12px">
|
|
- <el-button type="primary" size="small">成本设置</el-button>
|
|
|
|
|
|
+ <el-button type="primary" size="small" @click="editCost"
|
|
|
|
+ >成本设置</el-button
|
|
|
|
+ >
|
|
|
|
+ <el-button type="primary" size="small" @click="completeOrder(false)"
|
|
|
|
+ >完单确认</el-button
|
|
|
|
+ >
|
|
<el-button type="primary" size="small" @click="editRemarks(1)"
|
|
<el-button type="primary" size="small" @click="editRemarks(1)"
|
|
>修改备注</el-button
|
|
>修改备注</el-button
|
|
>
|
|
>
|
|
- <el-button size="small">导出excel</el-button>
|
|
|
|
|
|
+ <el-button size="small" @click="exportExcel()">导出excel</el-button>
|
|
</div>
|
|
</div>
|
|
<div class="dis_flex_order_li">
|
|
<div class="dis_flex_order_li">
|
|
<div class="list" v-for="(item, index) in ShowTabList" :key="index">
|
|
<div class="list" v-for="(item, index) in ShowTabList" :key="index">
|
|
@@ -38,11 +43,13 @@
|
|
:loading="loading"
|
|
:loading="loading"
|
|
>
|
|
>
|
|
<template slot="orderInfo" slot-scope="props">
|
|
<template slot="orderInfo" slot-scope="props">
|
|
- <div>机构名称:{{ props.scope.row["createOrg"] }}</div>
|
|
|
|
- <div>业务员:{{ props.scope.row["createNo"] }}</div>
|
|
|
|
- <div>业务号:{{ props.scope.row["createSysUserId"] }}</div>
|
|
|
|
- <div>订单来源:{{ props.scope.row["orderFrom"] }}</div>
|
|
|
|
- <div>订单日期:{{ props.scope.row["orderCost"] }}</div>
|
|
|
|
|
|
+ <div>机构名称:{{ props.scope.row["tenantName"] }}</div>
|
|
|
|
+ <div>业务员:{{ props.scope.row["createUsername"] }}</div>
|
|
|
|
+ <div>业务号:{{ props.scope.row["createNo"] }}</div>
|
|
|
|
+ <div>订单来源:{{ props.scope.row["orderOrg"] }}</div>
|
|
|
|
+ <div>
|
|
|
|
+ 订单日期:{{ $methodsTools.onlyForma(props.scope.row["buyTime"]) }}
|
|
|
|
+ </div>
|
|
<div>订单号:{{ props.scope.row["orderSn"] }}</div>
|
|
<div>订单号:{{ props.scope.row["orderSn"] }}</div>
|
|
</template>
|
|
</template>
|
|
<template slot="orderPrice" slot-scope="props">
|
|
<template slot="orderPrice" slot-scope="props">
|
|
@@ -54,7 +61,7 @@
|
|
<div style="color: red">
|
|
<div style="color: red">
|
|
(预计收款时间){{ props.scope.row["predictReceiveTime"] }}
|
|
(预计收款时间){{ props.scope.row["predictReceiveTime"] }}
|
|
</div>
|
|
</div>
|
|
- <div>实际账款:1234.00</div>
|
|
|
|
|
|
+ <div>实际账款:{{ props.scope.row["orderPractical"] }}</div>
|
|
</template>
|
|
</template>
|
|
<template slot="inon" slot-scope="props">
|
|
<template slot="inon" slot-scope="props">
|
|
<div>成本(元):{{ props.scope.row["orderCost"] }}</div>
|
|
<div>成本(元):{{ props.scope.row["orderCost"] }}</div>
|
|
@@ -66,7 +73,9 @@
|
|
<template slot="statusRoles" slot-scope="props">
|
|
<template slot="statusRoles" slot-scope="props">
|
|
<div>
|
|
<div>
|
|
{{ refundStatus(props.scope.row["refundStatus"])
|
|
{{ refundStatus(props.scope.row["refundStatus"])
|
|
- }}<span style="color: red">(总经理)</span>
|
|
|
|
|
|
+ }}<span style="color: red" v-if="props.scope.row['refundName']"
|
|
|
|
+ >({{ props.scope.row["refundName"] }})</span
|
|
|
|
+ >
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
<template slot="type" slot-scope="props">
|
|
<template slot="type" slot-scope="props">
|
|
@@ -75,14 +84,38 @@
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
<template slot="btn" slot-scope="props">
|
|
<template slot="btn" slot-scope="props">
|
|
- <el-button type="text">查看详情</el-button>
|
|
|
|
- <el-button type="text">成本设置</el-button>
|
|
|
|
- <el-button type="text">订单审核</el-button>
|
|
|
|
- <el-button type="text" @click="handelClick">退款审核</el-button>
|
|
|
|
|
|
+ <el-button type="text" @click="openDialog(props.scope.row)"
|
|
|
|
+ >查看详情</el-button
|
|
|
|
+ >
|
|
|
|
+ <el-button type="text" @click="handelClickCost(props.scope.row)"
|
|
|
|
+ >成本设置</el-button
|
|
|
|
+ >
|
|
|
|
+ <el-button
|
|
|
|
+ type="text"
|
|
|
|
+ @click="openDialog(props.scope.row, 1)"
|
|
|
|
+ :disabled="
|
|
|
|
+ props.scope.row.orderFrom !== 3 || props.scope.row.checkStatus === 3
|
|
|
|
+ "
|
|
|
|
+ >订单审核</el-button
|
|
|
|
+ >
|
|
|
|
+ <el-button
|
|
|
|
+ type="text"
|
|
|
|
+ @click="handelClick(props.scope.row)"
|
|
|
|
+ :disabled="
|
|
|
|
+ props.scope.row.refundStatus !== 0 &&
|
|
|
|
+ props.scope.row.refundStatus !== 2
|
|
|
|
+ "
|
|
|
|
+ >退款审核</el-button
|
|
|
|
+ >
|
|
<el-button type="text" @click="editRemarks(props.scope.row)"
|
|
<el-button type="text" @click="editRemarks(props.scope.row)"
|
|
>修改备注</el-button
|
|
>修改备注</el-button
|
|
>
|
|
>
|
|
- <el-button type="text">转账凭证</el-button>
|
|
|
|
|
|
+ <el-button type="text" @click="seePZ(props.scope.row.attachmentList)"
|
|
|
|
+ >转账凭证</el-button
|
|
|
|
+ >
|
|
|
|
+ <el-button type="text" @click="completeOrder(props.scope.row.orderSn)"
|
|
|
|
+ >完单确认</el-button
|
|
|
|
+ >
|
|
</template>
|
|
</template>
|
|
</table-list>
|
|
</table-list>
|
|
<pagination
|
|
<pagination
|
|
@@ -91,29 +124,68 @@
|
|
:currentPage.sync="formData.pageNum"
|
|
:currentPage.sync="formData.pageNum"
|
|
@search="search"
|
|
@search="search"
|
|
/>
|
|
/>
|
|
|
|
+ <el-image-viewer
|
|
|
|
+ v-if="showViewer"
|
|
|
|
+ :on-close="
|
|
|
|
+ () => {
|
|
|
|
+ showViewer = false;
|
|
|
|
+ }
|
|
|
|
+ "
|
|
|
|
+ :url-list="imgList"
|
|
|
|
+ >
|
|
|
|
+ </el-image-viewer>
|
|
<dislog-set
|
|
<dislog-set
|
|
:dialogVisible.sync="dialogVisible"
|
|
:dialogVisible.sync="dialogVisible"
|
|
@search="search"
|
|
@search="search"
|
|
|
|
+ :type="2"
|
|
|
|
+ :orderSn="orderSn"
|
|
></dislog-set>
|
|
></dislog-set>
|
|
<remarks
|
|
<remarks
|
|
:dialogVisible.sync="remarksVisible"
|
|
:dialogVisible.sync="remarksVisible"
|
|
@search="search"
|
|
@search="search"
|
|
:options="remarksOptions"
|
|
:options="remarksOptions"
|
|
></remarks>
|
|
></remarks>
|
|
|
|
+ <dislogOrderDetails
|
|
|
|
+ :dialogVisible.sync="orderDialogVisible"
|
|
|
|
+ :orderSn="orderSn"
|
|
|
|
+ :orderFrom="orderFrom"
|
|
|
|
+ :ShowStatus="ShowStatus"
|
|
|
|
+ ></dislogOrderDetails>
|
|
|
|
+ <dislog-set-cost
|
|
|
|
+ :dialogVisible.sync="dialogVisiblecost"
|
|
|
|
+ :tpId="tpId"
|
|
|
|
+ :type="type"
|
|
|
|
+ @search="search"
|
|
|
|
+ ></dislog-set-cost>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
|
+import { exportFn } from "@/utils/index.js";
|
|
|
|
+import dislogSetCost from "../cost/dislogSet.vue";
|
|
import dislogSet from "@/components/audit/dislogSet.vue";
|
|
import dislogSet from "@/components/audit/dislogSet.vue";
|
|
import remarks from "../components/remarks.vue";
|
|
import remarks from "../components/remarks.vue";
|
|
import searchBoxNew from "@/components/searchBoxNew";
|
|
import searchBoxNew from "@/components/searchBoxNew";
|
|
import tableList from "@/components/tableList";
|
|
import tableList from "@/components/tableList";
|
|
import pagination from "@/components/pagination";
|
|
import pagination from "@/components/pagination";
|
|
|
|
+import dislogOrderDetails from "../components/dislogOrderDetails.vue";
|
|
export default {
|
|
export default {
|
|
name: "orderManageList",
|
|
name: "orderManageList",
|
|
- components: { searchBoxNew, tableList, pagination, dislogSet, remarks },
|
|
|
|
|
|
+ components: {
|
|
|
|
+ searchBoxNew,
|
|
|
|
+ tableList,
|
|
|
|
+ pagination,
|
|
|
|
+ dislogSet,
|
|
|
|
+ remarks,
|
|
|
|
+ dislogOrderDetails,
|
|
|
|
+ dislogSetCost,
|
|
|
|
+ "el-image-viewer": () =>
|
|
|
|
+ import("element-ui/packages/image/src/image-viewer"),
|
|
|
|
+ },
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
|
|
+ showViewer: false,
|
|
|
|
+ imgList: [],
|
|
ShowTabList: [
|
|
ShowTabList: [
|
|
{
|
|
{
|
|
label: "盈亏",
|
|
label: "盈亏",
|
|
@@ -198,79 +270,87 @@ export default {
|
|
//搜索
|
|
//搜索
|
|
formList: [
|
|
formList: [
|
|
{
|
|
{
|
|
- prop: "name",
|
|
|
|
|
|
+ prop: "roleId",
|
|
placeholder: "角色分类",
|
|
placeholder: "角色分类",
|
|
- scope: "select",
|
|
|
|
- options: [
|
|
|
|
- { label: "会计", value: 1 },
|
|
|
|
- { label: "财务", value: 2 },
|
|
|
|
- { label: "总经理", value: 3 },
|
|
|
|
- { label: "出纳", value: 4 },
|
|
|
|
- ],
|
|
|
|
|
|
+ scope: "roleList",
|
|
},
|
|
},
|
|
|
|
+ // {
|
|
|
|
+ // prop: "businessFullName",
|
|
|
|
+ // placeholder: "业务分类",
|
|
|
|
+ // scope: "select",
|
|
|
|
+ // options: [
|
|
|
|
+ // { label: "学校业务", value: 1 },
|
|
|
|
+ // { label: "办证质询", value: 2 },
|
|
|
|
+ // ],
|
|
|
|
+ // },
|
|
{
|
|
{
|
|
- prop: "name",
|
|
|
|
- placeholder: "业务分类",
|
|
|
|
- scope: "select",
|
|
|
|
- options: [
|
|
|
|
- { label: "学校业务", value: 1 },
|
|
|
|
- { label: "办证质询", value: 2 },
|
|
|
|
- ],
|
|
|
|
|
|
+ prop: "educationTypeId",
|
|
|
|
+ placeholder: "教育类型",
|
|
|
|
+ scope: "educationType",
|
|
|
|
+ schemeName: true,
|
|
},
|
|
},
|
|
{
|
|
{
|
|
- prop: "name",
|
|
|
|
|
|
+ prop: "businessId",
|
|
|
|
+ placeholder: "业务层次",
|
|
|
|
+ scope: "businessLevel",
|
|
|
|
+ edu: "educationTypeId",
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ prop: "checkStatus",
|
|
placeholder: "审核状态",
|
|
placeholder: "审核状态",
|
|
scope: "select",
|
|
scope: "select",
|
|
options: [
|
|
options: [
|
|
- { label: "待审核", value: 1 },
|
|
|
|
- { label: "已通过", value: 2 },
|
|
|
|
- { label: "未通过", value: 3 },
|
|
|
|
- { label: "已撤销", value: 4 },
|
|
|
|
|
|
+ { label: "待审核", value: 0 },
|
|
|
|
+ { label: "已通过", value: 1 },
|
|
|
|
+ { label: "未通过", value: 2 },
|
|
|
|
+ { label: "已撤销", value: 3 },
|
|
],
|
|
],
|
|
},
|
|
},
|
|
{
|
|
{
|
|
- prop: "name",
|
|
|
|
|
|
+ prop: "refundStatusList",
|
|
placeholder: "退款状态",
|
|
placeholder: "退款状态",
|
|
scope: "select",
|
|
scope: "select",
|
|
options: [
|
|
options: [
|
|
- { label: "待审核", value: 1 },
|
|
|
|
- { label: "未通过", value: 2 },
|
|
|
|
- { label: "带退款", value: 3 },
|
|
|
|
- { label: "已完成", value: 4 },
|
|
|
|
|
|
+ { label: "待审核", value: 0 },
|
|
|
|
+ { label: "正常", value: 1 },
|
|
|
|
+ { label: "未退款", value: 2 },
|
|
|
|
+ { label: "已完成", value: 3 },
|
|
|
|
+ { label: "未通过", value: 4 },
|
|
],
|
|
],
|
|
},
|
|
},
|
|
{
|
|
{
|
|
- prop: "name",
|
|
|
|
|
|
+ prop: "creditStatus",
|
|
placeholder: "账款状态",
|
|
placeholder: "账款状态",
|
|
scope: "select",
|
|
scope: "select",
|
|
options: [
|
|
options: [
|
|
{ label: "已结清", value: 1 },
|
|
{ label: "已结清", value: 1 },
|
|
- { label: "未结清", value: 2 },
|
|
|
|
|
|
+ { label: "未结清", value: 0 },
|
|
],
|
|
],
|
|
},
|
|
},
|
|
{
|
|
{
|
|
- prop: "name",
|
|
|
|
|
|
+ prop: "invoiceStatus",
|
|
placeholder: "开票状态",
|
|
placeholder: "开票状态",
|
|
scope: "select",
|
|
scope: "select",
|
|
options: [
|
|
options: [
|
|
{ label: "已开票", value: 1 },
|
|
{ label: "已开票", value: 1 },
|
|
- { label: "未开票", value: 2 },
|
|
|
|
|
|
+ { label: "未开票", value: 0 },
|
|
],
|
|
],
|
|
},
|
|
},
|
|
{
|
|
{
|
|
placeholder: "时间",
|
|
placeholder: "时间",
|
|
- prop1: "validityStartTime",
|
|
|
|
- prop2: "validityEndTime",
|
|
|
|
|
|
+ prop1: "startTime",
|
|
|
|
+ prop2: "endTime",
|
|
placeholder1: "开始日期",
|
|
placeholder1: "开始日期",
|
|
placeholder2: "结束日期",
|
|
placeholder2: "结束日期",
|
|
scope: "moreDataPicker",
|
|
scope: "moreDataPicker",
|
|
|
|
+ Diszing: true,
|
|
},
|
|
},
|
|
{
|
|
{
|
|
- prop: "name",
|
|
|
|
- placeholder: "机构/订单号/业务号/下单企业",
|
|
|
|
|
|
+ prop: "orderSn",
|
|
|
|
+ placeholder: "订单号",
|
|
},
|
|
},
|
|
{
|
|
{
|
|
- prop: "name",
|
|
|
|
|
|
+ prop: "userCard",
|
|
placeholder: "身份号",
|
|
placeholder: "身份号",
|
|
},
|
|
},
|
|
],
|
|
],
|
|
@@ -304,6 +384,7 @@ export default {
|
|
{
|
|
{
|
|
label: "审核状态",
|
|
label: "审核状态",
|
|
prop: "checkStatus",
|
|
prop: "checkStatus",
|
|
|
|
+ scope: "isOptions",
|
|
hidden: true,
|
|
hidden: true,
|
|
options: [
|
|
options: [
|
|
{
|
|
{
|
|
@@ -333,7 +414,7 @@ export default {
|
|
},
|
|
},
|
|
{
|
|
{
|
|
label: "下单企业",
|
|
label: "下单企业",
|
|
- prop: "tenantName",
|
|
|
|
|
|
+ prop: "orderOrg",
|
|
hidden: true,
|
|
hidden: true,
|
|
},
|
|
},
|
|
{
|
|
{
|
|
@@ -369,9 +450,16 @@ export default {
|
|
total: 0, //一共多少条
|
|
total: 0, //一共多少条
|
|
dialogVisible: false,
|
|
dialogVisible: false,
|
|
remarksVisible: false,
|
|
remarksVisible: false,
|
|
|
|
+ orderDialogVisible: false,
|
|
id: "",
|
|
id: "",
|
|
statisticsData: {},
|
|
statisticsData: {},
|
|
remarksOptions: [],
|
|
remarksOptions: [],
|
|
|
|
+ orderSn: null,
|
|
|
|
+ orderFrom: null,
|
|
|
|
+ ShowStatus: false,
|
|
|
|
+ dialogVisiblecost: false,
|
|
|
|
+ tpId: "",
|
|
|
|
+ type: null,
|
|
};
|
|
};
|
|
},
|
|
},
|
|
created() {
|
|
created() {
|
|
@@ -404,6 +492,91 @@ export default {
|
|
}
|
|
}
|
|
return str;
|
|
return str;
|
|
},
|
|
},
|
|
|
|
+ exportExcel() {
|
|
|
|
+ if (this.$refs.tableList.allCheckData.length === 0) {
|
|
|
|
+ this.$message.error("请勾选数据");
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ this.$api
|
|
|
|
+ .systemtoporderexport({
|
|
|
|
+ orderSnList: this.$refs.tableList.allCheckData.map((i) => i.orderSn),
|
|
|
|
+ })
|
|
|
|
+ .then((res) => {
|
|
|
|
+ exportFn(res.msg, `导出数据`);
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ editCost() {
|
|
|
|
+ if (this.$refs.tableList.allCheckData.length === 0) {
|
|
|
|
+ this.$message.error("请勾选数据");
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ this.dialogVisiblecost = true;
|
|
|
|
+ this.type = 4;
|
|
|
|
+ this.tpId = this.$refs.tableList.allCheckData
|
|
|
|
+ .map((i) => i.orderSn)
|
|
|
|
+ .toString();
|
|
|
|
+ },
|
|
|
|
+ completeOrder(orderSn) {
|
|
|
|
+ let A = (status) => {
|
|
|
|
+ this.$api
|
|
|
|
+ .systemtoporderfinish({
|
|
|
|
+ finishStatus: status,
|
|
|
|
+ orderSnList: orderSn
|
|
|
|
+ ? [orderSn]
|
|
|
|
+ : this.$refs.tableList.allCheckData.map((i) => i.orderSn),
|
|
|
|
+ })
|
|
|
|
+ .then((res) => {
|
|
|
|
+ this.$message({
|
|
|
|
+ type: "success",
|
|
|
|
+ message: "操作成功!",
|
|
|
|
+ });
|
|
|
|
+ });
|
|
|
|
+ };
|
|
|
|
+ if (!orderSn && this.$refs.tableList.allCheckData.length === 0) {
|
|
|
|
+ this.$message.error("请勾选数据");
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ this.$confirm("确定已完单吗?", "提示", {
|
|
|
|
+ confirmButtonText: "确定完单",
|
|
|
|
+ cancelButtonText: "取消完单",
|
|
|
|
+ type: "warning",
|
|
|
|
+ distinguishCancelAndClose: true,
|
|
|
|
+ })
|
|
|
|
+ .then(() => {
|
|
|
|
+ A(1);
|
|
|
|
+ })
|
|
|
|
+ .catch((err) => {
|
|
|
|
+ if (err === "cancel") {
|
|
|
|
+ A(0);
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ handelClickCost(item) {
|
|
|
|
+ this.dialogVisiblecost = true;
|
|
|
|
+ this.type = 3;
|
|
|
|
+ this.tpId = item.orderSn;
|
|
|
|
+ },
|
|
|
|
+ openDialog(data, e) {
|
|
|
|
+ if (e === 1) {
|
|
|
|
+ this.ShowStatus = true;
|
|
|
|
+ } else {
|
|
|
|
+ this.ShowStatus = false;
|
|
|
|
+ }
|
|
|
|
+ this.orderSn = data.orderSn;
|
|
|
|
+ this.orderFrom = data.orderFrom;
|
|
|
|
+ this.orderDialogVisible = true;
|
|
|
|
+ },
|
|
|
|
+ seePZ(ary) {
|
|
|
|
+ if (ary?.length > 0) {
|
|
|
|
+ this.imgList = ary.map((item) => item.attachmentUrl);
|
|
|
|
+ this.showViewer = true;
|
|
|
|
+ } else {
|
|
|
|
+ this.$message.warning("暂无转账凭证");
|
|
|
|
+ this.imgList = [];
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ },
|
|
getStatistics() {
|
|
getStatistics() {
|
|
this.$api.systemtoporderstatistics().then((res) => {
|
|
this.$api.systemtoporderstatistics().then((res) => {
|
|
this.statisticsData = res.data || {};
|
|
this.statisticsData = res.data || {};
|
|
@@ -422,7 +595,8 @@ export default {
|
|
this.remarksVisible = true;
|
|
this.remarksVisible = true;
|
|
}
|
|
}
|
|
},
|
|
},
|
|
- handelClick() {
|
|
|
|
|
|
+ handelClick(data) {
|
|
|
|
+ this.orderSn = data.orderSn;
|
|
this.dialogVisible = true;
|
|
this.dialogVisible = true;
|
|
},
|
|
},
|
|
changeStatus(val) {
|
|
changeStatus(val) {
|
|
@@ -458,6 +632,10 @@ export default {
|
|
},
|
|
},
|
|
search(v) {
|
|
search(v) {
|
|
this.loading = true;
|
|
this.loading = true;
|
|
|
|
+ if (this.type === 4) {
|
|
|
|
+ this.$refs.tableList.clearMoreActive();
|
|
|
|
+ this.type = null;
|
|
|
|
+ }
|
|
if (v === 2) {
|
|
if (v === 2) {
|
|
this.formData = {
|
|
this.formData = {
|
|
pageSize: 10,
|
|
pageSize: 10,
|
|
@@ -465,12 +643,12 @@ export default {
|
|
};
|
|
};
|
|
}
|
|
}
|
|
var data = JSON.parse(JSON.stringify(this.formData));
|
|
var data = JSON.parse(JSON.stringify(this.formData));
|
|
- // if (this.formData.classStartTime) {
|
|
|
|
- // data.classStartTime = parseInt(data.classStartTime / 1000);
|
|
|
|
- // }
|
|
|
|
- // if (this.formData.classEndTime) {
|
|
|
|
- // data.classEndTime = parseInt(data.classEndTime / 1000);
|
|
|
|
- // }
|
|
|
|
|
|
+ if (this.formData.startTime) {
|
|
|
|
+ data.startTime = parseInt(data.startTime / 1000);
|
|
|
|
+ }
|
|
|
|
+ if (this.formData.endTime) {
|
|
|
|
+ data.endTime = parseInt(data.endTime / 1000);
|
|
|
|
+ }
|
|
this.$api
|
|
this.$api
|
|
.systemtoporderlist(data)
|
|
.systemtoporderlist(data)
|
|
.then((res) => {
|
|
.then((res) => {
|