曹晨晨 2 years ago
commit 550778d417

@ -5,7 +5,7 @@ VUE_APP_TITLE = 供应商自助管理系统
ENV = 'development' ENV = 'development'
# 若依管理系统/开发环境 # 若依管理系统/开发环境
VUE_APP_BASE_API = '/dev-api' VUE_APP_BASE_API = 'http://localhost:9993/dev-api/'
# 应用访问路径 例如使用前缀 /admin/ # 应用访问路径 例如使用前缀 /admin/
VUE_APP_CONTEXT_PATH = '/' VUE_APP_CONTEXT_PATH = '/'

@ -5,8 +5,8 @@
"author": "LionLi", "author": "LionLi",
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {
"dev": "vue-cli-service serve", "dev": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --mode development",
"build:prod": "vue-cli-service build", "build:prod": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service build --mode production",
"preview": "node build/index.js --preview", "preview": "node build/index.js --preview",
"lint": "eslint --ext .js,.vue src" "lint": "eslint --ext .js,.vue src"
}, },

@ -13,12 +13,21 @@ export function getBasicHospType(query) {
export function getListMenu(query) { export function getListMenu(query) {
return axios({ return axios({
url: "/udiwms/basic/hosp/type/menuList", url: "/udiwms/basic/hosp/type/menuList",
method: "post",
data: query
});
}
export function getOneName(query) {
return axios({
url: "/udiwms/basic/hosp/type/getOneName",
method: "get", method: "get",
params: query params: query
}); });
} }
export function saveBasicHospType(query) { export function saveBasicHospType(query) {
return axios({ return axios({
url: "/udiwms/basic/hosp/type/save", url: "/udiwms/basic/hosp/type/save",

@ -43,3 +43,12 @@ export function updateConfig(query) {
}); });
} }
export function infoByStatus(query) {
return axios({
url: "/spssync/basic/udiinfo/infoByStatus",
method: "post",
data: query,
responseType: 'blob'
});
}

@ -86,7 +86,7 @@ service.interceptors.response.use(res => {
if (res.request.responseType === 'blob' || res.request.responseType === 'arraybuffer') { if (res.request.responseType === 'blob' || res.request.responseType === 'arraybuffer') {
return res.data return res.data
} }
if (code === 401) { if (code === 2) {
if (!isRelogin.show) { if (!isRelogin.show) {
isRelogin.show = true; isRelogin.show = true;
MessageBox.confirm('登录状态已过期,您可以继续留在该页面,或者重新登录', '系统提示', { MessageBox.confirm('登录状态已过期,您可以继续留在该页面,或者重新登录', '系统提示', {

@ -152,7 +152,7 @@
</el-table-column> </el-table-column>
<el-table-column label="价格" prop="price"></el-table-column> <el-table-column label="价格" prop="price"></el-table-column>
<el-table-column label="生产企业" prop="ylqxzcrbarmc"></el-table-column> <el-table-column label="生产企业" prop="ylqxzcrbarmc"></el-table-column>
<el-table-column label="注册/备案号" prop="zczbhhzbapzbh"></el-table-column> <el-table-column label="注册/备案号" prop="certCode"></el-table-column>
</el-table> </el-table>
<pagination <pagination

@ -140,7 +140,7 @@
<el-table-column label="物资名称" prop="cpmctymc" width="160" show-overflow-tooltip></el-table-column> <el-table-column label="物资名称" prop="cpmctymc" width="160" show-overflow-tooltip></el-table-column>
<el-table-column label="规格型号" prop="ggxh" width="160" show-overflow-tooltip></el-table-column> <el-table-column label="规格型号" prop="ggxh" width="160" show-overflow-tooltip></el-table-column>
<el-table-column label="注册/备案号" prop="zczbhhzbapzbh" width="160" show-overflow-tooltip></el-table-column> <el-table-column label="注册/备案号" prop="zczbhhzbapzbh" width="160" show-overflow-tooltip></el-table-column>
<el-table-column label="生产企业" prop="ylqxzcrbarmc" width="180" show-overflow-tooltip></el-table-column> <el-table-column label="注册/备案人" prop="ylqxzcrbarmc" width="180" show-overflow-tooltip></el-table-column>
<el-table-column label="集采状态" prop="groupBuy" width="120" show-overflow-tooltip> <el-table-column label="集采状态" prop="groupBuy" width="120" show-overflow-tooltip>
<template slot-scope="scope"> <template slot-scope="scope">
<el-tag :type="(scope.row.groupBuy) | statusFilterType"> <el-tag :type="(scope.row.groupBuy) | statusFilterType">

@ -578,7 +578,7 @@ import ProductSingleEdit from "@/views/basic/product/productSingleEdit";
import selectErp from "./udiInfoselectErpUdi"; import selectErp from "./udiInfoselectErpUdi";
import "@riophae/vue-treeselect/dist/vue-treeselect.css"; import "@riophae/vue-treeselect/dist/vue-treeselect.css";
import Treeselect from "@riophae/vue-treeselect"; import Treeselect from "@riophae/vue-treeselect";
import {getListMenu} from "@/api/basic/basicHospType"; import { getListMenu, getOneName } from '@/api/basic/basicHospType'
export default { export default {
@ -849,12 +849,15 @@ export default {
} }
}, },
getTreeselect() { getTreeselect() {
getListMenu().then(response => { getOneName().then(res =>{
this.fromDeptOptions = []; const menu = {id: res.data.id,code:res.data.code, name: res.data.name, children: []};
const menu = {id: 0, name: '主类目', children: []}; getListMenu({}).then(response => {
menu.children = this.handleTree(response.data, "code", "parentCode"); this.fromDeptOptions = [];
this.fromDeptOptions.push(menu); menu.children = this.handleTree(response.data,"code", "parentCode");
}); console.log(menu)
this.fromDeptOptions.push(menu);
});
})
}, },
/** 转换菜单数据结构 */ /** 转换菜单数据结构 */
normalizer(node) { normalizer(node) {

@ -32,7 +32,7 @@
<el-table-column label="操作" class-name="small-padding fixed-width"> <el-table-column label="操作" class-name="small-padding fixed-width">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button type="text" @click="handleSubForm( scope.row, 'add')">新增</el-button> <el-button type="text" @click="handleSubForm( scope.row, 'add')">新增</el-button>
<el-button type="text" v-if="scope.row.code!=10000" @click.native.stop="handleSubForm( scope.row, 'edit')"></el-button> <el-button type="text" @click.native.stop="handleSubForm( scope.row, 'edit')">编辑</el-button>
<el-button type="text" v-if="scope.row.code!=10000" @click.native.stop="handleDelInv(scope.row)"></el-button> <el-button type="text" v-if="scope.row.code!=10000" @click.native.stop="handleDelInv(scope.row)"></el-button>
<el-button type="text" v-if="scope.row.code!=10000" @click.native.stop="addHospProduct( scope.row)"></el-button> <el-button type="text" v-if="scope.row.code!=10000" @click.native.stop="addHospProduct( scope.row)"></el-button>
<el-button type="text" v-if="scope.row.code!=10000" @click.native.stop="removeHospProduct(scope.row)"></el-button> <el-button type="text" v-if="scope.row.code!=10000" @click.native.stop="removeHospProduct(scope.row)"></el-button>
@ -54,10 +54,11 @@
<el-col :span="12" class="el-col"> <el-col :span="12" class="el-col">
<el-form-item label="上级菜单" prop="parentCode"> <el-form-item label="上级菜单" prop="parentCode">
<treeselect <treeselect
:disabled="formName=='add'" :disabled="formName=='add' || subData.code==10000"
v-model="subData.parentCode" v-model="subData.parentCode"
:options="fromDeptOptions" :options="fromDeptOptions"
:normalizer="normalizer" :normalizer="normalizer"
:clearable = "false"
:show-count="true" :show-count="true"
placeholder="选择上级菜单" placeholder="选择上级菜单"
/> />
@ -133,7 +134,7 @@
<script> <script>
import "@riophae/vue-treeselect/dist/vue-treeselect.css"; import "@riophae/vue-treeselect/dist/vue-treeselect.css";
import Treeselect from "@riophae/vue-treeselect"; import Treeselect from "@riophae/vue-treeselect";
import {getBasicHospType, getListMenu, saveBasicHospType,uodateBasicHospType,deleteBasicHospType} from "@/api/basic/basicHospType"; import {getBasicHospType, getListMenu, saveBasicHospType,uodateBasicHospType,deleteBasicHospType,getOneName} from "@/api/basic/basicHospType";
import selectHospProduct from "@/views/basic/product/bindHospProduct"; import selectHospProduct from "@/views/basic/product/bindHospProduct";
import selectUnBindHospProduct from "@/views/basic/product/unbindHospProduct"; import selectUnBindHospProduct from "@/views/basic/product/unbindHospProduct";
@ -226,7 +227,7 @@ export default {
parentCode:JSON.parse(JSON.stringify(data)).code parentCode:JSON.parse(JSON.stringify(data)).code
}; };
} }
this.getTreeselect(); this.getTreeselect(data);
this.subFormVisible = true; this.subFormVisible = true;
}, },
@ -248,7 +249,7 @@ export default {
}, },
forInvSubmit() { // --- forInvSubmit() { // ---
if(this.subData.parentCode==null){ if(this.subData.code!=10000 && this.subData.parentCode==null){
this.$message.error("上级菜单不能为空"); this.$message.error("上级菜单不能为空");
return return
} }
@ -282,13 +283,23 @@ export default {
}, },
/** 查询菜单下拉树结构 */ /** 查询菜单下拉树结构 */
getTreeselect() { getTreeselect(row) {
getListMenu().then(response => { debugger
this.fromDeptOptions = []; if(row!=null){
const menu = {id: 0, name: '主类目', children: []}; var data={
menu.children = this.handleTree(response.data,"code", "parentCode"); code:row.code,
this.fromDeptOptions.push(menu); type:1
}); }
}
getOneName().then(res =>{
const menu = {id: res.data.id,code:res.data.code, name: res.data.name, children: []};
getListMenu(data).then(response => {
this.fromDeptOptions = [];
menu.children = this.handleTree(response.data,"code", "parentCode");
console.log(menu)
this.fromDeptOptions.push(menu);
});
})
}, },
/** 转换菜单数据结构 */ /** 转换菜单数据结构 */
normalizer(node) { normalizer(node) {

@ -753,10 +753,7 @@ export default {
findConfig() findConfig()
.then((response) => { .then((response) => {
this.configQuery = response.data; this.configQuery = response.data;
console.log( // console.log("this.configQuery", this.configQuery);
"this.configQuery",
<this className="configQuery"></this>
);
this.checkedBusTypes = this.configQuery.busTypes; this.checkedBusTypes = this.configQuery.busTypes;
this.checkedToInBusTypes = this.configQuery.toInBusTypes; this.checkedToInBusTypes = this.configQuery.toInBusTypes;
this.checkedChangeBusTypes = this.configQuery.changeBusTypes; this.checkedChangeBusTypes = this.configQuery.changeBusTypes;

@ -12,19 +12,16 @@
<el-form-item class="query-form-item"> <el-form-item class="query-form-item">
<el-select v-model="filterQuery.status" placeholder="处理状态"> <el-select v-model="filterQuery.status" placeholder="处理状态">
<el-option label="全部" value=""></el-option> <el-option label="全部" value=""></el-option>
<el-option label="等待处理" value="0"></el-option> <el-option label="任务待触发" value="1"></el-option>
<el-option label="已处理" value="1"></el-option> <el-option label="文件待生成" value="2"></el-option>
<el-option label="异常" value="2"></el-option> <el-option label="文件待同步" value="3"></el-option>
<el-option label="任务完成" value="4"></el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item class="query-form-item"> <el-form-item class="query-form-item">
<el-date-picker <el-date-picker v-model="syncTime" type="datetime" format="yyyy-MM-dd HH:mm:ss"
v-model="syncTime" value-format="yyyy-MM-dd HH:mm:ss" placeholder="请选择同步时间">
type="datetime"
format="yyyy-MM-dd HH:mm:ss"
value-format="yyyy-MM-dd HH:mm:ss"
placeholder="请选择同步时间">
</el-date-picker> </el-date-picker>
</el-form-item> </el-form-item>
@ -32,135 +29,74 @@
<el-button-group style="display:flex;"> <el-button-group style="display:flex;">
<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="search" @click="getList"></el-button> <el-button type="primary" icon="search" @click="getList"></el-button>
<el-button type="primary" icon="search" @click="createScheduleDialog(1)" <el-button type="primary" icon="search" @click="createScheduleDialog(1)">
>同步单据
</el-button> </el-button>
<!-- :disabled="!configParms.orderScanFinish&& !configParms.orderUnReceive&& !configParms.orderUnCheck"--> <!-- :disabled="!configParms.orderScanFinish&& !configParms.orderUnReceive&& !configParms.orderUnCheck"-->
<el-button type="primary" icon="search" @click="createScheduleDialog(2)" <el-button type="primary" icon="search" @click="createScheduleDialog(2)"
:disabled="!configParms.typeBus&& !configParms.typeScan&& !configParms.typeThird"> v-if="!configParms.typeBus&& !configParms.typeScan&& !configParms.typeThird">
同步单据类型 同步单据类型
</el-button> </el-button>
<el-button type="primary" icon="search" @click="createScheduleDialog(3)" <el-button type="primary" icon="search" @click="createScheduleDialog(3)" v-if="!configParms.basicProducts&& !configParms.basicCorp&&
:disabled="!configParms.basicProducts&& !configParms.basicCorp&&
!configParms.basicInv&&!configParms.basicThirdProducts&& !configParms.basicThirdCorp&& !configParms.basicThirdInv !configParms.basicInv&&!configParms.basicThirdProducts&& !configParms.basicThirdCorp&& !configParms.basicThirdInv
&& !configParms.basicThirdBusOrder&& !configParms.sysUser" && !configParms.basicThirdBusOrder&& !configParms.sysUser">同步基础信息
>同步基础信息
</el-button> </el-button>
<el-button type="primary" icon="search" @click="createScheduleDialog(4)" <el-button type="primary" icon="search" @click="createScheduleDialog(4)"
:disabled="!configParms.dbDiProducts">同步国家库DI数据 v-if="configParms.dbDiProducts==2">同步国家库DI数据
</el-button> </el-button>
</el-button-group> </el-button-group>
</el-form-item> </el-form-item>
</el-row> </el-row>
</el-form> </el-form>
<el-table <el-table v-loading="loading" :data="list" style="width: 100%">
v-loading="loading"
:data="list"
style="width: 100%"
>
<el-table-column label="序号" type="index"></el-table-column> <el-table-column label="序号" type="index"></el-table-column>
<el-table-column <el-table-column label="任务ID" prop="id" width="140" show-overflow-tooltip></el-table-column>
label="任务ID"
prop="id" <el-table-column label="任务类型" prop="type" width="140" show-overflow-tooltip>
width="140"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="任务类型"
prop="type"
width="140"
show-overflow-tooltip
>
</el-table-column> </el-table-column>
<el-table-column <el-table-column label="中继服务状态" prop="status" width="140" show-overflow-tooltip>
label="中继服务状态"
prop="status"
width="140"
show-overflow-tooltip
>
<template slot-scope="scope"> <template slot-scope="scope">
<el-tag <el-tag :type="statusFilterType(scope.row.status)">{{ status[scope.row.status] }}
:type="statusFilterType(scope.row.status)" </el-tag>
>{{ status[scope.row.status] }}
</el-tag
>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column label="管理系统状态" prop="receiveStatus" width="140" show-overflow-tooltip>
label="管理系统状态"
prop="receiveStatus"
width="140"
show-overflow-tooltip
>
<template slot-scope="scope"> <template slot-scope="scope">
<el-tag <el-tag :type="wmsFilterType(scope.row.receiveStatus)">{{ wmsstatus[scope.row.receiveStatus] }}
:type="wmsFilterType(scope.row.receiveStatus)" </el-tag>
>{{ wmsstatus[scope.row.receiveStatus] }}
</el-tag
>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column label="开始时间" width="180" prop="startTime" show-overflow-tooltip></el-table-column>
label="开始时间" <el-table-column label="结束时间" width="180" prop="endTime" show-overflow-tooltip></el-table-column>
width="180"
prop="startTime" <el-table-column label="备注" prop="remark" show-overflow-tooltip></el-table-column>
show-overflow-tooltip
></el-table-column> <el-table-column label="同步信息" prop="cacheFilePath" 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="cacheFilePath"
show-overflow-tooltip
></el-table-column>
<el-table-column label="操作" fixed="right" width="160"> <el-table-column label="操作" fixed="right" width="160">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-popconfirm @confirm="downFile(scope.row)" confirm-button-text='' cancel-button-text='' class="mr10"
type="text" icon="el-icon-info" icon-color="blck" title="是否确认要下载文件?" v-if="scope.row.cacheFilePath">
size="small" <el-button type="text" size="small" slot="reference">下载
@click.native.stop="detailDialog(scope.row.id)" </el-button>
>详情 </el-popconfirm>
</el-button <el-popconfirm @confirm="deleteData(scope.row.id)" confirm-button-text='' cancel-button-text=''
> icon="el-icon-info" icon-color="red" title="是否确认要删除这条数据?">
<el-button <el-button type="text" size="small" slot="reference">删除
type="text" </el-button>
size="small" </el-popconfirm>
@click.native.stop="deleteDialog(scope.row.id)"
>删除
</el-button
>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<el-pagination <el-pagination :page-size="filterQuery.limit" @current-change="handleCurrentChange" layout="prev, pager, next"
:page-size="filterQuery.limit" :total="total" :current-page="filterQuery.page"></el-pagination>
@current-change="handleCurrentChange"
layout="prev, pager, next"
:total="total"
:current-page="filterQuery.page"
></el-pagination>
</el-card> </el-card>
<el-dialog <el-dialog title="同步信息" width="25%" :close-on-click-modal="false" :close-on-press-escape="false"
title="同步信息" :visible.sync="syncVisible">
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> <span v-text="syncInfo" style="white-space:pre-line;" class="syncInfo"></span>
</el-dialog> </el-dialog>
@ -168,319 +104,346 @@
</template> </template>
<script> <script>
import {filterLog, deleteLog, createSchedule, findConfig, updateConfig} from "../../api/sync/spsSyncStatus"; import {
import store from "@/store"; filterLog,
deleteLog,
export default { createSchedule,
data() { findConfig,
return { updateConfig,
filterQuery: { infoByStatus
id: null, } from "../../api/sync/spsSyncStatus";
status: "0", import store from "@/store";
page: 1,
limit: 10, 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: {
"AutoDownloadOrder": "扫码单据",
"AutoDownloadBusType": "单据类型",
"AutoDownloadAllData": "基础信息",
"AutoDownloadDiProducts": "国家库DI数据"
},
status: {
1: "任务待触发",
2: "文件待生成",
3: "文件待同步",
4: "任务完成",
},
wmsstatus: {
"1": "处理成功",
"": "未处理",
null: "未处理",
},
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,
},
uploadFileUrl: null,
uploadData: {
thirdSys: "thirdId",
},
templateDlUrl: null,
checked: false,
syncTime: null, syncTime: null,
configParms: {},
syncInfo: null,
syncVisible: false
};
},
methods: {
onReset() {
this.$router.push({
path: "",
});
this.filterQuery = {
id: null,
status: null,
page: 1,
limit: 20,
};
this.syncTime = null;
this.getList();
}, },
list: [], getList() {
headers: {}, this.loading = true;
detailList: [], this.filterQuery.syncTime = this.syncTime;
thirdSys: [], filterLog(this.filterQuery)
thirdSysDetail: null, .then((response) => {
total: 0, this.loading = false;
currentRow: null, if (response.code == 20000) {
editQuery: null, this.list = response.data.list || [];
type: { this.total = response.data.total || 0;
"AutoDownloadOrder": "扫码单据", } else {
"AutoDownloadBusType": "单据类型", this.$message.error(response.message);
"AutoDownloadAllData": "基础信息", }
"AutoDownloadDiProducts": "国家库DI数据" })
}, .catch(() => {
status: { this.loading = false;
0: "等待处理", this.list = [];
1: "处理完成", this.total = 0;
2: "处理异常", });
}, },
wmsstatus: { getConfig() {
"处理成功": "处理成功", findConfig()
"": "未处理", .then((response) => {
null: "未处理", 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;
});
}, },
configQuery: { cancelDialog(val) {
id: null, this.udiImportDetailVisible = false;
typeBus: null, this.thrCorpSelectVisible = false;
typeScan: null, if (val) {
typeThird: null, this.getList();
basicProducts: null, }
basicCorp: null,
basicInv: null,
basicThirdProducts: null,
basicThirdCorp: null,
basicThirdInv: null,
basicThirdBusOrder: null,
orderScanFinish: null,
dbDiProducts: null,
downstreamEnable: null,
}, },
uploadFileUrl: null, handleCurrentChange(val) {
uploadData: { this.filterQuery.page = val;
thirdSys: "thirdId", this.getList();
}, },
templateDlUrl: null,
checked: false,
syncTime: null,
configParms: {},
syncInfo: null,
syncVisible: false
};
},
methods: {
onReset() {
this.$router.push({
path: "",
});
this.filterQuery = {
id: null,
status: null,
page: 1,
limit: 20,
}; createScheduleDialog(type) {
this.syncTime = null; if (this.$isNotBlank(this.syncTime)) {
this.getList(); this.$confirm("此操作将从" + this.syncTime + "开始同步最新数据,是否继续", "提示", {
}, confirmButtonText: "确定",
getList() { cancelButtonText: "取消",
this.loading = true; type: "warning",
this.filterQuery.syncTime = this.syncTime; })
filterLog(this.filterQuery) .then(() => {
.then((response) => { this.createSchedule(type);
this.loading = false; })
if (response.code == 20000) { .catch(() => {});
this.list = response.data.list || []; } else {
this.total = response.data.total || 0; this.createSchedule(type);
} 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;
});
},
createSchedule(type) {
let query = {
createType: type,
syncTime: this.syncTime,
}
cancelDialog(val) { createSchedule(query)
this.udiImportDetailVisible = false; .then((response) => {
this.thrCorpSelectVisible = false; this.loading = false;
if (val) { if (response.code == 20000) {
this.getList(); this.$message.success("创建成功!");
} } else if (response.code == 501) {
}
, this.$alert(response.message, '提示', {
handleCurrentChange(val) { confirmButtonText: '确定',
this.filterQuery.page = val; type: "warning",
this.getList(); callback: action => {}
} });
,
} else {
createScheduleDialog(type) { this.$message.error(response.message);
if (this.$isNotBlank(this.syncTime)) { }
this.$confirm("此操作将从" + this.syncTime + "开始同步最新数据,是否继续", "提示", { this.getList();
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
this.createSchedule(type);
}) })
.catch(() => { .catch(() => {
this.loading = false;
}); });
} else { },
this.createSchedule(type); deleteDialog(rowId) {
} this.$confirm("此操作将删除该任务信息, 是否继续?", "提示", {
confirmButtonText: "确定",
}, cancelButtonText: "取消",
type: "warning",
createSchedule(type) { })
let query = { .then(() => {
createType: type, let dQuery = {
syncTime: this.syncTime, id: rowId,
} };
deleteLog(dQuery)
createSchedule(query) .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 if (response.code == 501) { this.$message.error(response.message);
}
this.getList();
})
.catch(() => {
this.loading = false;
});
})
.catch(() => {});
},
handleChange(response, files, fileList) {
if (response.code != 20000) {
this.$message.error(response.message);
this.getList();
} else {
this.$message.success(response.data);
this.getList();
}
},
statusFilterType(status) {
const statusMap = {
0: "warning",
1: "success",
2: "danger",
};
return statusMap[status];
},
wmsFilterType(status) {
const statusMap = {
"未处理": "warning",
"处理成功": "success",
};
return statusMap[status];
},
this.$alert(response.message, '提示', {
confirmButtonText: '确定',
type: "warning",
callback: action => {
}
});
} else { getSyncConfig() {
this.$message.error(response.message); 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;
} }
this.getList();
}) })
.catch(() => { },
this.loading = false; downFile(rows) {
}); infoByStatus({
}, 'id': rows.id
deleteDialog(rowId) { }).then(res => {
this.$confirm("此操作将删除该任务信息, 是否继续?", "提示", { let blob = new Blob([res])
confirmButtonText: "确定", let fileName = rows.cacheFilePath.substring(rows.cacheFilePath.lastIndexOf('/'))
cancelButtonText: "取消", let link = document.createElement("a")
type: "warning", link.href = window.URL.createObjectURL(blob)
}) link.download = fileName
.then(() => { link.style.display = 'none'
let dQuery = { document.body.appendChild(link)
id: rowId, link.click()
}; window.URL.revokeObjectURL(link.href)
deleteLog(dQuery) document.body.removeChild(link)
.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(() => { },
}); deleteData(id) {
} deleteLog({id}).then((response) => {
, if (response.code == 20000) {
handleChange(response, files, fileList) { this.filterQuery.page = 1
if (response.code != 20000) { this.$message.success("删除成功");
this.$message.error(response.message); } else {
this.getList(); this.$message.error(response.message);
} else { }
this.$message.success(response.data); this.getList();
this.getList(); })
.catch(() => {});
} }
}
,
statusFilterType(status) {
const statusMap = {
0: "warning",
1: "success",
2: "danger",
};
return statusMap[status];
},
wmsFilterType(status) {
const statusMap = {
"未处理": "warning",
"处理成功": "success",
};
return statusMap[status];
}, },
mounted() {},
getSyncConfig() { components: {},
findConfig() created() {
.then((response) => { this.headers = {
if (response.code == 20000) { ADMIN_ID: store.getters.adminId,
this.configParms = response.data; ADMIN_TOKEN: store.getters.token,
} };
}) this.getSyncConfig();
.catch(() => { this.getList();
}); this.getConfig();
}, },
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> </script>
<style> <style>
.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;
} }
.syncInfo { .syncInfo {
font-size: medium; font-size: medium;
font-family: "Microsoft YaHei"; font-family: "Microsoft YaHei";
line-height: 25px; line-height: 25px;
} }
</style> </style>

@ -52,6 +52,7 @@
</el-form> </el-form>
<el-table <el-table
v-loading="loading" v-loading="loading"
ref="list"
:data="list" :data="list"
style="width: 100%" style="width: 100%"
highlight-current-row highlight-current-row
@ -576,10 +577,6 @@ export default {
let depList = response.data.list || []; let depList = response.data.list || [];
this.deptOptions = this.handleTree(depList, "code", "pcode"); this.deptOptions = this.handleTree(depList, "code", "pcode");
}); });
console.log(row.id);
// this.$nextTick(() => {
// this.$refs.deptTableRef.setCurrentRow(this.list[row.pid]);
// });
}, },
/* 获取列表 */ /* 获取列表 */
getList() { getList() {
@ -588,12 +585,7 @@ export default {
.then((response) => { .then((response) => {
this.loading = false; this.loading = false;
let depList = response.data.list || []; let depList = response.data.list || [];
// console.log("deplist", depList);
this.list = this.handleTree(depList, "code", "pcode"); this.list = this.handleTree(depList, "code", "pcode");
this.$nextTick(() => {
this.$refs.deptTableRef.setCurrentRow(this.list[0]);
});
console.log(this.list);
}) })
.catch(() => { .catch(() => {
this.loading = false; this.loading = false;
@ -601,7 +593,6 @@ export default {
}); });
}, },
cancelDialog() { cancelDialog() {
tQuer;
this.formVisible = false; this.formVisible = false;
// //
this.$refs["dataForm"].resetFields(); this.$refs["dataForm"].resetFields();

@ -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) {

@ -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,8 @@ export default {
this.thrInvProductsSelectVisible = true; this.thrInvProductsSelectVisible = true;
}, },
downloadExcel(row) { downloadExcel(row) {
axios.get("./config.json").then(res => {
let baseUrl = res.data.BASE_URL; let baseUrl = this.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 +209,6 @@ export default {
a.click(); a.click();
this.getList(); this.getList();
}); });
});
}, },
cancelDialog(val) { cancelDialog(val) {

@ -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) {

@ -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) {

@ -1,15 +1,15 @@
"use strict"; 'use strict'
const path = require("path"); const path = require('path')
function resolve(dir) { function resolve(dir) {
return path.join(__dirname, dir); return path.join(__dirname, dir)
} }
const CompressionPlugin = require("compression-webpack-plugin"); const CompressionPlugin = require('compression-webpack-plugin')
const name = process.env.VUE_APP_TITLE || "UDI自助平台"; // 网页标题 const name = process.env.VUE_APP_TITLE || 'UDI自助平台' // 网页标题
const port = process.env.port || process.env.npm_config_port || 80; // 端口 const port = process.env.port || process.env.npm_config_port || 80 // 端口
// vue.config.js 配置说明 // vue.config.js 配置说明
//官方vue.config.js 参考文档 https://cli.vuejs.org/zh/config/#css-loaderoptions //官方vue.config.js 参考文档 https://cli.vuejs.org/zh/config/#css-loaderoptions
@ -20,112 +20,117 @@ module.exports = {
// 例如 https://www.ruoyi.vip/。如果应用被部署在一个子路径上,你就需要用这个选项指定这个子路径。例如,如果你的应用被部署在 https://www.ruoyi.vip/admin/,则设置 baseUrl 为 /admin/。 // 例如 https://www.ruoyi.vip/。如果应用被部署在一个子路径上,你就需要用这个选项指定这个子路径。例如,如果你的应用被部署在 https://www.ruoyi.vip/admin/,则设置 baseUrl 为 /admin/。
publicPath: process.env.VUE_APP_CONTEXT_PATH, publicPath: process.env.VUE_APP_CONTEXT_PATH,
// 在npm run build 或 yarn build 时 生成文件的目录名称要和baseUrl的生产环境路径一致默认dist // 在npm run build 或 yarn build 时 生成文件的目录名称要和baseUrl的生产环境路径一致默认dist
outputDir: "UDI_SPMS_CLIENT", outputDir: 'UDI_SPMS_CLIENT',
// 用于放置生成的静态资源 (js、css、img、fonts) 的;(项目打包之后,静态资源会放在这个文件夹下) // 用于放置生成的静态资源 (js、css、img、fonts) 的;(项目打包之后,静态资源会放在这个文件夹下)
assetsDir: "static", assetsDir: 'static',
// 是否开启eslint保存检测有效值ture | false | 'error' // 是否开启eslint保存检测有效值ture | false | 'error'
lintOnSave: process.env.NODE_ENV === "development", lintOnSave: process.env.NODE_ENV === 'development',
// 如果你不需要生产环境的 source map可以将其设置为 false 以加速生产环境构建。 // 如果你不需要生产环境的 source map可以将其设置为 false 以加速生产环境构建。
productionSourceMap: false, productionSourceMap: false,
// webpack-dev-server 相关配置 // webpack-dev-server 相关配置
devServer: { devServer: {
host: "0.0.0.0", host: '0.0.0.0',
port: port, port: port,
open: false, open: false,
proxy: { proxy: {
// detail: https://cli.vuejs.org/config/#devserver-proxy // detail: https://cli.vuejs.org/config/#devserver-proxy
[process.env.VUE_APP_BASE_API]: { [process.env.VUE_APP_BASE_API]: {
target: `http://192.168.0.66:9160/UDI_SPMS_SERVER/`, target: process.env.VUE_APP_BASE_API,
changeOrigin: true, changeOrigin: true,
pathRewrite: { pathRewrite: {
["^" + process.env.VUE_APP_BASE_API]: "", ['^' + process.env.VUE_APP_BASE_API]: ''
}, }
}, }
}, },
disableHostCheck: true, disableHostCheck: true
}, },
css: { css: {
loaderOptions: { loaderOptions: {
sass: { sass: {
sassOptions: { outputStyle: "expanded" }, sassOptions: { outputStyle: "expanded" }
}, }
}, }
}, },
configureWebpack: { configureWebpack: {
name: name, name: name,
resolve: { resolve: {
alias: { alias: {
"@": resolve("src"), '@': resolve('src')
}, }
}, },
plugins: [ plugins: [
// http://doc.ruoyi.vip/ruoyi-vue/other/faq.html#使用gzip解压缩静态文件 // http://doc.ruoyi.vip/ruoyi-vue/other/faq.html#使用gzip解压缩静态文件
new CompressionPlugin({ new CompressionPlugin({
cache: false, // 不启用文件缓存 cache: false, // 不启用文件缓存
test: /\.(js|css|html)?$/i, // 压缩文件格式 test: /\.(js|css|html)?$/i, // 压缩文件格式
filename: "[path].gz[query]", // 压缩后的文件名 filename: '[path].gz[query]', // 压缩后的文件名
algorithm: "gzip", // 使用gzip压缩 algorithm: 'gzip', // 使用gzip压缩
minRatio: 0.8, // 压缩率小于1才会压缩 minRatio: 0.8 // 压缩率小于1才会压缩
}), })
], ],
}, },
chainWebpack(config) { chainWebpack(config) {
config.plugins.delete("preload"); // TODO: need test config.plugins.delete('preload') // TODO: need test
config.plugins.delete("prefetch"); // TODO: need test config.plugins.delete('prefetch') // TODO: need test
// set svg-sprite-loader // set svg-sprite-loader
config.module.rule("svg").exclude.add(resolve("src/assets/icons")).end();
config.module config.module
.rule("icons") .rule('svg')
.exclude.add(resolve('src/assets/icons'))
.end()
config.module
.rule('icons')
.test(/\.svg$/) .test(/\.svg$/)
.include.add(resolve("src/assets/icons")) .include.add(resolve('src/assets/icons'))
.end() .end()
.use("svg-sprite-loader") .use('svg-sprite-loader')
.loader("svg-sprite-loader") .loader('svg-sprite-loader')
.options({ .options({
symbolId: "icon-[name]", symbolId: 'icon-[name]'
}) })
.end(); .end()
config.when(process.env.NODE_ENV !== "development", (config) => { config
config .when(process.env.NODE_ENV !== 'development',
.plugin("ScriptExtHtmlWebpackPlugin") config => {
.after("html") config
.use("script-ext-html-webpack-plugin", [ .plugin('ScriptExtHtmlWebpackPlugin')
{ .after('html')
.use('script-ext-html-webpack-plugin', [{
// `runtime` must same as runtimeChunk name. default is `runtime` // `runtime` must same as runtimeChunk name. default is `runtime`
inline: /runtime\..*\.js$/, inline: /runtime\..*\.js$/
}, }])
]) .end()
.end(); config
config.optimization.splitChunks({ .optimization.splitChunks({
chunks: "all", chunks: 'all',
cacheGroups: { cacheGroups: {
libs: { libs: {
name: "chunk-libs", name: 'chunk-libs',
test: /[\\/]node_modules[\\/]/, test: /[\\/]node_modules[\\/]/,
priority: 10, priority: 10,
chunks: "initial", // only package third parties that are initially dependent chunks: 'initial' // only package third parties that are initially dependent
}, },
elementUI: { elementUI: {
name: "chunk-elementUI", // split elementUI into a single package name: 'chunk-elementUI', // split elementUI into a single package
priority: 20, // the weight needs to be larger than libs and app or it will be packaged into libs or app priority: 20, // the weight needs to be larger than libs and app or it will be packaged into libs or app
test: /[\\/]node_modules[\\/]_?element-ui(.*)/, // in order to adapt to cnpm test: /[\\/]node_modules[\\/]_?element-ui(.*)/ // in order to adapt to cnpm
}, },
commons: { commons: {
name: "chunk-commons", name: 'chunk-commons',
test: resolve("src/components"), // can customize your rules test: resolve('src/components'), // can customize your rules
minChunks: 3, // minimum common number minChunks: 3, // minimum common number
priority: 5, priority: 5,
reuseExistingChunk: true, reuseExistingChunk: true
}, }
}, }
}); })
config.optimization.runtimeChunk("single"), config.optimization.runtimeChunk('single'),
{ {
from: path.resolve(__dirname, "./public/robots.txt"), //防爬虫文件 from: path.resolve(__dirname, './public/robots.txt'), //防爬虫文件
to: "./", //到根目录下 to: './' //到根目录下
}; }
}); }
}, )
}; }
}

Loading…
Cancel
Save