数据同步,代码备份

master
anthonyywj2 3 years ago
parent ff8b7e2db8
commit cf1e83ea56

@ -1,6 +1,6 @@
{
"UDI_SYNC_SERVER_IP": "http://127.0.0.1:9995/",
"BASE_URL":"http://127.0.0.1:9991/",
"SERVER_IP": "http://127.0.0.1:9991/",
"WEBSOCKET_URL": "ws://127.0.0.1:9991/UDI_WMS_MC/api/websocket/"
"UDI_SYNC_SERVER_IP": "http://192.168.0.109:9995/",
"BASE_URL":"http://192.168.0.109:9991/",
"SERVER_IP": "http://192.168.0.109:9991/",
"WEBSOCKET_URL": "ws://192.168.0.109:9991/UDI_WMS_MC/api/websocket/"
}

@ -98,6 +98,7 @@
import {filterLog, deleteLog} from "../../api/basic/corpExport";
import corpSelect from "./CorpSelect";
import axios from "axios";
import {formatDate} from "@/utils/date";
export default {
data() {
return {
@ -182,15 +183,13 @@
"?genKey=" + row.genKey;
console.log("href = " + href);
let a = document.createElement("a");
var timestamp = formatDate(new Date(), "yyyyMMddhhmmss")
fetch(href)
.then((res) => res.blob())
.then((blob) => {
a.href = URL.createObjectURL(blob);
console.log(a.href);
a.download =
row.filePath.split("/")[
row.filePath.split("/").length - 1
]; // //
a.download = "BaseCorp_" + timestamp + ".UpperIn";
document.body.appendChild(a);
a.click();
this.getList();

@ -99,6 +99,7 @@
import axios from "axios";
import {filterLog, downloadLog, deleteLog} from "../../api/basic/udiInfoExport";
import udiInfoSelect from "./UdIInfoSelect";
import {formatDate} from "@/utils/date";
export default {
data() {
@ -183,15 +184,13 @@
let baseUrl = res.data.BASE_URL;
let href = baseUrl + "/udiwms/products/exportLog/download" + "?genKey=" + row.genKey;
let a = document.createElement("a");
var timestamp = formatDate(new Date(), "yyyyMMddhhmmss")
fetch(href)
.then((res) => res.blob())
.then((blob) => {
a.href = URL.createObjectURL(blob);
console.log(a.href);
a.download =
row.filePath.split("/")[
row.filePath.split("/").length - 1
]; // //
a.download = "BaseProduct_" + timestamp + ".UpperIn";
document.body.appendChild(a);
a.click();
this.getList();

@ -937,8 +937,8 @@ export default {
);
this.loading = false;
const eleLink = document.createElement('a');
var timestamp = formatDate(new Date(), "yyyy-MM-dd_hh:mm")
eleLink.download = "仓库信息导出" + timestamp + ".udi";
var timestamp = formatDate(new Date(), "yyyyMMddhhmmss")
eleLink.download = "BaseWarehouse_" + timestamp + ".UpperIn";
eleLink.style.display = 'none';
eleLink.href = url;
document.body.appendChild(eleLink)

@ -98,6 +98,7 @@
import {filterLog, deleteLog} from "../../api/thrsys/thrCorpsExport.js";
import thrCorpSelect from "./ThrCorpSelect";
import axios from "axios";
import {formatDate} from "@/utils/date";
export default {
data() {
@ -186,15 +187,13 @@ export default {
let href = baseUrl + "/udiwms/thrCorp/exportLog/download" +
"?genKey=" + row.genKey;
let a = document.createElement("a");
var timestamp = formatDate(new Date(), "yyyyMMddhhmmss")
fetch(href)
.then((res) => res.blob())
.then((blob) => {
a.href = URL.createObjectURL(blob);
console.log(a.href);
a.download =
row.filePath.split("/")[
row.filePath.split("/").length - 1
]; // //
a.download = "ThirdCorp_" + timestamp + ".UpperIn";
document.body.appendChild(a);
a.click();
this.getList();

@ -98,6 +98,7 @@
import {filterLog, deleteLog} from "../../api/thrsys/thrOrderExport";
import thrOrderSelect from "./ThrOrderSelect";
import axios from "axios";
import {formatDate} from "@/utils/date";
export default {
data() {
@ -185,15 +186,13 @@
let baseUrl = res.data.BASE_URL;
let href = baseUrl + "/udiwms/thrOrder/exportLog/download" + "?genKey=" + row.genKey;
let a = document.createElement("a");
var timestamp = formatDate(new Date(), "yyyyMMddhhmmss")
fetch(href)
.then((res) => res.blob())
.then((blob) => {
a.href = URL.createObjectURL(blob);
console.log(a.href);
a.download =
row.filePath.split("/")[
row.filePath.split("/").length - 1
]; // //
a.download = "ThirdOrder_" + timestamp + ".UpperIn";
document.body.appendChild(a);
a.click();
this.getList();

@ -98,6 +98,7 @@
import {filterLog, deleteLog} from "../../api/thrsys/thrProductsExport.js";
import thrProductsSelect from "./ThrProductsSelect";
import axios from "axios";
import {formatDate} from "@/utils/date";
export default {
data() {
return {
@ -182,15 +183,13 @@
let baseUrl = res.data.BASE_URL;
let href = baseUrl + "/udiwms/thrProducts/exportLog/download" + "?genKey=" + row.genKey;
let a = document.createElement("a");
var timestamp = formatDate(new Date(), "yyyyMMddhhmmss")
fetch(href)
.then((res) => res.blob())
.then((blob) => {
a.href = URL.createObjectURL(blob);
console.log(a.href);
a.download =
row.filePath.split("/")[
row.filePath.split("/").length - 1
];
a.download = "ThirdProduct_" + timestamp + ".UpperIn";
document.body.appendChild(a);
a.click();
this.getList();

Loading…
Cancel
Save