导入导出bug修复

master
anthonywj 4 years ago
parent d201af0730
commit 4bb99949c6

@ -1,4 +1,4 @@
{
"BASE_URL":"http://127.0.0.1:9991",
"BASE_URL2": "ws://127.0.0.1:9991/api/websocket/"
"BASE_URL2": "ws://139.159.187.130:8080/api/websocket/"
}

@ -0,0 +1,95 @@
import axios from "../../utils/axios";
export function codeList(query) {
return axios({
url: "/admin/warehouse/inout/findByOrderId",
method: "get",
params: query
});
}
export function downloadInoutOrderSuccessPDF(query) {
return axios({
url: "/udiwms/pdf/download/inout/order/success",
method: "post",
data: query,
headers: {'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'},
responseType: 'arraybuffer', //一定要设置响应类型否则页面会是空白pdf
});
}
export function orderDetailPDFFromTemplateCode(query) {
return axios({
url: "/udiwms/pdf/template/order/detail/code",
method: "post",
data: query,
headers: {'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'},
responseType: 'arraybuffer', //一定要设置响应类型否则页面会是空白pdf
});
}
export function orderDetailPDFFromTemplateFile(query) {
return axios({
url: "/udiwms/pdf/template/order/detail/file",
method: "post",
data: query,
headers: {'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'},
responseType: 'arraybuffer', //一定要设置响应类型否则页面会是空白pdf
});
}
export function inspectionOrderDetailPDFFromTemplateCode(query) {
return axios({
url: "/udiwms/pdf/template/inspection/order/detail/code",
method: "post",
data: query,
});
}
export function inspectionOrderDetailPDFFromTemplateFile(query) {
return axios({
url: "/udiwms/pdf/template/inspection/order/detail/file",
method: "post",
data: query,
});
}
//---------打印码
export function inspectionStockQRCodeTextPDFFromTemplateFile(query) {
return axios({
url: "/udiwms/pdf/template/inspection/stock/qrcode/text/file",
method: "post",
data: query,
});
}
export function stockQRCodeTextPDFFromTemplateFile(query) {
return axios({
url: "/udiwms/pdf/template/stock/qrcode/text/file",
method: "post",
data: query,
headers: {'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'},
responseType: 'arraybuffer', //一定要设置响应类型否则页面会是空白pdf
});
}
//---------打印订单
export function inspectionStockOrderPDFFromTemplateFile(query) {
return axios({
url: "/udiwms/pdf/template/inspection/stock/order/file",
method: "post",
data: query,
});
}
export function stockOrderPDFFromTemplateFile(query) {
return axios({
url: "/udiwms/pdf/template/stock/order/file",
method: "post",
data: query,
headers: {'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'},
responseType: 'arraybuffer', //一定要设置响应类型否则页面会是空白pdf
});
}

@ -1,7 +1,7 @@
import axios from "axios";
export function getBaseUrl() {
axios.get("./config.json").then(res => {
axios.get("/config.json").then(res => {
// 基础地址
console.log(res.data.BASE_URL + "\n" + res.data.BASE_URL2)
return res.data.BASE_URL;

@ -0,0 +1,62 @@
/**
* Created by lk on 17/6/4.
*/
import axios from "../../utils/axios";
// 获取列表
export function systemPDFTemplateList(query) {
return axios({
url: "/system/pdf/template/list",
method: "get",
params: query
});
}
export function systemPDFModuleList(query) {
return axios({
url: "/system/pdf/module/list",
method: "get",
params: query
});
}
export function getSystemPDFModules(query) {
return axios({
url: "/system/pdf/module/pdfModules",
method: "get",
params: query
});
}
export function getSystemPDFTemplates(query) {
return axios({
url: "/system/pdf/template/pdfTemplates",
method: "get",
params: query
});
}
export function systemPDFTemplateSave(data, formName, method = "post") {
let url = formName === "add" ? "/system/pdf/template/save" : "/system/pdf/template/update";
return axios({
url: url,
method: method,
data: data
});
}
export function systemPDFModuleSave(data, formName, method = "post") {
let url = formName === "add" ? "/system/pdf/module/save" : "/system/pdf/module/update";
return axios({
url: url,
method: method,
data: data
});
}
export function systemPDFTemplateDeleteById(query) {
return axios({
url: "/system/pdf/template/delete",
method: "get",
params: query
});
}

@ -8,14 +8,17 @@ if (process.env.NODE_ENV === "development") {
import {ROUTER_MODE} from "../config/app";
import Home from "../views/home/index.vue";
import Empty from "../views/home/Empty.vue";
// 管理组相关
import authAdmin from "../views/userManage/admin/authAdmin.vue";
import authRole from "../views/userManage/admin/authRole.vue";
import authPermissionRule from "../views/userManage/admin/authPermissionRule.vue";
import systemParamConfig from "../views/userManage/param/systemParamConfig.vue";
import systemPDFTemplate from "../views/userManage/param/systemPDFTemplate";
import thirdSysApi from "../views/userManage/param/ThirdSysApiUpload.vue";
import thirdSysApiDownload from "../views/userManage/param/ThirdSysApiDownload.vue";
import showText from "../views/other/showText";
//基础数据维护
import BussinessType from "../views/basic/BussinessType.vue";
@ -186,6 +189,15 @@ export const asyncRouterMap = [
authRule: ["admin/systemParamConfig"]
}
},
{
path: "systemPDFTemplate",
component: systemPDFTemplate,
name: "打印模板管理",
icon: "",
meta: {
authRule: ["admin/system_pdf_template"]
}
},
{
path: "bussinessType",
name: "单据类型",
@ -338,10 +350,17 @@ export const asyncRouterMap = [
authRule: ["product"]
},
children: [
{
path: "productinfo",
path: "/udiinfo",
redirect: "/udiinfo/udiinfomg",
name: "医疗器械信息",
component: Empty,
meta: {
authRule: ["thrsys/thrProducts"]
},
children: [
{
path: "udiinfomg",
name: "医疗器械信息维护",
component: UdiInfoManage,
meta: {
@ -363,9 +382,17 @@ export const asyncRouterMap = [
meta: {
authRule: ["product/udiinfoExport"]
}
},]
},
{
path: "/unit",
redirect: "/unit/unitMaintain",
name: "往来单位信息",
component: Empty,
meta: {
authRule: ["thrsys/thrProducts"]
},
children: [
{
path: "unitMaintain",
name: "往来单位信息维护",
@ -390,6 +417,7 @@ export const asyncRouterMap = [
meta: {
authRule: ["basic/corpExport"]
}
},]
},
{
@ -414,15 +442,22 @@ export const asyncRouterMap = [
authRule: ["thrsys"]
},
children: [
{
path: "/products",
redirect: "/thrsys/thrProducts",
name: "产品信息",
component: Empty,
meta: {
authRule: ["thrsys/thrProducts"]
},
children: [
{
path: "thrProducts",
name: "产品信息查询",
component: thrProducts,
meta: {
authRule: ["thrsys/thrProducts"]
}
},
},
{
path: "thrProductsImport",
@ -440,6 +475,17 @@ export const asyncRouterMap = [
authRule: ["thrsys/thrProductsExport"]
}
},
]
},
{
path: "/corps",
redirect: "/thrsys/ThrCorps",
name: "往来单位",
component: Empty,
meta: {
authRule: ["thrsys/thrProducts"]
},
children: [
{
path: "ThrCorps",
name: "往来单位查询",
@ -464,8 +510,17 @@ export const asyncRouterMap = [
meta: {
authRule: ["thrsys/thrCorpsImport"]
}
}],
},
{
path: "/orders",
redirect: "/thrsys/ThrOrders",
name: "业务单据",
component: Empty,
meta: {
authRule: ["thrsys/thrProducts"]
},
children: [
{
path: "ThrOrders",
name: "业务单据查询",
@ -489,7 +544,18 @@ export const asyncRouterMap = [
meta: {
authRule: ["thrsys/thrOrderExport"]
}
},],
},
{
path: "/invProducts",
redirect: "/thrsys/ThrOrders",
name: "库存信息",
component: Empty,
meta: {
authRule: ["thrsys/thrProducts"]
},
children: [
{
path: "ThrInvProducts",
name: "库存信息查询",
@ -513,6 +579,7 @@ export const asyncRouterMap = [
meta: {
authRule: ["thrsys/thrInvProductsExport"]
}
},]
},
{
@ -660,4 +727,20 @@ export const asyncRouterMap = [
]
},
{
path: "/",
icon: "showText",
component: showText,
redirect: "showText",
name: "文本",
hidden: true,
noDropdown: true,
children: [
{
path: "showText",
component: showText,
name: "文本",
},
]
},
];

@ -93,10 +93,9 @@
</template>
<script>
import axios from "axios";
import {filterLog, deleteLog} from "../../api/basic/corpExport";
import corpSelect from "./CorpSelect";
import axios from "axios";
export default {
data() {
return {
@ -175,18 +174,17 @@
this.corpImportDetailVisible = true;
},
downloadExcel(row) {
let href =
"http://127.0.0.1:9991" +
"/udiwms/corps/exportLog/download" +
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");
fetch(href)
.then((res) => res.blob())
.then((blob) => {
// blob
a.href = URL.createObjectURL(blob);
console.log(a.href);
// a.download = ""; //
a.download =
row.filePath.split("/")[
row.filePath.split("/").length - 1
@ -195,11 +193,9 @@
a.click();
this.getList();
});
});
// a.setAttribute("download", "");
// a.setAttribute("href", href);
// a.click();
// window.open(mOrder.exportFilePath);
},
cancelDialog(val) {

@ -189,11 +189,6 @@
a.click();
this.getList();
});
// a.setAttribute("download", "");
// a.setAttribute("href", href);
// a.click();
// window.open(mOrder.exportFilePath);
},
cancelDialog(val) {

@ -175,18 +175,16 @@
this.udiImportDetailVisible = true;
},
downloadExcel(row) {
let href =
"http://127.0.0.1:9991" +
"/udiwms/products/exportLog/download" +
"?genKey=" + row.genKey;
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");
fetch(href)
.then((res) => res.blob())
.then((blob) => {
// blob
a.href = URL.createObjectURL(blob);
console.log(a.href);
// a.download = ""; //
a.download =
row.filePath.split("/")[
row.filePath.split("/").length - 1
@ -196,10 +194,9 @@
this.getList();
});
// a.setAttribute("download", "");
// a.setAttribute("href", href);
// a.click();
// window.open(mOrder.exportFilePath);
});
},
cancelDialog(val) {

@ -0,0 +1,13 @@
<template>
<router-view></router-view>
</template>
<script>
export default {
name: "Empty"
}
</script>
<style scoped>
</style>

@ -217,7 +217,7 @@
import { repeatCheck } from "../../api/inout/erpOrder";
import {getBasicUnitMaintains} from "../../api/basic/basicUnitMaintain"
import draggable from "vuedraggable";
import codeDetail from "./IONewCode";
import codeDetail from "./IOFinishCode";
const formJson = {
site_id: "",

@ -0,0 +1,45 @@
<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>
import {BASE_URL} from "../../config/app";
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>

@ -95,7 +95,7 @@
<script>
import {filterLog, deleteLog} from "../../api/thrsys/thrCorpsExport.js";
import thrCorpSelect from "./ThrCorpSelect";
import axios from "axios";
export default {
data() {
return {
@ -178,18 +178,16 @@
this.thrCorpSelectVisible = true;
},
downloadExcel(row) {
let href =
"http://127.0.0.1:9991" +
"/udiwms/thrCorp/exportLog/download" +
axios.get("/config.json").then(res => {
let baseUrl = res.data.BASE_URL;
let href = baseUrl + "/udiwms/thrCorp/exportLog/download" +
"?genKey=" + row.genKey;
let a = document.createElement("a");
fetch(href)
.then((res) => res.blob())
.then((blob) => {
// blob
a.href = URL.createObjectURL(blob);
console.log(a.href);
// a.download = ""; //
a.download =
row.filePath.split("/")[
row.filePath.split("/").length - 1
@ -198,11 +196,7 @@
a.click();
this.getList();
});
// a.setAttribute("download", "");
// a.setAttribute("href", href);
// a.click();
// window.open(mOrder.exportFilePath);
});
},
cancelDialog(val) {

@ -95,7 +95,7 @@
<script>
import {filterLog, deleteLog} from "../../api/thrsys/thrInvProductsExport.js";
import thrInvProductsSelect from "./ThrInvProductsSelect";
import axios from "axios";
export default {
data() {
return {
@ -178,18 +178,15 @@
this.thrInvProductsSelectVisible = true;
},
downloadExcel(row) {
let href =
"http://127.0.0.1:9991" +
"/udiwms/invProducts/exportLog/download" +
"?genKey=" +row.genKey;
axios.get("/config.json").then(res => {
let baseUrl = res.data.BASE_URL;
let href = baseUrl + "/udiwms/invProducts/exportLog/download" + "?genKey=" +row.genKey;
let a = document.createElement("a");
fetch(href)
.then((res) => res.blob())
.then((blob) => {
// blob
a.href = URL.createObjectURL(blob);
console.log(a.href);
// a.download = ""; //
a.download =
row.filePath.split("/")[
row.filePath.split("/").length - 1
@ -199,10 +196,9 @@
this.getList();
});
// a.setAttribute("download", "");
// a.setAttribute("href", href);
// a.click();
// window.open(mOrder.exportFilePath);
});
},
cancelDialog(val) {

@ -38,7 +38,7 @@
<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="clearAll"></el-button>
<!--<el-button type="primary" icon="search" @click="clearAll"></el-button>-->
<!--<el-upload-->
<!--v-if="!this.thirdSysDetail.enabled"-->
<!--:action="uploadFileUrl"-->
@ -112,6 +112,7 @@
data() {
return {
filterQuery: {
billAction:null,
billNo: "",
thirdSysFk: "",
page: 1,
@ -128,6 +129,7 @@
uploadData: {
thirdSys: "thirdId",
},
loading:false,
};
},
@ -140,7 +142,7 @@
billNo: "",
thirdSysFk: "",
billFlag: null,
billAction: "PurchaseWareHouseIn",
billAction: null,
startDate: null,
endDate: null,
page: 1,
@ -251,7 +253,7 @@
this.uploadData.thirdSys = this.filterQuery.thirdSysFk;
this.selectSysParam();
this.getThirdSysDetail();
this.getList();
this.getBusType();
})
.catch(() => {
this.loading = false;
@ -322,6 +324,7 @@
.then((response) => {
this.busTypes = response.data.list || [];
this.filterQuery.billAction = this.busTypes[0].action;
// this.getList();
})
.catch(() => {
});
@ -333,7 +336,7 @@
},
created() {
this.getBasicThirdSys();
this.getBusType();
},
};
</script>

@ -95,6 +95,7 @@
<script>
import {filterLog, deleteLog} from "../../api/thrsys/thrOrderExport";
import thrOrderSelect from "./ThrOrderSelect";
import axios from "axios";
export default {
data() {
@ -178,18 +179,15 @@
this.thrOrderSelectVisible = true;
},
downloadExcel(row) {
let href =
"http://127.0.0.1:9991" +
"/udiwms/thrOrder/exportLog/download" +
"?genKey=" + row.genKey;
axios.get("/config.json").then(res => {
let baseUrl = res.data.BASE_URL;
let href = baseUrl + "/udiwms/thrOrder/exportLog/download" + "?genKey=" + row.genKey;
let a = document.createElement("a");
fetch(href)
.then((res) => res.blob())
.then((blob) => {
// blob
a.href = URL.createObjectURL(blob);
console.log(a.href);
// a.download = ""; //
a.download =
row.filePath.split("/")[
row.filePath.split("/").length - 1
@ -198,11 +196,7 @@
a.click();
this.getList();
});
// a.setAttribute("download", "");
// a.setAttribute("href", href);
// a.click();
// window.open(mOrder.exportFilePath);
});
},
cancelDialog(val) {

@ -15,18 +15,6 @@
</el-select>
</el-form-item>
<el-form-item class="query-form-item">
<el-select v-model="filterQuery.billAction" placeholder="请选择业务类型">
<el-option
v-for="item in busTypes"
:key="item.name"
:label="item.name"
:value="item.action">
<span style="float: left">{{ item.name }}</span>
<!--<span style="float: right; color: #8492a6; font-size: 13px">{{ item.action }}</span>-->
</el-option>
</el-select>
</el-form-item>
<el-form-item class="query-form-item">
<el-select v-model="filterQuery.thirdSysFk" placeholder="请选择第三方系统">
<el-option

@ -31,7 +31,7 @@
<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="clearAll"></el-button>
<!--<el-button type="primary" icon="search" @click="clearAll"></el-button>-->
<!--<el-upload-->
<!--v-if="!this.thirdSysDetail.enabled"-->
<!--:action="uploadFileUrl"-->
@ -119,6 +119,7 @@
},
thrProductsDetailVisible: false,
thisData: null,
loading:false
};
},
@ -141,6 +142,7 @@
this.loading = true;
getInvbasdoc(this.filterQuery)
.then((response) => {
// this.loading = false;
if (response.code == 20000) {
this.list = response.data.list || [];
this.total = response.data.total || 0;
@ -296,7 +298,6 @@
},
created() {
this.getBasicThirdSys();
},
};
</script>

@ -95,7 +95,7 @@
<script>
import {filterLog, deleteLog} from "../../api/thrsys/thrProductsExport.js";
import thrProductsSelect from "./ThrProductsSelect";
import axios from "axios";
export default {
data() {
return {
@ -176,31 +176,25 @@
this.thrProductsSelectVisible = true;
},
downloadExcel(row) {
let href =
"http://127.0.0.1:9991" +
"/udiwms/thrProducts/exportLog/download" +
"?genKey=" + row.genKey;
axios.get("/config.json").then(res => {
let baseUrl = res.data.BASE_URL;
let href = baseUrl + "/udiwms/thrProducts/exportLog/download" + "?genKey=" + row.genKey;
let a = document.createElement("a");
fetch(href)
.then((res) => res.blob())
.then((blob) => {
// blob
a.href = URL.createObjectURL(blob);
console.log(a.href);
// a.download = ""; //
a.download =
row.filePath.split("/")[
row.filePath.split("/").length - 1
]; // //
];
document.body.appendChild(a);
a.click();
this.getList();
});
});
// a.setAttribute("download", "");
// a.setAttribute("href", href);
// a.click();
// window.open(mOrder.exportFilePath);
},
cancelDialog(val) {

@ -0,0 +1,727 @@
<template>
<div>
<el-card class="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="query.name" placeholder="模板名称"></el-input>
</el-form-item>
<el-form-item>
<el-button-group>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="search" @click="onSubmit"></el-button>
<el-button type="primary" icon="search" @click="handleForm(null, null)">新增模板</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 type="index" label="序号" width="50">序号</el-table-column>
<el-table-column label="模板名称" prop="name" width="200"></el-table-column>
<el-table-column label="所属模块" width="150">
<template slot-scope="scope">
{{ moduleNameMap[scope.row.module] }}
</template>
</el-table-column>
<el-table-column label="表格行数" prop="rowCount" width="100"></el-table-column>
<el-table-column label="二维码数量" prop="qrcodeCount" width="125"></el-table-column>
<el-table-column label="备注" prop="remark"></el-table-column>
<el-table-column label="操作" fixed="right" width="250">
<template slot-scope="scope">
<el-button
type="text"
size="small"
@click.native="handleForm(scope.$index, scope.row)"
>设置
</el-button
>
<el-button
type="text"
size="small"
@click.native="deleteTemplate(scope.row)"
>删除
</el-button
>
</template>
</el-table-column>
</el-table>
<el-pagination
:page-size="query.limit"
@current-change="handleCurrentChange"
layout="prev, pager, next"
:total="total"
>
</el-pagination>
</el-card>
<el-card class="el-card">
<el-table v-loading="moduleLoading" :data="moduleList" style="width: 100%">
<el-table-column type="index" label="序号" width="50">序号</el-table-column>
<el-table-column label="模块名称" prop="name" width="250"></el-table-column>
<el-table-column label="模板名称" width="250">
<template slot-scope="scope">
<p v-if="scope.row.templateName === null">
<el-button
type="primary"
size="mini"
@click.native.stop="moduleSelectTemplate(scope.row)"
>选择模板
</el-button
>
</p>
<p v-if="scope.row.templateName !== null">
<el-button
type="primary"
size="mini"
@click.native.stop="moduleSelectTemplate(scope.row)"
>{{ scope.row.templateName }}
</el-button
>
</p>
</template>
</el-table-column>
<el-table-column label="备注" prop="remark"></el-table-column>
<el-table-column label="操作" fixed="right" width="250">
<template slot-scope="scope">
<!-- <el-button-->
<!-- type="text"-->
<!-- size="small"-->
<!-- :disabled="scope.row.templateName === undefined || scope.row.templateName === null || scope.row.templateName === ''"-->
<!-- @click.native="handleForm(scope.$index, scope.row)"-->
<!-- >预览-->
<!-- </el-button-->
<!-- >-->
<el-button
type="text"
size="small"
@click.native="showFieldExpain(scope.row)"
>字段说明
</el-button
>
</template>
</el-table-column>
</el-table>
<el-pagination
:page-size="moduleQuery.limit"
@current-change="moduleHandleCurrentChange"
layout="prev, pager, next"
:total="moduleTotal"
>
</el-pagination>
</el-card>
<!--表单-->
<el-dialog
:title="formMap[formName]"
:visible.sync="formVisible"
:before-close="hideForm"
width="85%"
top="5vh"
>
<el-form :model="formData" :rules="formRules" ref="dataForm">
<!-- <el-row :gutter="20">-->
<!-- <el-col :span="2">-->
<!-- <div class="ao-text">-->
<!-- <span>模板名称</span>-->
<!-- </div>-->
<!-- <div class="ao-text">-->
<!-- <span>模板名称</span>-->
<!-- </div>-->
<!-- </el-col>-->
<!-- <el-col :span="8">-->
<!-- <el-form-item prop="name">-->
<!-- <el-input v-model="formData.name" auto-complete="off" :disabled="false"></el-input>-->
<!-- </el-form-item>-->
<!-- <el-form-item label="所属模块" prop="type">-->
<!-- <el-select v-model="formData.type" placeholder="所属模块">-->
<!-- <el-option label="订单详情" value="1"></el-option>-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
<!-- <el-col :span="2">-->
<!-- <div class="ao-text">-->
<!-- <span>备注</span>-->
<!-- </div>-->
<!-- </el-col>-->
<!-- <el-col :span="8">-->
<!-- <el-form-item prop="type">-->
<!-- <el-input type="textarea" v-model="formData.remark" rows=6></el-input>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
<!-- </el-row>-->
<el-form-item label="模板名称" prop="name">
<el-input v-model="formData.name" auto-complete="off" :disabled="false"></el-input>
</el-form-item>
<el-form-item label="备注">
<el-input type="textarea" v-model="formData.remark" rows=6></el-input>
</el-form-item>
<!-- <el-form-item label="所属模块" prop="type">-->
<!-- <el-select v-model="formData.type" placeholder="所属模块">-->
<!-- <el-option label="订单详情" value="1"></el-option>-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<el-row :gutter="20">
<el-col :span="2">
<div class="ao-text">
<span>表格行数</span>
</div>
</el-col>
<el-col :span="8">
<el-form-item prop="uploadUrl">
<el-input-number v-model="formData.rowCount" :min="1" :max="30" label=""></el-input-number>
</el-form-item>
</el-col>
<el-col :span="2">
<div class="ao-text">
<span>二维码数量</span>
</div>
</el-col>
<el-col :span="8">
<el-form-item prop="uploadUrl">
<el-input-number v-model="formData.qrcodeCount" :min="1" :max="100" label=""></el-input-number>
</el-form-item>
</el-col>
</el-row>
<el-row :gutter="20">
<el-col :span="2">
<div class="ao-text">
<span>选择PDF模板</span>
</div>
</el-col>
<el-col :span="8">
<el-form-item label="">
<el-upload
class="upload-demo"
ref="upload"
:action="this.uploadUrl"
:on-preview="uploadHandlePreview"
:on-remove="uploadHandleRemove"
:limit="1"
:on-exceed="uploadHandleExceed"
accept=".pdf"
:on-change="uploadOnchange"
:on-success="uploadHandleSuccess"
:on-error="uploadHandleError"
:file-list="fileList"
:auto-upload="false">
<el-button slot="trigger" size="small" type="primary" :disabled="uploadDisabled">选取文件</el-button>
<!-- <el-button style="margin-left: 10px;" size="small" type="success" @click="submitUpload"></el-button>-->
<div slot="tip" class="el-upload__tip">只能上传 pdf 文件且不超过 2 MB</div>
</el-upload>
</el-form-item>
</el-col>
<el-col :span="2">
<div class="ao-text">
<span>所属模块</span>
</div>
</el-col>
<el-col :span="8">
<el-form-item prop="module">
<el-select v-model="formData.module" placeholder="所属模块">
<el-option
v-for="item in moduleNameList"
:key="item.idStr"
:label="item.name"
:value="item.idStr"
></el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click.native="hideForm">取消</el-button>
<el-button
type="primary"
@click.native="submitUpload()"
:loading="formLoading"
>提交
</el-button
>
</div>
</el-dialog>
<!-- 模块选择模板 -->
<el-dialog
title="选择模板"
:visible.sync="moduleFormVisible"
:before-close="moduleHideForm"
width="45%"
top="5vh"
>
<el-form ref="singleTable">
<el-table v-loading="selectTemplateLoading" :data="selectTemplateList" style="width: 100%"
highlight-current-row
@current-change="moduleSelectHandleCurrentChange">
<el-table-column type="index" label="序号" width="50">序号</el-table-column>
<el-table-column label="模板名称" prop="name" width="200"></el-table-column>
<el-table-column label="备注" prop="remark"></el-table-column>
</el-table>
<el-pagination
:page-size="selectTemplateQuery.limit"
@current-change="moduleHandleCurrentChange"
layout="prev, pager, next"
:total="selectTemplateTotal"
>
</el-pagination>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click.native="moduleHideForm">取消</el-button>
<el-button
type="primary"
@click.native="moduleSubmitSelectTemplate()"
:loading="moduleFormLoading"
>确定
</el-button
>
</div>
</el-dialog>
</div>
</template>
<script>
import {
systemPDFTemplateList,
systemPDFTemplateSave,
systemPDFTemplateDeleteById,
systemPDFModuleList,
systemPDFModuleSave,
getSystemPDFModules
} from "../../../api/param/systemPDFTemplate";
import {BASE_URL} from "../../../config/app";
import {authRoleAuthList} from "../../../api/auth/authRole";
const formJson = {
id: "",
name: "",
type: "2",
module: "1",
param: "",
path: "",
rowCount: 10,
qrcodeCount: 1,
remark: "",
};
const moduleFormJson = {
id: "",
templateId: 0,
};
export default {
data() {
return {
query: {
name: "",
page: 1,
limit: 20
},
list: [],
total: 0,
moduleQuery: {
name: "",
page: 1,
limit: 20
},
moduleList: [],
moduleNameList: [],
moduleTotal: 0,
selectTemplateQuery: {
name: "",
module: null,
page: 1,
limit: 20
},
selectTemplateList: [],
selectTemplateTotal: 0,
selectTemplateLoading: false,
moduleSelectQuery: {
name: "",
page: 1,
limit: 20
},
moduleSelectList: [],
moduleSelectTotal: 0,
loading: true,
index: null,
formName: null,
moduleFormName: null,
formMap: {
add: "新增",
update: "设置"
},
formLoading: false,
formVisible: false,
moduleFormLoading: false,
moduleFormVisible: false,
formData: formJson,
moduleFormData: moduleFormJson,
formRules: {
name: [
{required: true, message: "请输入模板名称", trigger: "blur"}
],
module: [
{required: true, message: "请选择所属模块", trigger: "blur"}
]
},
deleteLoading: false,
uploadUrl: "",
fileList: [],
uploadDisabled: false,
moduleLoading: false,
moduleNameMap: {1: "订单详情"},
};
},
methods: {
onReset() {
this.$router.push({
path: ""
});
this.query = {
name: "",
page: 1,
limit: 20
};
this.getList();
},
onSubmit() {
this.getList();
},
handleCurrentChange(val) {
this.query.page = val;
this.getList();
},
moduleHandleCurrentChange(val) {
this.moduleQuery.page = val;
this.getModuleList();
},
getList() {
this.loading = true;
systemPDFTemplateList(this.query)
.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;
});
},
getModuleList() {
this.moduleLoading = true;
systemPDFModuleList(this.moduleQuery)
.then(response => {
this.moduleLoading = false;
this.moduleList = response.data.list || [];
this.moduleTotal = response.data.total || 0;
})
.catch(() => {
this.moduleLoading = false;
this.moduleList = [];
this.moduleTotal = 0;
});
},
//
resetForm() {
if (this.$refs["dataForm"]) {
//
this.$refs["dataForm"].clearValidate();
//
this.$refs["dataForm"].resetFields();
this.getList();
}
},
//
hideForm() {
//
this.formVisible = !this.formVisible;
return true;
},
moduleHideForm() {
this.moduleFormVisible = !this.moduleFormVisible;
this.selectTemplateQuery.module = null;
return true;
},
moduleSelectTemplate(row) {
this.moduleFormData = {
id: row.id,
templateId: row.templateId,
};
this.moduleFormVisible = true;
this.selectTemplateQuery = {
name: "",
module: row.id,
page: 1,
limit: 20
};
this.selectTemplateGetList();
},
selectTemplateGetList() {
console.log(this.selectTemplateQuery)
this.selectTemplateLoading = true;
systemPDFTemplateList(this.selectTemplateQuery)
.then(response => {
this.selectTemplateLoading = false;
this.selectTemplateList = response.data.list || [];
this.selectTemplateTotal = response.data.total || 0;
})
.catch(() => {
this.selectTemplateLoading = false;
this.selectTemplateList = [];
this.selectTemplateTotal = 0;
});
},
previewTemplate(row) {
console.log(row)
},
showFieldExpain(row) {
const {href} = this.$router.resolve({//
path: '/showText',
query: {
content: row.fieldExplain
}
})
window.open(href, '_blank')
},
//
handleForm(index, row) {
this.formVisible = true;
this.formData = JSON.parse(JSON.stringify(formJson));
this.fileList = [];
if (row !== null) {
this.formData = Object.assign({}, row);
this.formData.module = row.module + "";
}
this.formName = "add";
this.uploadDisabled = false;
if (index !== null) {
this.index = index;
this.formName = "update";
this.uploadDisabled = true;
}
},
templateConfig(row) {
},
submitUpload() {
if (this.$refs.upload.uploadFiles.length < 1 && !this.uploadDisabled) {
this.$message.warning(`请选择PDF文件`);
}
console.log(this.formName)
this.$refs["dataForm"].validate(valid => {
if (valid) {
if (!this.uploadDisabled) {
this.$refs.upload.submit();
} else {
this.submitTemplate();
}
}
});
},
uploadHandleRemove(file, fileList) {
console.log(file, fileList);
},
uploadHandlePreview(file) {
console.log(file);
console.log(this.fileList);
},
uploadHandleExceed(files, fileList) {
this.$message.warning(`当前限制选择 1 个文件,本次选择了 ${files.length} 个文件,共选择了 ${files.length + fileList.length} 个文件`);
},
uploadOnchange(file, fileList) {
let fileName = file.name;
let uid = file.uid
let pos = fileName.lastIndexOf(".");
let lastName = fileName.substring(pos, fileName.length);
if (lastName.toLowerCase() !== ".pdf") {
this.$message.error("上传文件只能是 pdf 格式");
for (let i = 0; i < fileList.length; i++) {//list
if (fileList[i].uid === uid) {
fileList.splice(i, 1)
}
}
return;
}
//
const isLt = file.size / 1024 / 1024 / 2 <= 1;
if (!isLt) {
this.$message.error("上传文件大小不能超过 2MB");
for (let i = 0; i < fileList.length; i++) {
if (fileList[i].uid === uid) {
fileList.splice(i, 1)
}
}
}
return isLt;
},
uploadHandleSuccess(response, file, fileList) {
console.log(response)
if (response.code === 20000) {
this.formData.path = response.data.path;
this.submitTemplate();
} else {
this.$message.error("上传失败:" + response.message);
}
},
uploadHandleError() {
},
submitTemplate() {
console.log(this.formData)
this.$refs["dataForm"].validate(valid => {
if (valid) {
this.formLoading = true;
let data = Object.assign({}, this.formData);
data.name = data.name.trim();
systemPDFTemplateSave(data, this.formName)
.then(response => {
this.formLoading = false;
if (response.code !== 20000) {
this.$message.error(response.message);
return false;
}
this.$message.success("操作成功");
this.formVisible = false;
if (this.formName === "add") {
//
if (response.data && response.data.id) {
data.id = response.data.id;
this.list.unshift(data);
}
} else {
this.list.splice(this.index, 1, data);
}
//
this.resetForm();
this.getList();
this.getModuleList();
})
.catch(() => {
this.formLoading = false;
});
}
});
},
deleteTemplate(row) {
this.$confirm("此操作将永久删除该模板, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
}).then(() => {
systemPDFTemplateDeleteById({ id: row.id, path: row.path })
.then(response => {
console.log(response)
if (response.code === 20000) {
this.$message.success(response.data);
//
this.resetForm();
this.getList();
} else {
this.$message.error(response.message);
}
})
.catch(() => {
})
}).catch(() => {
});
},
moduleSelectSetCurrent(row) {
this.$refs.singleTable.setCurrentRow(row);
},
moduleSelectHandleCurrentChange(val) {
this.moduleFormData.templateId = val.id;
console.log(val)
console.log(this.moduleFormData)
},
moduleSubmitSelectTemplate() {
this.moduleFormLoading = true;
let data = Object.assign({}, this.moduleFormData);
this.moduleFormName = 'update';
systemPDFModuleSave(data, this.moduleFormName)
.then(response => {
this.moduleFormLoading = false;
if (response.code !== 20000) {
this.$message.error(response.message);
return false;
}
this.$message.success("操作成功");
this.moduleFormVisible = false;
if (this.moduleFormName === "add") {
//
if (response.data && response.data.id) {
data.id = response.data.id;
this.moduleList.unshift(data);
}
} else {
this.moduleList.splice(this.index, 1, data);
}
this.getModuleList();
})
.catch(() => {
this.moduleFormLoading = false;
});
},
getPDFModuleNameList() {
getSystemPDFModules()
.then((response) => {
this.moduleNameList = response.data.list;
this.moduleNameMap = {};
this.moduleNameList.forEach((obj, index) => {
console.log(obj)
this.moduleNameMap[obj.id] = obj.name;
});
console.log(this.moduleNameMap)
})
.catch(() => {
});
},
},
filters: {
paramStatusFilterType(paramStatus) {
const paramStatusTypeMap = {
0: "gray",
1: "success"
};
return paramStatusTypeMap[paramStatus];
},
paramStatusFilterName(paramStatus) {
const paramStatusNameMap = {
1: "订单详情",
2: "配货管理-打印订单"
};
return paramStatusNameMap[paramStatus];
}
},
mounted() {
},
created() {
this.getPDFModuleNameList();
//
this.getList();
this.getModuleList();
this.uploadUrl = BASE_URL + "/udiwms/upload/pdf/template";
}
};
</script>
<style type="text/scss" lang="scss">
</style>
Loading…
Cancel
Save