新增同步相关功能界面
parent
9c40a7efe8
commit
93f9a72b45
@ -0,0 +1,34 @@
|
||||
import axios from "@/utils/request";
|
||||
|
||||
|
||||
export function filterLog(query) {
|
||||
return axios({
|
||||
url: "/spssync/download/basic/udiinfo/filter",
|
||||
method: "get",
|
||||
params: query
|
||||
});
|
||||
}
|
||||
|
||||
export function deleteLog(query) {
|
||||
return axios({
|
||||
url: "/spssync/download/basic/udiinfo/deleteByStatus",
|
||||
method: "post",
|
||||
data: query
|
||||
});
|
||||
}
|
||||
|
||||
export function findConfig(query) {
|
||||
return axios({
|
||||
url: "/system/param/syncData/config",
|
||||
method: "get",
|
||||
params: query
|
||||
});
|
||||
}
|
||||
|
||||
export function downloadNow(params) {
|
||||
return axios({
|
||||
url: "/spsync/download/now",
|
||||
method: "get",
|
||||
params: params
|
||||
});
|
||||
}
|
@ -0,0 +1,53 @@
|
||||
import axios from "@/utils/request";
|
||||
|
||||
export function filterLog(query) {
|
||||
return axios({
|
||||
url: "/spssync/basic/udiinfo/filter",
|
||||
method: "get",
|
||||
params: query
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
export function deleteLog(query) {
|
||||
return axios({
|
||||
url: "/spssync/basic/udiinfo/deleteByStatus",
|
||||
method: "post",
|
||||
data: query
|
||||
});
|
||||
}
|
||||
|
||||
export function createSchedule(query) {
|
||||
return axios({
|
||||
url: "/spssync/basic/schedule/create",
|
||||
method: "post",
|
||||
data: query
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
export function findConfig(query) {
|
||||
return axios({
|
||||
url: "/system/param/syncData/config",
|
||||
method: "get",
|
||||
params: query
|
||||
});
|
||||
}
|
||||
|
||||
export function updateConfig(query) {
|
||||
return axios({
|
||||
url: "/system/param/syncData/save",
|
||||
method: "post",
|
||||
data: query
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
export function testConnect(query) {
|
||||
return axios({
|
||||
url: "/spssync/basic/connect/test",
|
||||
method: "get",
|
||||
params: query
|
||||
});
|
||||
}
|
||||
|
@ -1,45 +0,0 @@
|
||||
import axios from "../../utils/request";
|
||||
|
||||
|
||||
export function filterLog(query) {
|
||||
return axios({
|
||||
url: "/spssync/basic/udiinfo/filter",
|
||||
method: "get",
|
||||
params: query
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
export function deleteLog(query) {
|
||||
return axios({
|
||||
url: "/spssync/basic/udiinfo/deleteByStatus",
|
||||
method: "post",
|
||||
data: query
|
||||
});
|
||||
}
|
||||
|
||||
export function createSchedule(query) {
|
||||
return axios({
|
||||
url: "/spssync/basic/schedule/create",
|
||||
method: "post",
|
||||
data: query
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
export function findConfig(query) {
|
||||
return axios({
|
||||
url: "/system/param/syncData/config",
|
||||
method: "get",
|
||||
params: query
|
||||
});
|
||||
}
|
||||
|
||||
export function updateConfig(query) {
|
||||
return axios({
|
||||
url: "/system/param/syncData/save",
|
||||
method: "post",
|
||||
data: query
|
||||
});
|
||||
}
|
||||
|
@ -0,0 +1,490 @@
|
||||
<template>
|
||||
<el-card>
|
||||
|
||||
<el-descriptions class="margin-top" title="数据同步设置" :column="1" :size="100" border>
|
||||
<template slot="extra">
|
||||
<el-button type="primary" size="small" @click="saveConfig()">保存</el-button>
|
||||
</template>
|
||||
<el-descriptions-item>
|
||||
<template slot="label">
|
||||
同步服务
|
||||
</template>
|
||||
<el-row :gutter="20" class="el-row" type="flex">
|
||||
<el-col :span="6" class="el-col">
|
||||
|
||||
<el-switch
|
||||
v-model="configQuery.downstreamEnable"
|
||||
active-text="是否启用数据同步">
|
||||
</el-switch>
|
||||
|
||||
</el-col>
|
||||
<el-col :span="14" class="el-col">
|
||||
<div>
|
||||
<span style="color: red;">说明: 修改同步参数时,请关闭数据同步服务 </span>
|
||||
</div>
|
||||
</el-col>
|
||||
|
||||
</el-row>
|
||||
</el-descriptions-item>
|
||||
|
||||
<el-descriptions-item>
|
||||
<template slot="label">
|
||||
地址设置
|
||||
</template>
|
||||
|
||||
<el-row :gutter="20" class="el-row" type="flex">
|
||||
|
||||
<el-col :span="20" class="el-col">
|
||||
<div>
|
||||
<span>服务地址: </span>
|
||||
<el-input
|
||||
style="width: 50%"
|
||||
size="small"
|
||||
v-model="configQuery.syncIp" :disabled="configQuery.downstreamEnable"
|
||||
splaceholder="请输入内容"
|
||||
></el-input>
|
||||
<el-button type="primary" size="small" @click="testConnect()" style="margin-left: 20px;"
|
||||
:disabled="configQuery.downstreamEnable"
|
||||
:loading="testLoading">测试连通
|
||||
</el-button>
|
||||
|
||||
</div>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
||||
</el-descriptions-item>
|
||||
</el-descriptions>
|
||||
<el-descriptions class="margin-top" title="上传至UDI自助平台基础数据" :column="1" :size="100" style="margin-top: 40px"
|
||||
border>
|
||||
|
||||
<el-descriptions-item>
|
||||
<template slot="label">
|
||||
参数设置
|
||||
</template>
|
||||
|
||||
<el-row :gutter="20" class="el-row" type="flex">
|
||||
|
||||
<el-col :span="20" class="el-col">
|
||||
<div>
|
||||
<span>数据上传时间间隔(单位:分钟): </span>
|
||||
<el-input
|
||||
style="width: 100px"
|
||||
size="small"
|
||||
type="number"
|
||||
v-model="configQuery.syncTime" :disabled="configQuery.downstreamEnable"
|
||||
splaceholder="请输入内容"
|
||||
></el-input>
|
||||
<span style="margin-left: 30px;">延时上传(单位:分钟): </span>
|
||||
<el-input
|
||||
style="width: 100px"
|
||||
size="small"
|
||||
type="number"
|
||||
v-model="configQuery.delaySyncTime" :disabled="configQuery.downstreamEnable"
|
||||
splaceholder="请输入内容"
|
||||
></el-input>
|
||||
|
||||
<span style="margin-left: 30px;">数据下载时间间隔(单位:分钟): </span>
|
||||
<el-input
|
||||
style="width: 100px"
|
||||
size="small"
|
||||
type="number"
|
||||
v-model="configQuery.syncDownloadTime" :disabled="configQuery.downstreamEnable"
|
||||
splaceholder="请输入内容"
|
||||
></el-input>
|
||||
</div>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
||||
</el-descriptions-item>
|
||||
|
||||
<el-descriptions-item>
|
||||
<template slot="label">
|
||||
运行参数
|
||||
</template>
|
||||
<el-checkbox v-model="configQuery.entrustAction" :disabled="configQuery.downstreamEnable">委托验收
|
||||
</el-checkbox>
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item>
|
||||
<template slot="label">
|
||||
单据类型
|
||||
</template>
|
||||
<el-checkbox v-model="configQuery.typeBus" :disabled="configQuery.downstreamEnable">业务单据类型</el-checkbox>
|
||||
<el-checkbox v-model="configQuery.typeScan" :disabled="configQuery.downstreamEnable">扫码单据类型
|
||||
</el-checkbox>
|
||||
<el-checkbox v-model="configQuery.typeThird" :disabled="configQuery.downstreamEnable">第三方单据类型
|
||||
</el-checkbox>
|
||||
</el-descriptions-item>
|
||||
|
||||
<el-descriptions-item>
|
||||
<template slot="label">
|
||||
基础信息
|
||||
</template>
|
||||
<el-checkbox v-model="configQuery.basicProducts" :disabled="configQuery.downstreamEnable">耗材字典
|
||||
</el-checkbox>
|
||||
<el-checkbox v-model="configQuery.basicCorp" :disabled="configQuery.downstreamEnable">往来单位字典
|
||||
</el-checkbox>
|
||||
<el-checkbox v-model="configQuery.basicInv" :disabled="configQuery.downstreamEnable">仓库字典</el-checkbox>
|
||||
<el-checkbox v-model="configQuery.sysUser" :disabled="configQuery.downstreamEnable">用户信息</el-checkbox>
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item>
|
||||
<template slot="label">
|
||||
第三方基础信息
|
||||
</template>
|
||||
<el-checkbox v-model="configQuery.basicThirdProducts" :disabled="configQuery.downstreamEnable">第三方产品信息
|
||||
</el-checkbox>
|
||||
<el-checkbox v-model="configQuery.basicThirdCorp" :disabled="configQuery.downstreamEnable">第三方往来信息
|
||||
</el-checkbox>
|
||||
<el-checkbox v-model="configQuery.basicThirdInv" :disabled="configQuery.downstreamEnable">第三方仓库信息
|
||||
</el-checkbox>
|
||||
<el-checkbox v-model="configQuery.basicThirdBusOrder" :disabled="configQuery.downstreamEnable">第三方业务单据
|
||||
</el-checkbox>
|
||||
</el-descriptions-item>
|
||||
|
||||
<!-- <el-descriptions-item>-->
|
||||
<!-- <template slot="label">-->
|
||||
<!-- 国家库DI数据-->
|
||||
<!-- </template>-->
|
||||
<!-- <el-checkbox v-model="configQuery.dbDiProducts">DI产品信息</el-checkbox>-->
|
||||
<!-- </el-descriptions-item>-->
|
||||
|
||||
<el-descriptions-item>
|
||||
<template slot="label">
|
||||
首营资质证书
|
||||
</template>
|
||||
<el-checkbox v-model="configQuery.companyCert" :disabled="configQuery.downstreamEnable">配送企业
|
||||
</el-checkbox>
|
||||
<el-checkbox v-model="configQuery.manufacturerCert" :disabled="configQuery.downstreamEnable">生产企业
|
||||
</el-checkbox>
|
||||
<el-checkbox v-model="configQuery.productCert" :disabled="configQuery.downstreamEnable">配送产品
|
||||
</el-checkbox>
|
||||
</el-descriptions-item>
|
||||
</el-descriptions>
|
||||
|
||||
<el-descriptions class="margin-top" title="上传至UDI自助平台单据" :column="1" :size="100" style="margin-top: 40px"
|
||||
border>
|
||||
|
||||
<el-descriptions-item>
|
||||
<template slot="label">
|
||||
参数设置
|
||||
</template>
|
||||
|
||||
<el-row :gutter="20" class="el-row" type="flex">
|
||||
|
||||
<el-col :span="20" class="el-col">
|
||||
<div>
|
||||
<span>单据上传时间间隔(单位:分钟): </span>
|
||||
<el-input
|
||||
style="width: 100px"
|
||||
size="small"
|
||||
type="number"
|
||||
v-model="configQuery.orderSyncTime" :disabled="configQuery.downstreamEnable"
|
||||
splaceholder="请输入内容"
|
||||
></el-input>
|
||||
|
||||
<span style="margin-left: 30px;">单据下载时间间隔(单位:分钟): </span>
|
||||
<el-input
|
||||
style="width: 100px"
|
||||
size="small"
|
||||
type="number"
|
||||
v-model="configQuery.orderSyncDlTime" :disabled="configQuery.downstreamEnable"
|
||||
splaceholder="请输入内容"
|
||||
></el-input>
|
||||
</div>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
||||
</el-descriptions-item>
|
||||
|
||||
<el-descriptions-item>
|
||||
<template slot="label">
|
||||
单据(单据状态)
|
||||
</template>
|
||||
<el-checkbox v-model="configQuery.orderUnCheck" :disabled="configQuery.downstreamEnable">待校验单据
|
||||
</el-checkbox>
|
||||
<el-checkbox v-model="configQuery.orderUnReceive" :disabled="configQuery.downstreamEnable">未验收单据
|
||||
</el-checkbox>
|
||||
<el-checkbox v-model="configQuery.orderScanFinish" :disabled="configQuery.downstreamEnable">已完成单据
|
||||
</el-checkbox>
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item label="单据(单据类型)" label-style="width: 150px">
|
||||
|
||||
<div style="float: right;margin-bottom: 10px;margin-right: 25px">
|
||||
<el-button type="primary" size="small"
|
||||
:disabled="configQuery.downstreamEnable"
|
||||
@click="addBusTypeDialog()">添加扫码单据类型
|
||||
</el-button>
|
||||
</div>
|
||||
<el-table
|
||||
:data="checkedBusTypes"
|
||||
border
|
||||
style="width: 100%"
|
||||
>
|
||||
<el-table-column label="序号" type="index"></el-table-column>
|
||||
<el-table-column
|
||||
label="单据类型"
|
||||
prop="name"
|
||||
show-overflow-tooltip
|
||||
></el-table-column>
|
||||
<el-table-column
|
||||
label="单据类型代码"
|
||||
prop="action"
|
||||
show-overflow-tooltip
|
||||
></el-table-column>
|
||||
<el-table-column width="180" label="允许自动补单">
|
||||
<template slot-scope="scope">
|
||||
<el-checkbox v-model="scope.row.outChange">自动补单</el-checkbox>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" fixed="right">
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
type="text"
|
||||
size="small" :disabled="configQuery.downstreamEnable"
|
||||
@click.native="remveBus(scope.$index, scope.row)"
|
||||
>移除
|
||||
</el-button
|
||||
>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
||||
</el-descriptions-item>
|
||||
|
||||
</el-descriptions>
|
||||
|
||||
<el-dialog
|
||||
title="添加扫码单据类型"
|
||||
:visible.sync="addBusDialogVisible"
|
||||
width="55%"
|
||||
:close-on-click-modal="false"
|
||||
:close-on-press-escape="false"
|
||||
v-if="addBusDialogVisible"
|
||||
>
|
||||
|
||||
<div style="float: right;margin-bottom: 10px;margin-right: 25px">
|
||||
<el-button type="primary" size="small" @click="addBusType()">选入</el-button>
|
||||
</div>
|
||||
<el-table
|
||||
:data="busTypes"
|
||||
border
|
||||
style="width: 100%"
|
||||
@selection-change="handleCheckedChange"
|
||||
>
|
||||
<el-table-column type="selection" width="55" :selectable="checkSelectable"></el-table-column>
|
||||
<el-table-column label="序号" type="index"></el-table-column>
|
||||
<el-table-column
|
||||
label="单据类型"
|
||||
prop="name"
|
||||
show-overflow-tooltip
|
||||
></el-table-column>
|
||||
<el-table-column
|
||||
label="单据类型代码"
|
||||
prop="action"
|
||||
show-overflow-tooltip
|
||||
></el-table-column>
|
||||
</el-table>
|
||||
|
||||
<el-pagination
|
||||
:page-size="busQuery.limit"
|
||||
@current-change="handleCurrentChange"
|
||||
layout="prev, pager, next"
|
||||
:total="total"
|
||||
:current-page="busQuery.page"
|
||||
></el-pagination>
|
||||
|
||||
</el-dialog>
|
||||
</el-card>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {findConfig, testConnect, updateConfig} from "@/api/sync/spsSyncStatus";
|
||||
import store from "@/store";
|
||||
import {getBussinessType} from "@/api/basic/bussinessType";
|
||||
|
||||
export default {
|
||||
name: "SysUdimsConfig",
|
||||
data() {
|
||||
return {
|
||||
configQuery: {
|
||||
id: null,
|
||||
typeBus: null,
|
||||
typeScan: null,
|
||||
typeThird: null,
|
||||
basicProducts: null,
|
||||
basicCorp: null,
|
||||
basicInv: null,
|
||||
basicThirdProducts: null,
|
||||
basicThirdCorp: null,
|
||||
basicThirdInv: null,
|
||||
basicThirdBusOrder: null,
|
||||
orderScanFinish: null,
|
||||
dbDiProducts: null,
|
||||
downstreamEnable: null,
|
||||
syncIp: null,
|
||||
syncTime: null,
|
||||
syncDownloadTime: null,
|
||||
orderUnCheck: null,
|
||||
orderUnReceive: null,
|
||||
sysUser: null,
|
||||
orderSyncTime: null,
|
||||
orderSyncDlTime: null,
|
||||
delaySyncTime: null,
|
||||
busTypes: [],
|
||||
companyCert: null,
|
||||
manufacturerCert: null,
|
||||
productCert: null,
|
||||
|
||||
|
||||
},
|
||||
checkedBusTypes: [],
|
||||
busQuery: {
|
||||
page: 1,
|
||||
limit: 10,
|
||||
},
|
||||
busTypes: [],
|
||||
multipleSelection: [],
|
||||
addBusDialogVisible: false,
|
||||
total: 0,
|
||||
testLoading: false,
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
getConfig() {
|
||||
findConfig()
|
||||
.then((response) => {
|
||||
|
||||
this.configQuery = response.data;
|
||||
this.checkedBusTypes = this.configQuery.busTypes;
|
||||
if (this.configQuery.busTypes != null) {
|
||||
// for (let i = 0; i < this.configQuery.busTypes.length; i++) {
|
||||
//
|
||||
// for (let k = 0; k < this.busTypes.length; k++) {
|
||||
// if (this.busTypes[k].action == this.configQuery.busTypes[i]) {
|
||||
// this.checkedBusTypes.push(this.busTypes[k]);
|
||||
// this.busTypes[k].isSelect = true;
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
} else {
|
||||
this.$message.error(response.message);
|
||||
}
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
this.list = [];
|
||||
this.total = 0;
|
||||
});
|
||||
},
|
||||
saveConfig() {
|
||||
|
||||
this.$confirm('是否确认修改?', '提示', {
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
type: 'warning',
|
||||
center: true,
|
||||
}).then(() => {
|
||||
if (this.checkedBusTypes != null) {
|
||||
this.configQuery.busTypes = this.checkedBusTypes;
|
||||
// for (let i = 0; i < this.checkedBusTypes.length; i++) {
|
||||
// this.configQuery.busTypes.push(this.checkedBusTypes);
|
||||
// }
|
||||
}
|
||||
updateConfig(this.configQuery)
|
||||
.then((response) => {
|
||||
this.loading = false;
|
||||
if (response.code == 20000) {
|
||||
this.$message.success("修改成功!");
|
||||
this.getConfig();
|
||||
} else {
|
||||
this.$message.error(response.message);
|
||||
}
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
});
|
||||
}).catch(() => {
|
||||
});
|
||||
},
|
||||
|
||||
testConnect() {
|
||||
this.testLoading = true;
|
||||
testConnect()
|
||||
.then((response) => {
|
||||
this.testLoading = false;
|
||||
if (response.code == 20000) {
|
||||
this.$message.success("连接成功");
|
||||
} else {
|
||||
this.$message.error("连接失败!");
|
||||
}
|
||||
})
|
||||
.catch(() => {
|
||||
this.testLoading = false;
|
||||
});
|
||||
|
||||
|
||||
},
|
||||
|
||||
handleCheckedChange(val) {
|
||||
this.multipleSelection = val;
|
||||
},
|
||||
|
||||
getBusType() {
|
||||
getBussinessType(this.busQuery)
|
||||
.then((response) => {
|
||||
this.busTypes = response.data.list || [];
|
||||
this.total = response.data.total || 0;
|
||||
// this.getConfig();
|
||||
})
|
||||
.catch(() => {
|
||||
});
|
||||
},
|
||||
|
||||
addBusTypeDialog() {
|
||||
this.addBusDialogVisible = true;
|
||||
this.multipleSelection = [];
|
||||
},
|
||||
|
||||
addBusType() {
|
||||
var selectData = this.multipleSelection;
|
||||
selectData.forEach((obj) => {
|
||||
obj.outChange = false;
|
||||
let isPut = true;
|
||||
for (let i = 0; i < this.checkedBusTypes.length; i++) {
|
||||
if (this.checkedBusTypes[i].action == obj.action) {
|
||||
isPut = false;
|
||||
}
|
||||
}
|
||||
if (isPut)
|
||||
this.checkedBusTypes.push(obj);
|
||||
});
|
||||
this.addBusDialogVisible = false;
|
||||
},
|
||||
|
||||
|
||||
remveBus(index, row) {
|
||||
this.checkedBusTypes.splice(index, 1);
|
||||
},
|
||||
checkSelectable(row) {
|
||||
return !row.isSelect;
|
||||
},
|
||||
handleCurrentChange(val) {
|
||||
this.busQuery.page = val;
|
||||
this.getBusType();
|
||||
|
||||
},
|
||||
},
|
||||
created() {
|
||||
this.headers = {
|
||||
ADMIN_ID: store.getters.adminId,
|
||||
ADMIN_TOKEN: store.getters.token,
|
||||
};
|
||||
|
||||
this.getBusType();
|
||||
this.getConfig();
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
@ -0,0 +1,442 @@
|
||||
<template>
|
||||
<div>
|
||||
|
||||
|
||||
<el-card>
|
||||
<el-form :inline="true" :model="query" class="query-form" size="mini">
|
||||
<el-row>
|
||||
<el-form-item class="query-form-item">
|
||||
<el-input v-model="filterQuery.id" placeholder="记录ID" clearable></el-input>
|
||||
</el-form-item>
|
||||
|
||||
<el-form-item class="query-form-item">
|
||||
<el-select v-model="filterQuery.status" placeholder="处理状态">
|
||||
<el-option label="全部" value=""></el-option>
|
||||
<el-option label="等待处理" value="0"></el-option>
|
||||
<el-option label="已处理" value="1"></el-option>
|
||||
<el-option label="异常" value="2"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item class="query-form-item">
|
||||
<el-date-picker
|
||||
v-model="filterQuery.syncTime"
|
||||
type="datetime"
|
||||
format="yyyy-MM-dd HH:mm:ss"
|
||||
value-format="yyyy-MM-dd HH:mm:ss"
|
||||
placeholder="请选择同步时间">
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button-group style="display:flex;">
|
||||
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
|
||||
<el-button type="primary" icon="search" @click="getList">查询</el-button>
|
||||
<el-button type="primary" icon="search" @click="createScheduleDialog(1)"
|
||||
:disabled="!configParms.orderScanFinish&& !configParms.orderUnReceive&& !configParms.orderUnCheck">
|
||||
同步单据
|
||||
</el-button>
|
||||
<el-button type="primary" icon="search" @click="createScheduleDialog(2)"
|
||||
:disabled="!configParms.typeBus&& !configParms.typeScan&& !configParms.typeThird">
|
||||
同步单据类型
|
||||
</el-button>
|
||||
<el-button type="primary" icon="search" @click="createScheduleDialog(3)"
|
||||
:disabled="!configParms.basicProducts&& !configParms.basicCorp&&
|
||||
!configParms.basicInv&&!configParms.basicThirdProducts&& !configParms.basicThirdCorp&& !configParms.basicThirdInv
|
||||
&& !configParms.basicThirdBusOrder&& !configParms.sysUser">同步基础信息
|
||||
</el-button>
|
||||
</el-button-group>
|
||||
</el-form-item>
|
||||
</el-row>
|
||||
</el-form>
|
||||
|
||||
<el-table
|
||||
v-loading="loading"
|
||||
:data="list"
|
||||
style="width: 100%"
|
||||
>
|
||||
<el-table-column label="序号" type="index"></el-table-column>
|
||||
<el-table-column
|
||||
label="任务ID"
|
||||
prop="id"
|
||||
width="140"
|
||||
show-overflow-tooltip
|
||||
></el-table-column>
|
||||
|
||||
<el-table-column
|
||||
label="任务类型"
|
||||
prop="idDatas"
|
||||
width="140"
|
||||
show-overflow-tooltip
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
<span>{{ type[scope.row.idDatas] }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
label="状态"
|
||||
prop="status"
|
||||
width="140"
|
||||
show-overflow-tooltip
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
<el-tag
|
||||
:type="statusFilterType(scope.row.status)"
|
||||
>{{ status[scope.row.status] }}
|
||||
</el-tag
|
||||
>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
label="开始时间"
|
||||
width="180"
|
||||
prop="startTime"
|
||||
show-overflow-tooltip
|
||||
></el-table-column>
|
||||
<el-table-column
|
||||
label="结束时间"
|
||||
width="180"
|
||||
prop="endTime"
|
||||
show-overflow-tooltip
|
||||
></el-table-column>
|
||||
|
||||
<el-table-column
|
||||
label="同步信息"
|
||||
prop="remark"
|
||||
show-overflow-tooltip
|
||||
></el-table-column>
|
||||
|
||||
<el-table-column label="操作" fixed="right" width="160">
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
type="text"
|
||||
size="small"
|
||||
@click.native.stop="detailDialog(scope.row.id)"
|
||||
>详情
|
||||
</el-button
|
||||
>
|
||||
<el-button
|
||||
type="text"
|
||||
size="small"
|
||||
@click.native.stop="deleteDialog(scope.row.id)"
|
||||
>删除
|
||||
</el-button
|
||||
>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<el-pagination
|
||||
:page-size="filterQuery.limit"
|
||||
@current-change="handleCurrentChange"
|
||||
layout="prev, pager, next"
|
||||
:total="total"
|
||||
:current-page="filterQuery.page"
|
||||
></el-pagination>
|
||||
</el-card>
|
||||
|
||||
<el-dialog
|
||||
title="同步信息"
|
||||
width="25%"
|
||||
:close-on-click-modal="false"
|
||||
:close-on-press-escape="false"
|
||||
:visible.sync="syncVisible"
|
||||
>
|
||||
<span v-text="syncInfo" style="white-space:pre-line;" class="syncInfo"></span>
|
||||
</el-dialog>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {filterLog, deleteLog, createSchedule, findConfig, updateConfig} from "@/api/sync/spsSyncStatus";
|
||||
import store from "@/store";
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
filterQuery: {
|
||||
id: null,
|
||||
status: "1",
|
||||
page: 1,
|
||||
limit: 10,
|
||||
syncTime: null,
|
||||
},
|
||||
list: [],
|
||||
headers: {},
|
||||
detailList: [],
|
||||
thirdSys: [],
|
||||
thirdSysDetail: null,
|
||||
total: 0,
|
||||
currentRow: null,
|
||||
editQuery: null,
|
||||
type: {
|
||||
"AutoUploadOrder": "已完成单据",
|
||||
"AutoUploadBusType": "单据类型",
|
||||
"AutoUploadAllData": "基础信息",
|
||||
"AutoDownloadDiProducts": "国家库DI数据"
|
||||
},
|
||||
status: {
|
||||
0: "等待处理",
|
||||
1: "处理完成",
|
||||
2: "处理异常",
|
||||
},
|
||||
|
||||
configQuery: {
|
||||
id: null,
|
||||
typeBus: null,
|
||||
typeScan: null,
|
||||
typeThird: null,
|
||||
basicProducts: null,
|
||||
basicCorp: null,
|
||||
basicInv: null,
|
||||
basicThirdProducts: null,
|
||||
basicThirdCorp: null,
|
||||
basicThirdInv: null,
|
||||
basicThirdBusOrder: null,
|
||||
orderScanFinish: null,
|
||||
dbDiProducts: null,
|
||||
downstreamEnable: null,
|
||||
syncTime: null,
|
||||
},
|
||||
uploadFileUrl: null,
|
||||
uploadData: {
|
||||
thirdSys: "thirdId",
|
||||
},
|
||||
templateDlUrl: null,
|
||||
checked: false,
|
||||
configParms: {},
|
||||
syncInfo: null,
|
||||
syncVisible: false
|
||||
};
|
||||
},
|
||||
|
||||
methods: {
|
||||
onReset() {
|
||||
this.$router.push({
|
||||
path: "",
|
||||
});
|
||||
this.filterQuery = {
|
||||
syncTime: null,
|
||||
id: null,
|
||||
status: null,
|
||||
page: 1,
|
||||
limit: 20,
|
||||
};
|
||||
this.syncTime = null;
|
||||
this.getList();
|
||||
},
|
||||
getList() {
|
||||
this.loading = true;
|
||||
filterLog(this.filterQuery)
|
||||
.then((response) => {
|
||||
this.loading = false;
|
||||
if (response.code == 20000) {
|
||||
this.list = response.data.list || [];
|
||||
this.total = response.data.total || 0;
|
||||
} else {
|
||||
this.$message.error(response.message);
|
||||
}
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
this.list = [];
|
||||
this.total = 0;
|
||||
});
|
||||
},
|
||||
|
||||
getConfig() {
|
||||
findConfig()
|
||||
.then((response) => {
|
||||
if (response.code == 20000) {
|
||||
this.configQuery = response.data;
|
||||
} else {
|
||||
this.$message.error(response.message);
|
||||
}
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
this.list = [];
|
||||
this.total = 0;
|
||||
});
|
||||
},
|
||||
saveConfig() {
|
||||
updateConfig(this.configQuery)
|
||||
.then((response) => {
|
||||
this.loading = false;
|
||||
if (response.code == 20000) {
|
||||
this.$message.success("更新成功!");
|
||||
this.getConfig();
|
||||
}
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
|
||||
|
||||
cancelDialog(val) {
|
||||
this.udiImportDetailVisible = false;
|
||||
this.thrCorpSelectVisible = false;
|
||||
if (val) {
|
||||
this.getList();
|
||||
}
|
||||
}
|
||||
,
|
||||
handleCurrentChange(val) {
|
||||
this.filterQuery.page = val;
|
||||
this.getList();
|
||||
}
|
||||
,
|
||||
|
||||
|
||||
createScheduleDialog(type) {
|
||||
if (this.$isNotBlank(this.filterQuery.syncTime)) {
|
||||
this.$confirm("此操作将从" + this.filterQuery.syncTime + "开始同步最新数据,是否继续", "提示", {
|
||||
confirmButtonText: "确定",
|
||||
cancelButtonText: "取消",
|
||||
type: "warning",
|
||||
})
|
||||
.then(() => {
|
||||
this.createSchedule(type);
|
||||
})
|
||||
.catch(() => {
|
||||
});
|
||||
} else {
|
||||
this.createSchedule(type);
|
||||
}
|
||||
|
||||
},
|
||||
|
||||
createSchedule(type) {
|
||||
let query = {
|
||||
createType: type,
|
||||
syncTime: this.filterQuery.syncTime,
|
||||
}
|
||||
|
||||
createSchedule(query)
|
||||
.then((response) => {
|
||||
this.loading = false;
|
||||
if (response.code == 20000) {
|
||||
this.$message.success("创建成功!");
|
||||
} else if (response.code == 501) {
|
||||
this.$message.warning(response.message);
|
||||
} else {
|
||||
this.$message.error(response.message);
|
||||
}
|
||||
this.getList();
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
deleteDialog(rowId) {
|
||||
this.$confirm("此操作将删除该任务信息, 是否继续?", "提示", {
|
||||
confirmButtonText: "确定",
|
||||
cancelButtonText: "取消",
|
||||
type: "warning",
|
||||
})
|
||||
.then(() => {
|
||||
let dQuery = {
|
||||
id: rowId,
|
||||
};
|
||||
deleteLog(dQuery)
|
||||
.then((response) => {
|
||||
this.loading = false;
|
||||
if (response.code == 20000) {
|
||||
this.$message.success("删除成功");
|
||||
} else {
|
||||
this.$message.error(response.message);
|
||||
}
|
||||
this.getList();
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
});
|
||||
})
|
||||
.catch(() => {
|
||||
});
|
||||
}
|
||||
,
|
||||
handleChange(response, files, fileList) {
|
||||
console.log(response);
|
||||
if (response.code != 20000) {
|
||||
this.$message.error(response.message);
|
||||
this.getList();
|
||||
} else {
|
||||
// console.log(files[0] + "\n" + this.fileList[0] + "\n" + fileList[0]);
|
||||
this.$message.success(response.data);
|
||||
this.getList();
|
||||
}
|
||||
}
|
||||
,
|
||||
statusFilterType(status) {
|
||||
const statusMap = {
|
||||
0: "warning",
|
||||
1: "success",
|
||||
2: "danger",
|
||||
};
|
||||
return statusMap[status];
|
||||
}
|
||||
,
|
||||
getSyncConfig() {
|
||||
findConfig()
|
||||
.then((response) => {
|
||||
if (response.code == 20000) {
|
||||
this.configParms = response.data;
|
||||
}
|
||||
})
|
||||
.catch(() => {
|
||||
});
|
||||
},
|
||||
detailDialog(id) {
|
||||
this.syncVisible = true;
|
||||
this.list.forEach(item => {
|
||||
if (id === item.id) {
|
||||
this.syncInfo = item.remark;
|
||||
}
|
||||
})
|
||||
}
|
||||
},
|
||||
|
||||
mounted() {
|
||||
},
|
||||
components: {},
|
||||
created() {
|
||||
this.headers = {
|
||||
ADMIN_ID: store.getters.adminId,
|
||||
ADMIN_TOKEN: store.getters.token,
|
||||
};
|
||||
this.getSyncConfig();
|
||||
this.getList();
|
||||
this.getConfig();
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style>
|
||||
.itemTag {
|
||||
float: left;
|
||||
text-align: left;
|
||||
margin-top: 10px;
|
||||
width: 100px;
|
||||
}
|
||||
|
||||
.text {
|
||||
font-size: 13px;
|
||||
font-family: "Microsoft YaHei";
|
||||
}
|
||||
|
||||
.el-row {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
|
||||
}
|
||||
|
||||
.el-col {
|
||||
border-radius: 4px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.syncInfo {
|
||||
font-size: medium;
|
||||
font-family: "Microsoft YaHei";
|
||||
line-height: 25px;
|
||||
}
|
||||
</style>
|
@ -0,0 +1,396 @@
|
||||
<template>
|
||||
<div>
|
||||
|
||||
|
||||
<el-card>
|
||||
<el-form :inline="true" :model="query" class="query-form" size="mini">
|
||||
<el-row>
|
||||
<el-form-item class="query-form-item">
|
||||
<el-input v-model="filterQuery.taskId" placeholder="任务ID" clearable></el-input>
|
||||
</el-form-item>
|
||||
|
||||
<el-form-item class="query-form-item">
|
||||
<el-select v-model="filterQuery.status" placeholder="处理状态">
|
||||
<el-option label="全部" value=""></el-option>
|
||||
<el-option label="等待处理" value="0"></el-option>
|
||||
<el-option label="已处理" value="1"></el-option>
|
||||
<el-option label="异常" value="2"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button-group style="display:flex;">
|
||||
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
|
||||
<el-button type="primary" icon="search" @click="getList">查询</el-button>
|
||||
</el-button-group>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button-group style="display:flex;">
|
||||
<el-button type="primary" icon="search" @click="downloadNow(1)">立即下载基础信息</el-button>
|
||||
<el-button type="primary" icon="search" @click="downloadNow(2)">立即下载单据类型</el-button>
|
||||
<el-button type="primary" icon="search" @click="downloadNow(3)">立即下载扫码单据</el-button>
|
||||
<el-button type="primary" icon="search" @click="downloadNow(4)">立即下载国家库信息</el-button>
|
||||
</el-button-group>
|
||||
</el-form-item>
|
||||
</el-row>
|
||||
</el-form>
|
||||
|
||||
<el-table
|
||||
v-loading="loading"
|
||||
:data="list"
|
||||
style="width: 100%"
|
||||
>
|
||||
<el-table-column label="序号" type="index"></el-table-column>
|
||||
<el-table-column
|
||||
label="任务ID"
|
||||
prop="taskId"
|
||||
width="140"
|
||||
show-overflow-tooltip
|
||||
></el-table-column>
|
||||
|
||||
<el-table-column
|
||||
label="任务类型"
|
||||
prop="idDatas"
|
||||
width="140"
|
||||
show-overflow-tooltip
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
<span>{{ type[scope.row.idDatas] }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
label="状态"
|
||||
prop="status"
|
||||
width="140"
|
||||
show-overflow-tooltip
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
<el-tag
|
||||
:type="statusFilterType(scope.row.status)"
|
||||
>{{ status[scope.row.status] }}
|
||||
</el-tag
|
||||
>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
label="开始时间"
|
||||
width="180"
|
||||
prop="startTime"
|
||||
show-overflow-tooltip
|
||||
></el-table-column>
|
||||
<el-table-column
|
||||
label="结束时间"
|
||||
width="180"
|
||||
prop="endTime"
|
||||
show-overflow-tooltip
|
||||
></el-table-column>
|
||||
|
||||
<el-table-column
|
||||
label="同步信息"
|
||||
prop="remark"
|
||||
show-overflow-tooltip
|
||||
></el-table-column>
|
||||
|
||||
<el-table-column label="操作" fixed="right" width="160">
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
type="text"
|
||||
size="small"
|
||||
@click.native.stop="detailDialog(scope.row.id)"
|
||||
>详情
|
||||
</el-button
|
||||
>
|
||||
<el-button
|
||||
type="text"
|
||||
size="small"
|
||||
@click.native.stop="deleteDialog(scope.row.id)"
|
||||
>删除
|
||||
</el-button
|
||||
>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<el-pagination
|
||||
:page-size="filterQuery.limit"
|
||||
@current-change="handleCurrentChange"
|
||||
layout="prev, pager, next"
|
||||
:total="total"
|
||||
:current-page="filterQuery.page"
|
||||
></el-pagination>
|
||||
</el-card>
|
||||
|
||||
|
||||
<el-dialog
|
||||
title="同步信息"
|
||||
width="25%"
|
||||
:close-on-click-modal="false"
|
||||
:close-on-press-escape="false"
|
||||
:visible.sync="syncVisible"
|
||||
>
|
||||
<span v-text="syncInfo" style="white-space:pre-line;" class="syncInfo"></span>
|
||||
</el-dialog>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {filterLog, deleteLog, findConfig} from "@/api/sync/spsSyncDownload";
|
||||
import store from "@/store";
|
||||
import ShowText from "../sync/showText";
|
||||
import {downloadNow} from "@/api/sync/spsSyncDownload";
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
filterQuery: {
|
||||
taskId: null,
|
||||
status: "1",
|
||||
page: 1,
|
||||
limit: 10,
|
||||
syncTime: null,
|
||||
},
|
||||
list: [],
|
||||
headers: {},
|
||||
detailList: [],
|
||||
thirdSys: [],
|
||||
thirdSysDetail: null,
|
||||
total: 0,
|
||||
currentRow: null,
|
||||
editQuery: null,
|
||||
type: {
|
||||
"AutoDownloadOrder": "已完成单据",
|
||||
"AutoDownloadBusType": "单据类型",
|
||||
"AutoDownloadAllData": "基础信息",
|
||||
"AutoDownloadDiProducts": "国家库DI数据"
|
||||
},
|
||||
status: {
|
||||
0: "等待处理",
|
||||
1: "处理完成",
|
||||
2: "处理异常",
|
||||
},
|
||||
|
||||
configQuery: {
|
||||
id: null,
|
||||
typeBus: null,
|
||||
typeScan: null,
|
||||
typeThird: null,
|
||||
basicProducts: null,
|
||||
basicCorp: null,
|
||||
basicInv: null,
|
||||
basicThirdProducts: null,
|
||||
basicThirdCorp: null,
|
||||
basicThirdInv: null,
|
||||
basicThirdBusOrder: null,
|
||||
orderScanFinish: null,
|
||||
dbDiProducts: null,
|
||||
downstreamEnable: null,
|
||||
syncTime: null,
|
||||
},
|
||||
uploadFileUrl: null,
|
||||
uploadData: {
|
||||
thirdSys: "thirdId",
|
||||
},
|
||||
templateDlUrl: null,
|
||||
checked: false,
|
||||
syncTime: null,
|
||||
syncInfo: null,
|
||||
syncVisible: false
|
||||
};
|
||||
},
|
||||
|
||||
methods: {
|
||||
onReset() {
|
||||
this.$router.push({
|
||||
path: "",
|
||||
});
|
||||
this.filterQuery = {
|
||||
taskId: null,
|
||||
status: "1",
|
||||
page: 1,
|
||||
limit: 20,
|
||||
};
|
||||
this.getList();
|
||||
},
|
||||
getList() {
|
||||
this.loading = true;
|
||||
filterLog(this.filterQuery)
|
||||
.then((response) => {
|
||||
this.loading = false;
|
||||
if (response.code == 20000) {
|
||||
this.list = response.data.list || [];
|
||||
this.total = response.data.total || 0;
|
||||
} else {
|
||||
this.$message.error(response.message);
|
||||
}
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
this.list = [];
|
||||
this.total = 0;
|
||||
});
|
||||
},
|
||||
|
||||
getConfig() {
|
||||
findConfig()
|
||||
.then((response) => {
|
||||
if (response.code == 20000) {
|
||||
this.configQuery = response.data;
|
||||
} else {
|
||||
this.$message.error(response.message);
|
||||
}
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
this.list = [];
|
||||
this.total = 0;
|
||||
});
|
||||
},
|
||||
|
||||
|
||||
cancelDialog(val) {
|
||||
this.udiImportDetailVisible = false;
|
||||
this.thrCorpSelectVisible = false;
|
||||
if (val) {
|
||||
this.getList();
|
||||
}
|
||||
}
|
||||
,
|
||||
handleCurrentChange(val) {
|
||||
this.filterQuery.page = val;
|
||||
this.getList();
|
||||
}
|
||||
,
|
||||
|
||||
createSchedule(type) {
|
||||
let query = {
|
||||
createType: type,
|
||||
syncTime: this.syncTime,
|
||||
}
|
||||
|
||||
createSchedule(query)
|
||||
.then((response) => {
|
||||
this.loading = false;
|
||||
if (response.code == 20000) {
|
||||
this.$message.success("创建成功!");
|
||||
} else if (response.code == 501) {
|
||||
this.$message.warning(response.message);
|
||||
} else {
|
||||
this.$message.error(response.message);
|
||||
}
|
||||
this.getList();
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
deleteDialog(rowId) {
|
||||
this.$confirm("此操作将删除该任务信息, 是否继续?", "提示", {
|
||||
confirmButtonText: "确定",
|
||||
cancelButtonText: "取消",
|
||||
type: "warning",
|
||||
})
|
||||
.then(() => {
|
||||
let dQuery = {
|
||||
id: rowId,
|
||||
};
|
||||
deleteLog(dQuery)
|
||||
.then((response) => {
|
||||
this.loading = false;
|
||||
if (response.code == 20000) {
|
||||
this.$message.success("删除成功");
|
||||
} else {
|
||||
this.$message.error(response.message);
|
||||
}
|
||||
this.getList();
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
});
|
||||
})
|
||||
.catch(() => {
|
||||
});
|
||||
},
|
||||
handleChange(response, files, fileList) {
|
||||
console.log(response);
|
||||
if (response.code != 20000) {
|
||||
this.$message.error(response.message);
|
||||
this.getList();
|
||||
} else {
|
||||
// console.log(files[0] + "\n" + this.fileList[0] + "\n" + fileList[0]);
|
||||
this.$message.success(response.data);
|
||||
this.getList();
|
||||
}
|
||||
},
|
||||
statusFilterType(status) {
|
||||
const statusMap = {
|
||||
0: "warning",
|
||||
1: "success",
|
||||
2: "danger",
|
||||
};
|
||||
return statusMap[status];
|
||||
},
|
||||
detailDialog(id) {
|
||||
this.syncVisible = true;
|
||||
this.list.forEach(item => {
|
||||
if (id === item.id) {
|
||||
this.syncInfo = item.remark;
|
||||
}
|
||||
})
|
||||
},
|
||||
downloadNow(type) {
|
||||
//立即下载数据
|
||||
let params = {type: type};
|
||||
downloadNow(params).then((res) => {
|
||||
if (res.code === 20000) {
|
||||
this.$message.success("同步任务创建成功,稍后请刷新查看下载日志!");
|
||||
} else {
|
||||
this.$message.error(res.message);
|
||||
}
|
||||
}).catch((error) => {
|
||||
this.$message.error(error.message);
|
||||
})
|
||||
}
|
||||
},
|
||||
|
||||
mounted() {
|
||||
},
|
||||
components: {ShowText},
|
||||
created() {
|
||||
this.headers = {
|
||||
ADMIN_ID: store.getters.adminId,
|
||||
ADMIN_TOKEN: store.getters.token,
|
||||
};
|
||||
this.getList();
|
||||
this.getConfig();
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style>
|
||||
.itemTag {
|
||||
float: left;
|
||||
text-align: left;
|
||||
margin-top: 10px;
|
||||
width: 100px;
|
||||
}
|
||||
|
||||
.text {
|
||||
font-size: 13px;
|
||||
font-family: "Microsoft YaHei";
|
||||
}
|
||||
|
||||
.el-row {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
|
||||
}
|
||||
|
||||
.el-col {
|
||||
border-radius: 4px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.syncInfo {
|
||||
font-size: medium;
|
||||
font-family: "Microsoft YaHei";
|
||||
line-height: 25px;
|
||||
}
|
||||
</style>
|
@ -0,0 +1,44 @@
|
||||
<template>
|
||||
<div>
|
||||
<el-card class="box-card">
|
||||
<!-- <div v-for="o in 4" :key="o" class="text item">-->
|
||||
<!-- {{'列表内容 ' + o }}-->
|
||||
<!-- </div>-->
|
||||
<div v-html="content" class="text item"></div>
|
||||
</el-card>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
export default {
|
||||
name: "showText",
|
||||
data() {
|
||||
return {
|
||||
content: "",
|
||||
}
|
||||
},
|
||||
created() {
|
||||
this.content = this.$route.query.content;
|
||||
console.log(this.$route)
|
||||
console.log(this.content)
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.text {
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.item {
|
||||
padding: 0 20px;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.box-card {
|
||||
overflow:auto;
|
||||
margin: 20px 20px;
|
||||
max-height: 95vh;
|
||||
}
|
||||
</style>
|
Loading…
Reference in New Issue