下载方法修改不读config

prod
郑明梁 2 years ago
parent a99e5923ac
commit 16040a9dd6

@ -1,265 +1,263 @@
<template> <template>
<div> <div>
<el-card class="el-card"> <el-card class="el-card">
<el-form :model="query" class="query-form" size="mini" label-width="100px" v-show="showSearch"> <el-form :model="query" class="query-form" size="mini" label-width="100px" v-show="showSearch">
<el-row> <el-row>
<el-col :span="6"> <el-col :span="6">
<el-form-item label="记录ID:"> <el-form-item label="记录ID:">
<el-input v-model="filterQuery.genKey" style="width: 90%" placeholder="请输入记录ID" clearable></el-input> <el-input v-model="filterQuery.genKey" style="width: 90%" placeholder="请输入记录ID" clearable></el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
</el-form> </el-form>
<div class="top-right-btn"> <div class="top-right-btn">
<el-button-group style="display:flex;"> <el-button-group style="display:flex;">
<el-button icon="el-icon-view" type="primary" @click="hideSearch">/</el-button> <el-button icon="el-icon-view" type="primary" @click="hideSearch">/</el-button>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button> <el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="el-icon-search" @click="getList"></el-button> <el-button type="primary" icon="el-icon-search" @click="getList"></el-button>
<el-button type="primary" icon="el-icon-upload2" @click="exportExcel"></el-button> <el-button type="primary" icon="el-icon-upload2" @click="exportExcel"></el-button>
</el-button-group> </el-button-group>
</div> </div>
<el-divider style="margin: 15px"></el-divider> <el-divider style="margin: 15px"></el-divider>
<el-table v-loading="loading" :data="list" style="width: 100%" border highlight-current-row @selection-change="handleSelectionChange"> <el-table v-loading="loading" :data="list" style="width: 100%" border highlight-current-row
<el-table-column label="序号" type="index"></el-table-column> @selection-change="handleSelectionChange">
<el-table-column label="记录ID" prop="genKey" show-overflow-tooltip></el-table-column> <el-table-column label="序号" type="index"></el-table-column>
<el-table-column label="更新日期" prop="updateTime" show-overflow-tooltip></el-table-column> <el-table-column label="记录ID" prop="genKey" show-overflow-tooltip></el-table-column>
<el-table-column label="状态" prop="status" show-overflow-tooltip> <el-table-column label="更新日期" prop="updateTime" show-overflow-tooltip></el-table-column>
<template slot-scope="scope"> <el-table-column label="状态" prop="status" show-overflow-tooltip>
<el-tag :type="statusFilterType(scope.row.status)">{{ status[scope.row.status] }}</el-tag > <template slot-scope="scope">
</template> <el-tag :type="statusFilterType(scope.row.status)">{{ status[scope.row.status] }}</el-tag>
</el-table-column> </template>
<el-table-column label="下载次数" prop="dlCount" show-overflow-tooltip></el-table-column> </el-table-column>
<el-table-column label="下载信息" prop="remark" show-overflow-tooltip></el-table-column> <el-table-column label="下载次数" prop="dlCount" show-overflow-tooltip></el-table-column>
<el-table-column label="操作" width="120"> <el-table-column label="下载信息" prop="remark" show-overflow-tooltip></el-table-column>
<template slot-scope="scope"> <el-table-column label="操作" width="120">
<el-button type="text" size="small" @click.native.stop="downloadExcel(scope.row)">下载</el-button> <template slot-scope="scope">
<el-button type="text" size="small" @click.native.stop="deleteDialog(scope.row.id)">删除</el-button> <el-button type="text" size="small" @click.native.stop="downloadExcel(scope.row)">下载</el-button>
</template> <el-button type="text" size="small" @click.native.stop="deleteDialog(scope.row.id)">删除</el-button>
</el-table-column> </template>
</el-table> </el-table-column>
</el-table>
<el-dialog <el-dialog
title="导出往来单位信息" title="导出往来单位信息"
:visible.sync="corpImportDetailVisible" :visible.sync="corpImportDetailVisible"
width="80%" width="80%"
:close-on-click-modal="false" :close-on-click-modal="false"
:close-on-press-escape="false" :close-on-press-escape="false"
v-if="corpImportDetailVisible" v-if="corpImportDetailVisible"
> >
<corpSelect :selectType="selectType" v-on:cancelDialog="cancelDialog" <corpSelect :selectType="selectType" v-on:cancelDialog="cancelDialog"
></corpSelect> ></corpSelect>
</el-dialog> </el-dialog>
<pagination <pagination
v-show="total>0" v-show="total>0"
:total="total" :total="total"
:page.sync="filterQuery.page" :page.sync="filterQuery.page"
:limit.sync="filterQuery.limit" :limit.sync="filterQuery.limit"
@pagination="handleCurrentChange" @pagination="handleCurrentChange"
></pagination> ></pagination>
</el-card> </el-card>
</div> </div>
</template> </template>
<script> <script>
import {filterLog, deleteLog} from "@/api/basic/corpExport"; import {filterLog, deleteLog} from "@/api/basic/corpExport";
import corpSelect from "./corpSelect"; import corpSelect from "./corpSelect";
import axios from "axios"; import axios from "axios";
import {formatDate} from "@/utils/date"; import {formatDate} from "@/utils/date";
export default {
data() {
return {
showSearch: true,
filterQuery: {
genKey: null,
status: null,
fromType: null,
page: 1,
limit: 20,
type: 3,
thirdSysFk: null,
},
selectType: 0,
corpImportDetailVisible: false,
list: [],
detailList: [],
thirdSys: [],
thirdSysDetail: null,
total: 0,
editQuery: null,
fromStatus: {
0: "产品信息",
1: "库存信息",
2: "异常第三方上传"
},
status: {
0: "等待处理",
1: "正在处理",
2: "处理异常",
3: "处理完成"
},
uploadFileUrl: null,
uploadData: {
thirdSys: "thirdId",
},
};
},
methods: { export default {
onReset() { data() {
this.$router.push({ return {
path: "", BASE_URL: process.env.VUE_APP_BASE_API,
}); showSearch: true,
this.filterQuery = { filterQuery: {
fromType: null, genKey: null,
genKey: null, status: null,
status: null, fromType: null,
page: 1, page: 1,
type: 3, limit: 20,
limit: 20, type: 3,
thirdSysFk: null, thirdSysFk: null,
}; },
this.getList(); selectType: 0,
}, corpImportDetailVisible: false,
hideSearch() { list: [],
this.showSearch = !this.showSearch; detailList: [],
}, thirdSys: [],
getList() { thirdSysDetail: null,
this.loading = true; total: 0,
filterLog(this.filterQuery) editQuery: null,
.then((response) => { fromStatus: {
this.loading = false; 0: "产品信息",
this.list = response.data.list || []; 1: "库存信息",
this.total = response.data.total || 0; 2: "异常第三方上传"
}) },
.catch(() => { status: {
this.loading = false; 0: "等待处理",
this.list = []; 1: "正在处理",
this.total = 0; 2: "处理异常",
}); 3: "处理完成"
}, },
uploadFileUrl: null,
exportExcel() { uploadData: {
this.selectType = 0; thirdSys: "thirdId",
this.corpImportDetailVisible = true; },
}, };
uploadSmp() { },
this.selectType = 1;
this.corpImportDetailVisible = true;
},
downloadExcel(row) {
axios.get("./config.json").then(res => {
let baseUrl = res.data.BASE_URL;
let href = baseUrl + "/udiwms/corps/exportLog/download" +
"?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 = "BaseCorp_" + timestamp + ".UpperIn";
document.body.appendChild(a);
a.click();
this.getList();
});
});
methods: {
onReset() {
this.$router.push({
path: "",
});
this.filterQuery = {
fromType: null,
genKey: null,
status: null,
page: 1,
type: 3,
limit: 20,
thirdSysFk: null,
};
this.getList();
},
hideSearch() {
this.showSearch = !this.showSearch;
},
getList() {
this.loading = true;
filterLog(this.filterQuery)
.then((response) => {
this.loading = false;
this.list = response.data.list || [];
this.total = response.data.total || 0;
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
});
},
}, exportExcel() {
this.selectType = 0;
this.corpImportDetailVisible = true;
},
uploadSmp() {
this.selectType = 1;
this.corpImportDetailVisible = true;
},
downloadExcel(row) {
let baseUrl = this.BASE_URL
let href = baseUrl + "/udiwms/corps/exportLog/download" + "?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 = "BaseCorp_" + timestamp + ".UpperIn";
document.body.appendChild(a);
a.click();
this.getList();
});
},
cancelDialog(val) { cancelDialog(val) {
this.corpImportDetailVisible = false; this.corpImportDetailVisible = false;
if (val) { if (val) {
this.getList(); this.getList();
} }
}, },
handleCurrentChange(val) { handleCurrentChange(val) {
this.filterQuery.page = val.page; this.filterQuery.page = val.page;
this.getList(); this.getList();
}, },
deleteDialog(rowId) { deleteDialog(rowId) {
this.$confirm("此操作将删除该往来单位信息, 是否继续?", "提示", { this.$confirm("此操作将删除该往来单位信息, 是否继续?", "提示", {
confirmButtonText: "确定", confirmButtonText: "确定",
cancelButtonText: "取消", cancelButtonText: "取消",
type: "warning", type: "warning",
}) })
.then(() => { .then(() => {
let dQuery = { let dQuery = {
id: rowId, id: rowId,
}; };
deleteLog(dQuery) deleteLog(dQuery)
.then((response) => { .then((response) => {
this.loading = false; this.loading = false;
if (response.code == 20000) { if (response.code == 20000) {
this.$message.success("删除成功"); this.$message.success("删除成功");
} else { } else {
this.$message.error(response.message); this.$message.error(response.message);
} }
this.getList(); this.getList();
}) })
.catch(() => { .catch(() => {
this.loading = false; this.loading = false;
}); });
}) })
.catch(() => { .catch(() => {
}); });
}, },
handleChange(response, files, fileList) { handleChange(response, files, fileList) {
console.log(response); console.log(response);
if (response.code != 20000) { if (response.code != 20000) {
this.$message.error(response.message); this.$message.error(response.message);
} else { } else {
console.log(files[0] + "\n" + this.fileList[0] + "\n" + fileList[0]); console.log(files[0] + "\n" + this.fileList[0] + "\n" + fileList[0]);
this.$message.success("文件上传成功,请稍后刷新查看!"); this.$message.success("文件上传成功,请稍后刷新查看!");
} }
}, },
statusFilterType(status) { statusFilterType(status) {
const statusMap = { const statusMap = {
0: "warning", 0: "warning",
1: "warning", 1: "warning",
2: "danger", 2: "danger",
3: "success", 3: "success",
}; };
return statusMap[status]; return statusMap[status];
}, },
}, },
mounted() { mounted() {
}, },
components: {corpSelect}, components: {corpSelect},
created() { created() {
// this.getBasicThirdSys(); // this.getBasicThirdSys();
this.getList(); this.getList();
}, },
}; };
</script> </script>
<style scoped> <style scoped>
.itemTag { .itemTag {
float: left; float: left;
text-align: left; text-align: left;
margin-top: 10px; margin-top: 10px;
width: 100px; width: 100px;
} }
.text { .text {
font-size: 13px; font-size: 13px;
font-family: "Microsoft YaHei"; font-family: "Microsoft YaHei";
} }
.el-row { .el-row {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
} }
.el-col { .el-col {
border-radius: 4px; border-radius: 4px;
flex-wrap: wrap; flex-wrap: wrap;
} }
</style> </style>

@ -94,6 +94,7 @@ import corpImportDetail from "./corpImportDetail";
export default { export default {
data() { data() {
return { return {
BASE_URL: process.env.VUE_APP_BASE_API,
showSearch: true, showSearch: true,
filterQuery: { filterQuery: {
genKey: null, genKey: null,
@ -212,15 +213,9 @@ export default {
this.loading = false; this.loading = false;
this.list = []; this.list = [];
}); });
axios.get("./config.json").then(res => { let response = this.BASE_URL;
//
let response = res.data.BASE_URL;
this.uploadFileUrl = response + "/udiwms/corps/importLog/upload"; this.uploadFileUrl = response + "/udiwms/corps/importLog/upload";
});
axios.get("./config.json").then(res => {
let response = res.data.SERVER_IP;
this.templateDlUrl = response + "/已对照往来单位模板.xlsx"; this.templateDlUrl = response + "/已对照往来单位模板.xlsx";
});
}, },
jumpDl() { jumpDl() {
window.open(this.templateDlUrl, '_blank'); window.open(this.templateDlUrl, '_blank');

@ -86,6 +86,7 @@
export default { export default {
data() { data() {
return { return {
BASE_URL: process.env.VUE_APP_BASE_API,
showSearch: true, showSearch: true,
filterQuery: { filterQuery: {
genKey: null, genKey: null,
@ -212,14 +213,9 @@
this.loading = false; this.loading = false;
this.list = []; this.list = [];
}); });
axios.get("./config.json").then(res => { let response = this.BASE_URL;
let response = res.data.BASE_URL;
this.uploadFileUrl = response + "/udiwms/products/importLog/upload"; this.uploadFileUrl = response + "/udiwms/products/importLog/upload";
});
axios.get("./config.json").then(res => {
let response = res.data.SERVER_IP;
this.templateDlUrl = response + "/已对照产品信息模板.xlsx"; this.templateDlUrl = response + "/已对照产品信息模板.xlsx";
});
}, },
jumpDl() { jumpDl() {
window.open(this.templateDlUrl, '_blank'); window.open(this.templateDlUrl, '_blank');

@ -1,68 +1,69 @@
<template> <template>
<div> <div>
<el-card> <el-card>
<el-form :model="query" class="query-form" size="mini" label-width="100px" v-show="showSearch"> <el-form :model="query" class="query-form" size="mini" label-width="100px" v-show="showSearch">
<el-row> <el-row>
<el-col :span="6"> <el-col :span="6">
<el-form-item label="记录ID:"> <el-form-item label="记录ID:">
<el-input v-model="filterQuery.genKey" style="width: 90%" placeholder="请输入记录ID" clearable></el-input> <el-input v-model="filterQuery.genKey" style="width: 90%" placeholder="请输入记录ID" clearable></el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
</el-form> </el-form>
<div class="top-right-btn"> <div class="top-right-btn">
<el-button-group style="display:flex;"> <el-button-group style="display:flex;">
<el-button icon="el-icon-view" type="primary" @click="hideSearch">/</el-button> <el-button icon="el-icon-view" type="primary" @click="hideSearch">/</el-button>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button> <el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="el-icon-search" @click="Onsearch"></el-button> <el-button type="primary" icon="el-icon-search" @click="Onsearch"></el-button>
<el-button type="primary" icon="el-icon-upload2" @click="exportExcel"></el-button> <el-button type="primary" icon="el-icon-upload2" @click="exportExcel"></el-button>
</el-button-group> </el-button-group>
</div> </div>
<el-divider style="margin: 15px"></el-divider> <el-divider style="margin: 15px"></el-divider>
<el-table v-loading="loading" :data="list" style="width: 100%" @selection-change="handleSelectionChange" border highlight-current-row> <el-table v-loading="loading" :data="list" style="width: 100%" @selection-change="handleSelectionChange" border
<el-table-column label="序号" type="index"></el-table-column> highlight-current-row>
<el-table-column label="记录ID" prop="genKey" show-overflow-tooltip></el-table-column> <el-table-column label="序号" type="index"></el-table-column>
<el-table-column label="更新日期" prop="updateTime" show-overflow-tooltip></el-table-column> <el-table-column label="记录ID" prop="genKey" show-overflow-tooltip></el-table-column>
<el-table-column label="状态" prop="status" show-overflow-tooltip> <el-table-column label="更新日期" prop="updateTime" show-overflow-tooltip></el-table-column>
<template slot-scope="scope"> <el-table-column label="状态" prop="status" show-overflow-tooltip>
<el-tag :type="statusFilterType(scope.row.status)">{{ status[scope.row.status] }}</el-tag> <template slot-scope="scope">
</template> <el-tag :type="statusFilterType(scope.row.status)">{{ status[scope.row.status] }}</el-tag>
</el-table-column> </template>
<el-table-column label="下载次数" prop="dlCount" show-overflow-tooltip> </el-table-column>
</el-table-column> <el-table-column label="下载次数" prop="dlCount" show-overflow-tooltip>
<el-table-column label="操作" width="120"> </el-table-column>
<template slot-scope="scope"> <el-table-column label="操作" width="120">
<el-button type="text" @click.native.stop="downloadExcel(scope.row)">下载</el-button> <template slot-scope="scope">
<el-button type="text" @click.native.stop="deleteDialog(scope.row.id)">删除</el-button> <el-button type="text" @click.native.stop="downloadExcel(scope.row)">下载</el-button>
</template> <el-button type="text" @click.native.stop="deleteDialog(scope.row.id)">删除</el-button>
</el-table-column> </template>
</el-table> </el-table-column>
</el-table>
<el-dialog <el-dialog
title="导出医疗器械产品信息" title="导出医疗器械产品信息"
:visible.sync="udiImportDetailVisible" :visible.sync="udiImportDetailVisible"
width="80%" width="80%"
append-to-body append-to-body
:close-on-click-modal="false" :close-on-click-modal="false"
:close-on-press-escape="false" :close-on-press-escape="false"
v-if="udiImportDetailVisible" v-if="udiImportDetailVisible"
> >
<udiInfoSelect :selectType="selectType" v-on:cancelDialog="cancelDialog" <udiInfoSelect :selectType="selectType" v-on:cancelDialog="cancelDialog"
></udiInfoSelect> ></udiInfoSelect>
</el-dialog> </el-dialog>
<pagination <pagination
v-show="total>0" v-show="total>0"
:total="total" :total="total"
:limit.sync="filterQuery.limit" :limit.sync="filterQuery.limit"
:page.sync="filterQuery.page" :page.sync="filterQuery.page"
@pagination="handleCurrentChange" @pagination="handleCurrentChange"
></pagination> ></pagination>
</el-card> </el-card>
</div> </div>
</template> </template>
<script> <script>
@ -72,201 +73,196 @@ import udiInfoSelect from "./udIInfoSelect";
import {formatDate} from "@/utils/date"; import {formatDate} from "@/utils/date";
export default { export default {
data() { data() {
return { return {
showSearch: true, BASE_URL: process.env.VUE_APP_BASE_API,
filterQuery: { showSearch: true,
type: 3, filterQuery: {
genKey: null, type: 3,
status: null, genKey: null,
fromType: null, status: null,
page: 1, fromType: null,
limit: 20, page: 1,
thirdSysFk: null, limit: 20,
}, thirdSysFk: null,
selectType: 0,
udiImportDetailVisible: false,
list: [],
detailList: [],
thirdSys: [],
thirdSysDetail: null,
total: 0,
editQuery: null,
fromStatus: {
0: "产品信息",
1: "库存信息",
2: "异常第三方上传"
},
status: {
0: "等待处理",
1: "正在处理",
2: "处理异常",
3: "处理完成"
},
uploadFileUrl: null,
uploadData: {
thirdSys: "thirdId",
},
};
},
methods: {
onReset() {
this.$router.push({
path: "",
});
this.filterQuery = {
type: 3,
fromType: null,
genKey: null,
status: null,
page: 1,
limit: 20,
thirdSysFk: null,
};
this.getList();
},
hideSearch() {
this.showSearch = !this.showSearch;
},
Onsearch(){
this.filterQuery.page=1;
this.getList();
}, },
getList() { selectType: 0,
this.loading = true; udiImportDetailVisible: false,
filterLog(this.filterQuery) list: [],
.then((response) => { detailList: [],
this.loading = false; thirdSys: [],
this.list = response.data.list || []; thirdSysDetail: null,
this.total = response.data.total || 0; total: 0,
}) editQuery: null,
.catch(() => { fromStatus: {
this.loading = false; 0: "产品信息",
this.list = []; 1: "库存信息",
this.total = 0; 2: "异常第三方上传"
}); },
}, status: {
0: "等待处理",
exportExcel() { 1: "正在处理",
this.selectType = 0; 2: "处理异常",
this.udiImportDetailVisible = true; 3: "处理完成"
}, },
uploadSmp() { uploadFileUrl: null,
this.selectType = 1; uploadData: {
this.udiImportDetailVisible = true; thirdSys: "thirdId",
}, },
downloadExcel(row) { };
},
axios.get("./config.json").then(res => {
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 = "BaseProduct_" + timestamp + ".UpperIn";
document.body.appendChild(a);
a.click();
this.getList();
});
});
}, methods: {
onReset() {
this.$router.push({
path: "",
});
this.filterQuery = {
type: 3,
fromType: null,
genKey: null,
status: null,
page: 1,
limit: 20,
thirdSysFk: null,
};
this.getList();
},
hideSearch() {
this.showSearch = !this.showSearch;
},
Onsearch() {
this.filterQuery.page = 1;
this.getList();
},
getList() {
this.loading = true;
filterLog(this.filterQuery)
.then((response) => {
this.loading = false;
this.list = response.data.list || [];
this.total = response.data.total || 0;
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
});
},
cancelDialog(val) { exportExcel() {
this.udiImportDetailVisible = false; this.selectType = 0;
if (val) { this.udiImportDetailVisible = true;
this.getList(); },
} uploadSmp() {
}, this.selectType = 1;
handleCurrentChange(val) { this.udiImportDetailVisible = true;
this.filterQuery.page = val.page; },
this.getList(); downloadExcel(row) {
}, let baseUrl = this.BASE_URL
deleteDialog(rowId) { let href = baseUrl + "/udiwms/products/exportLog/download" + "?genKey=" + row.genKey;
this.$confirm("此操作将删除该产品信息, 是否继续?", "提示", { let a = document.createElement("a");
confirmButtonText: "确定", var timestamp = formatDate(new Date(), "yyyyMMddhhmmss")
cancelButtonText: "取消", fetch(href)
type: "warning", .then((res) => res.blob())
}) .then((blob) => {
.then(() => { a.href = URL.createObjectURL(blob);
let dQuery = { console.log(a.href);
id: rowId, a.download = "BaseProduct_" + timestamp + ".UpperIn";
}; document.body.appendChild(a);
deleteLog(dQuery) a.click();
.then((response) => { this.getList();
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);
} else {
// console.log(files[0] + "\n" + this.fileList[0] + "\n" + fileList[0]);
this.getList();
this.$message.success("文件上传成功,请稍后刷新查看!");
} cancelDialog(val) {
}, this.udiImportDetailVisible = false;
statusFilterType(status) { if (val) {
const statusMap = { this.getList();
0: "warning", }
1: "warning",
2: "danger",
3: "success",
};
return statusMap[status];
},
}, },
mounted() { handleCurrentChange(val) {
this.filterQuery.page = val.page;
this.getList();
}, },
components: {udiInfoSelect}, deleteDialog(rowId) {
created() { this.$confirm("此操作将删除该产品信息, 是否继续?", "提示", {
// this.getBasicThirdSys(); 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);
} else {
// console.log(files[0] + "\n" + this.fileList[0] + "\n" + fileList[0]);
this.getList(); this.getList();
this.$message.success("文件上传成功,请稍后刷新查看!");
}
},
statusFilterType(status) {
const statusMap = {
0: "warning",
1: "warning",
2: "danger",
3: "success",
};
return statusMap[status];
}, },
},
mounted() {
},
components: {udiInfoSelect},
created() {
// this.getBasicThirdSys();
this.getList();
},
}; };
</script> </script>
<style scoped> <style scoped>
.itemTag { .itemTag {
float: left; float: left;
text-align: left; text-align: left;
margin-top: 10px; margin-top: 10px;
width: 100px; width: 100px;
} }
.text { .text {
font-size: 13px; font-size: 13px;
font-family: "Microsoft YaHei"; font-family: "Microsoft YaHei";
} }
.el-row { .el-row {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
} }
.el-col { .el-col {
border-radius: 4px; border-radius: 4px;
flex-wrap: wrap; flex-wrap: wrap;
} }
</style> </style>

@ -136,6 +136,7 @@ import {isBlank} from "@/utils/strUtil";
export default { export default {
data() { data() {
return { return {
BASE_URL: process.env.VUE_APP_BASE_API,
filterQuery: { filterQuery: {
thirdSys: null, thirdSys: null,
key: "", key: "",
@ -408,11 +409,8 @@ export default {
}, },
init() { init() {
axios.get("./config.json").then(res => { let response = this.BASE_URL;
//
let response = res.data.BASE_URL;
this.uploadFileUrl = response + "udiwms/busstiness/file/upload"; this.uploadFileUrl = response + "udiwms/busstiness/file/upload";
});
}, },
handleChange(response, files, fileList) { handleChange(response, files, fileList) {
if (response.code != 20000) { if (response.code != 20000) {

@ -71,6 +71,7 @@ import {formatDate} from "@/utils/date";
export default { export default {
data() { data() {
return { return {
BASE_URL: process.env.VUE_APP_BASE_API,
showSearch: true, showSearch: true,
filterQuery: { filterQuery: {
genKey: null, genKey: null,
@ -154,8 +155,7 @@ export default {
this.thrCorpSelectVisible = true; this.thrCorpSelectVisible = true;
}, },
downloadExcel(row) { downloadExcel(row) {
axios.get("./config.json").then(res => { let baseUrl = this.BASE_URL
let baseUrl = res.data.BASE_URL;
let href = baseUrl + "/udiwms/thrCorp/exportLog/download" + let href = baseUrl + "/udiwms/thrCorp/exportLog/download" +
"?genKey=" + row.genKey; "?genKey=" + row.genKey;
let a = document.createElement("a"); let a = document.createElement("a");
@ -170,7 +170,6 @@ export default {
a.click(); a.click();
this.getList(); this.getList();
}); });
});
}, },
cancelDialog(val) { cancelDialog(val) {

@ -68,6 +68,7 @@ import axios from "axios";
export default { export default {
data() { data() {
return { return {
BASE_URL: process.env.VUE_APP_BASE_API,
showSearch: true, showSearch: true,
filterQuery: { filterQuery: {
genKey: null, genKey: null,
@ -153,8 +154,7 @@ export default {
this.thrCorpSelectVisible = true; this.thrCorpSelectVisible = true;
}, },
downloadExcel(row) { downloadExcel(row) {
axios.get("./config.json").then(res => { let baseUrl = this.BASE_URL
let baseUrl = res.data.BASE_URL;
let href = baseUrl + "/udiwms/thrCorp/exportLog/download" + let href = baseUrl + "/udiwms/thrCorp/exportLog/download" +
"?genKey=" + row.genKey; "?genKey=" + row.genKey;
let a = document.createElement("a"); let a = document.createElement("a");
@ -171,7 +171,6 @@ export default {
a.click(); a.click();
this.getList(); this.getList();
}); });
});
}, },
cancelDialog(val) { cancelDialog(val) {

@ -126,6 +126,7 @@ import axios from "axios";
export default { export default {
data() { data() {
return { return {
BASE_URL: process.env.VUE_APP_BASE_API,
showSearch: true, showSearch: true,
filterQuery: { filterQuery: {
genKey: null, genKey: null,
@ -334,11 +335,8 @@ export default {
this.list = []; this.list = [];
}); });
this.uploadData.thirdSys = this.filterQuery.thirdSysFk; this.uploadData.thirdSys = this.filterQuery.thirdSysFk;
axios.get("./config.json").then(res => { let response = this.BASE_URL;
let response = res.data.SERVER_IP;
this.templateDlUrl = response + "/第三方往来单位信息导入模板.xlsx"; this.templateDlUrl = response + "/第三方往来单位信息导入模板.xlsx";
});
} }
, ,
downloadDatas() { downloadDatas() {

@ -108,6 +108,7 @@ import axios from "axios";
export default { export default {
data() { data() {
return { return {
BASE_URL: process.env.VUE_APP_BASE_API,
showSearch: true, showSearch: true,
filterQuery: { filterQuery: {
genKey: null, genKey: null,
@ -191,8 +192,7 @@ export default {
this.thrInvProductsSelectVisible = true; this.thrInvProductsSelectVisible = true;
}, },
downloadExcel(row) { downloadExcel(row) {
axios.get("./config.json").then(res => { let baseUrl = this.BASE_URL
let baseUrl = res.data.BASE_URL;
let href = baseUrl + "/udiwms/invProducts/exportLog/download" + "?genKey=" + row.genKey; let href = baseUrl + "/udiwms/invProducts/exportLog/download" + "?genKey=" + row.genKey;
let a = document.createElement("a"); let a = document.createElement("a");
fetch(href) fetch(href)
@ -208,10 +208,6 @@ export default {
a.click(); a.click();
this.getList(); this.getList();
}); });
});
}, },
cancelDialog(val) { cancelDialog(val) {

@ -176,6 +176,7 @@ import axios from "axios";
export default { export default {
data() { data() {
return { return {
BASE_URL: process.env.VUE_APP_BASE_API,
showSearch: true, showSearch: true,
filterQuery: { filterQuery: {
genKey: null, genKey: null,
@ -327,12 +328,9 @@ export default {
this.loading = false; this.loading = false;
this.list = []; this.list = [];
}); });
axios.get("./config.json").then(res => {
let response = res.data.SERVER_IP;
this.templateDlUrl = response + "/第三方库存产品信息导入模板.xlsx";
console.log(this.templateDlUrl);
}); let response = this.BASE_URL;
this.templateDlUrl = response + "/第三方库存产品信息导入模板.xlsx";
}, },
jumpDl() { jumpDl() {

@ -75,6 +75,7 @@ import {formatDate} from "@/utils/date";
export default { export default {
data() { data() {
return { return {
BASE_URL: process.env.VUE_APP_BASE_API,
showSearch: true, showSearch: true,
filterQuery: { filterQuery: {
type: 1, type: 1,
@ -158,8 +159,7 @@ export default {
this.thrOrderSelectVisible = true; this.thrOrderSelectVisible = true;
}, },
downloadExcel(row) { downloadExcel(row) {
axios.get("./config.json").then(res => { let baseUrl = this.BASE_URL
let baseUrl = res.data.BASE_URL;
let href = baseUrl + "/udiwms/thrOrder/exportLog/download" + "?genKey=" + row.genKey; let href = baseUrl + "/udiwms/thrOrder/exportLog/download" + "?genKey=" + row.genKey;
let a = document.createElement("a"); let a = document.createElement("a");
var timestamp = formatDate(new Date(), "yyyyMMddhhmmss") var timestamp = formatDate(new Date(), "yyyyMMddhhmmss")
@ -173,7 +173,6 @@ export default {
a.click(); a.click();
this.getList(); this.getList();
}); });
});
}, },
cancelDialog(val) { cancelDialog(val) {

@ -129,6 +129,7 @@ import {selectIp} from "@/api/param/systemParamConfig";
export default { export default {
data() { data() {
return { return {
BASE_URL: process.env.VUE_APP_BASE_API,
showSearch: true, showSearch: true,
filterQuery: { filterQuery: {
genKey: null, genKey: null,
@ -278,14 +279,8 @@ export default {
this.loading = false; this.loading = false;
this.list = []; this.list = [];
}); });
axios.get("./config.json").then(res => { let response = this.BASE_URL;
// this.templateDlUrl = response + "/第三方业务单据导入模板.xlsx";
let response = res.data.BASE_URL;
// this.uploadFileUrl = response + "/udiwms/thrOrder/importLog/upload";
let response2 = res.data.SERVER_IP;
this.templateDlUrl = response2 + "/第三方业务单据导入模板.xlsx";
console.log(res.data.BASE_URL + "\n");
});
}, },
selectSysParam() { selectSysParam() {

@ -78,6 +78,7 @@ import {formatDate} from "../../../utils/date";
export default { export default {
data() { data() {
return { return {
BASE_URL: process.env.VUE_APP_BASE_API,
showSearch: true, showSearch: true,
filterQuery: { filterQuery: {
genKey: null, genKey: null,
@ -158,8 +159,7 @@ export default {
this.thrProductsSelectVisible = true; this.thrProductsSelectVisible = true;
}, },
downloadExcel(row) { downloadExcel(row) {
axios.get("./config.json").then(res => { let baseUrl = this.BASE_URL
let baseUrl = res.data.BASE_URL;
let href = baseUrl + "/udiwms/thrProducts/exportLog/download" + "?genKey=" + row.genKey; let href = baseUrl + "/udiwms/thrProducts/exportLog/download" + "?genKey=" + row.genKey;
let a = document.createElement("a"); let a = document.createElement("a");
var timestamp = formatDate(new Date(), "yyyyMMddhhmmss") var timestamp = formatDate(new Date(), "yyyyMMddhhmmss")
@ -173,8 +173,6 @@ export default {
a.click(); a.click();
this.getList(); this.getList();
}); });
});
}, },
cancelDialog(val) { cancelDialog(val) {

@ -135,6 +135,7 @@ import axios from "axios";
export default { export default {
data() { data() {
return { return {
BASE_URL: process.env.VUE_APP_BASE_API,
showSearch: true, showSearch: true,
filterQuery: { filterQuery: {
genKey: null, genKey: null,
@ -296,13 +297,9 @@ export default {
this.loading = false; this.loading = false;
this.list = []; this.list = [];
}); });
axios.get("./config.json").then(res => {
let response = res.data.SERVER_IP;
this.templateDlUrl = response + "/第三方产品信息导入模板.xls";
console.log(this.templateDlUrl);
});
let response = this.BASE_URL;
this.templateDlUrl = response + "/第三方产品信息导入模板.xls";
}, },
selectSysParam() { selectSysParam() {
let query = { let query = {

Loading…
Cancel
Save