同步服务修改

master
anthonyywj2 3 years ago
parent 9993061db5
commit 25a85e3bd0

21
package-lock.json generated

@ -20,6 +20,7 @@
"qrcodejs2": "^0.0.2", "qrcodejs2": "^0.0.2",
"vue": "2.5.16", "vue": "2.5.16",
"vue-router": "^3.0.1", "vue-router": "^3.0.1",
"vue2-verify": "^1.1.5",
"vuedraggable": "^2.17.0", "vuedraggable": "^2.17.0",
"vuex": "^3.0.1" "vuex": "^3.0.1"
}, },
@ -19383,6 +19384,18 @@
"integrity": "sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==", "integrity": "sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==",
"dev": true "dev": true
}, },
"node_modules/vue2-verify": {
"version": "1.1.5",
"resolved": "https://registry.npmjs.org/vue2-verify/-/vue2-verify-1.1.5.tgz",
"integrity": "sha512-jsp1elCWzYS+GGTzbwoeQJaH5FbADj5truRXM2U0bLgjkiZwWOZUJfMDhpmDNFDowtYy2moemU5Dm/ss2nem9A==",
"dependencies": {
"vue": "^2.5.2"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
}
},
"node_modules/vuedraggable": { "node_modules/vuedraggable": {
"version": "2.17.0", "version": "2.17.0",
"resolved": "https://registry.npmjs.org/vuedraggable/-/vuedraggable-2.17.0.tgz", "resolved": "https://registry.npmjs.org/vuedraggable/-/vuedraggable-2.17.0.tgz",
@ -37460,6 +37473,14 @@
"integrity": "sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==", "integrity": "sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==",
"dev": true "dev": true
}, },
"vue2-verify": {
"version": "1.1.5",
"resolved": "https://registry.npmjs.org/vue2-verify/-/vue2-verify-1.1.5.tgz",
"integrity": "sha512-jsp1elCWzYS+GGTzbwoeQJaH5FbADj5truRXM2U0bLgjkiZwWOZUJfMDhpmDNFDowtYy2moemU5Dm/ss2nem9A==",
"requires": {
"vue": "^2.5.2"
}
},
"vuedraggable": { "vuedraggable": {
"version": "2.17.0", "version": "2.17.0",
"resolved": "https://registry.npmjs.org/vuedraggable/-/vuedraggable-2.17.0.tgz", "resolved": "https://registry.npmjs.org/vuedraggable/-/vuedraggable-2.17.0.tgz",

@ -22,6 +22,7 @@
"qrcodejs2": "^0.0.2", "qrcodejs2": "^0.0.2",
"vue": "2.5.16", "vue": "2.5.16",
"vue-router": "^3.0.1", "vue-router": "^3.0.1",
"vue2-verify": "^1.1.5",
"vuedraggable": "^2.17.0", "vuedraggable": "^2.17.0",
"vuex": "^3.0.1" "vuex": "^3.0.1"
}, },

@ -2,5 +2,6 @@
"UDI_SYNC_SERVER_IP": "http://192.168.0.109:9995/", "UDI_SYNC_SERVER_IP": "http://192.168.0.109:9995/",
"BASE_URL":"http://192.168.0.109:9991", "BASE_URL":"http://192.168.0.109:9991",
"SERVER_IP": "http://192.168.0.109:9991/", "SERVER_IP": "http://192.168.0.109:9991/",
"WEBSOCKET_URL": "ws://192.168.0.109:9991/UDI_WMS_MC/api/websocket/" "WEBSOCKET_URL": "ws://192.168.0.109:9991/UDI_WMS_MC/api/websocket/",
"hosp_name": "诏安县总医院(测试)"
} }

@ -92,4 +92,13 @@ export function testThirdService(data) {
}); });
} }
export function testThirdInter(data) {
return axios({
url: "/udiwms/basic/thirdsys/testThirdInter",
method: "post",
data: data
});
}

@ -75,6 +75,15 @@ export function addOrderWeb(query) {
}); });
} }
export function enterCodeWeb(query) {
return axios({
url: "/warehouse/inout/enterCode",
method: "post",
data: query
});
}
export function postOrdersWeb(query) { export function postOrdersWeb(query) {
return axios({ return axios({
url: "/warehouse/inout/postOrdersWeb", url: "/warehouse/inout/postOrdersWeb",

Binary file not shown.

After

Width:  |  Height:  |  Size: 646 KiB

@ -106,6 +106,8 @@ import receiveOrderSearch from "../views/thrsys/ThrOrdedrReceiveSearch.vue";
import thrInvWarehouse from "@/views/thrsys/ThrInvWarehouse"; import thrInvWarehouse from "@/views/thrsys/ThrInvWarehouse";
import syncConfig from "../views/thrsys/SysUdimsConfig.vue"; import syncConfig from "../views/thrsys/SysUdimsConfig.vue";
import BasicEntrutsRece from "../views/basic/BasicEntrutsRece.vue";
// Vue.use(VueRouter); // Vue.use(VueRouter);
const err401 = r => const err401 = r =>
@ -342,7 +344,6 @@ export const asyncRouterMap = [
authRule: ["admin/spsSyncData"] authRule: ["admin/spsSyncData"]
} }
}, },
// { // {
// path: "bussinessType", // path: "bussinessType",
// name: "单据类型", // name: "单据类型",
@ -519,7 +520,7 @@ export const asyncRouterMap = [
{ {
path: "stockOrderSearch", path: "stockOrderSearch",
component: stockOrderSearch, component: stockOrderSearch,
name: "未核对单据", name: "未验收单据",
meta: { meta: {
authRule: ["stock/stockOrderSearch"] authRule: ["stock/stockOrderSearch"]
} }
@ -527,7 +528,7 @@ export const asyncRouterMap = [
{ {
path: "stockOrderDelSearch", path: "stockOrderDelSearch",
component: stockOrderDelSearch, component: stockOrderDelSearch,
name: "已核对单据", name: "已验收单据",
meta: { meta: {
authRule: ["stock/stockOrderDelSearch"] authRule: ["stock/stockOrderDelSearch"]
} }
@ -1044,6 +1045,15 @@ export const asyncRouterMap = [
} }
}, },
{
path: "BasicEntrutsRece",
name: "委托验收",
component: BasicEntrutsRece,
meta: {
authRule: ["basic/BasicEntrutsRece"]
}
},
{ {
path: "stockOrderDelSearch", path: "stockOrderDelSearch",
component: stockOrderDelSearch, component: stockOrderDelSearch,

@ -3,13 +3,13 @@
<el-form :model="inputQuery" :rules="formRules" ref="dataForm"> <el-form :model="inputQuery" :rules="formRules" ref="dataForm">
<el-row :gutter="20" class="el-row" type="flex"> <el-row :gutter="20" class="el-row" type="flex">
<el-col :span="10" class="el-col"> <el-col :span="10" class="el-col">
<div class="text item"> <div class="text item">
<div class="itemTag"> <div class="itemTag">
<span>扫码单据类型:&nbsp;</span> <span>扫码单据类型:&nbsp;</span>
</div> </div>
<el-select v-model="inputQuery.action" placeholder="请选择" clearable @change="actionChange"> <el-select v-model="inputQuery.action" placeholder="请选择" clearable>
<el-option <el-option
v-for="item in busTypes" v-for="item in busTypes"
:key="item.localAction" :key="item.localAction"
@ -121,7 +121,7 @@ import {
} from "../../api/basic/busLocalType"; } from "../../api/basic/busLocalType";
import {filterAll, filterNext, warehouseBussinessTypeList, warehouseUserList} from "@/api/basic/invWarehouse"; import {filterAll, filterNext, warehouseBussinessTypeList, warehouseUserList} from "@/api/basic/invWarehouse";
import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain"; import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain";
import {filterNoUseBusType} from "@/api/basic/EntrustRece"; import {filterNoUseBusType} from "@/api/basic/EntrustRece";
export default { export default {
@ -217,24 +217,8 @@ export default {
let query = { let query = {
code: code code: code
} }
this.$set(this.inputQuery, "entrustUser","");
this.inputQuery.entrustInv=""; this.$set(this.inputQuery, "entrustInv","");
//
warehouseUserList(query).then((res) => {
this.entrustUserArray = res.data;
}).catch((error) => {
this.$message.error("用户数据加载失败")
});
//
warehouseBussinessTypeList(query).then((res) => {
this.entrustBusArray = res.data;
}).catch((error) => {
this.$message.error("单据类型数据加载失败")
});
if (this.$isBlank(this.inputQuery.entrustInv)) {
this.inputQuery.entrustUser = null;
}
this.getEntrustStorage(); this.getEntrustStorage();
}, },
@ -243,9 +227,14 @@ export default {
code: code code: code
} }
this.$set(this.inputQuery, "entrustUser","");
this.$set(this.inputQuery, "entrustAction","");
this.$forceUpdate();
// //
warehouseUserList(query).then((res) => { warehouseUserList(query).then((res) => {
this.entrustUserArray=[];
this.entrustUserArray = res.data; this.entrustUserArray = res.data;
}).catch((error) => { }).catch((error) => {
this.$message.error("用户数据加载失败") this.$message.error("用户数据加载失败")
}); });
@ -253,16 +242,15 @@ export default {
// //
warehouseBussinessTypeList(query).then((res) => { warehouseBussinessTypeList(query).then((res) => {
this.entrustBusArray = res.data; this.entrustBusArray = res.data;
}).catch((error) => { }).catch((error) => {
this.$message.error("单据类型数据加载失败") this.$message.error("单据类型数据加载失败")
}); });
},
actionChange(action) {
},
}
}, },
computed: { computed: {
corpType() { corpType() {

@ -2,28 +2,28 @@
<div> <div>
<el-row :gutter="20" class="el-row" type="flex" align="middle"> <el-row :gutter="20" class="el-row" type="flex" align="middle">
<el-col :span="8" class="el-col"> <!-- <el-col :span="8" class="el-col">-->
<div class="text item"> <!-- <div class="text item">-->
<span>是否启用接口</span> <!-- <span>是否启用接口</span>-->
<el-radio-group v-model="inputDetailQuery.enabled" style="margin-right: 20px;margin-left: 20px"> <!-- <el-radio-group v-model="inputDetailQuery.enabled" style="margin-right: 20px;margin-left: 20px">-->
<el-radio-button :label="true" size="mini">启用</el-radio-button> <!-- <el-radio-button :label="true" size="mini">启用</el-radio-button>-->
<el-radio-button :label="false" size="mini">禁用</el-radio-button> <!-- <el-radio-button :label="false" size="mini">禁用</el-radio-button>-->
</el-radio-group> <!-- </el-radio-group>-->
</div> <!-- </div>-->
</el-col> <!-- </el-col>-->
<el-col :span="12" class="el-col"> <el-col :span="12" class="el-col">
<div class="text item"> <div class="text item">
<el-radio-group v-model="inputDetailQuery.fromType" :disabled="!inputDetailQuery.enabled" <el-radio-group v-model="inputDetailQuery.fromType" :disabled="!inputDetailQuery.enabled"
style="margin-right: 20px" @change="agreeChange"> style="margin-right: 20px" @change="agreeChange">
<el-radio-button :label="0" size="mini">接口实时获取</el-radio-button> <el-radio-button :label="0" size="mini" disabled>接口实时获取</el-radio-button>
<el-radio-button :label="3" size="mini">接口本地缓存</el-radio-button> <el-radio-button :label="3" size="mini">接口本地缓存</el-radio-button>
<el-radio-button :label="2" size="mini">第三方上传缓存</el-radio-button> <el-radio-button :label="2" size="mini" disabled>第三方上传缓存</el-radio-button>
<el-radio-button :label="1" size="mini">文件缓存</el-radio-button> <el-radio-button :label="1" size="mini">文件缓存</el-radio-button>
</el-radio-group> </el-radio-group>
<!--<el-checkbox :disabled="inputDetailQuery.fromType!=0 || !inputDetailQuery.enabled"--> <!--<el-checkbox :disabled="inputDetailQuery.fromType!=0 || !inputDetailQuery.enabled"-->
<!--v-model="inputDetailQuery.itrCache">是否启用接口缓存--> <!--v-model="inputDetailQuery.itrCache">是否启用接口缓存-->
<!--</el-checkbox>--> <!--</el-checkbox>-->
</div> </div>
</el-col> </el-col>
@ -102,61 +102,61 @@
</template> </template>
<script> <script>
export default { export default {
name: "inputDetailQuery", name: "inputDetailQuery",
props: { props: {
inputDetailQuery: { inputDetailQuery: {
type: Object, type: Object,
required: true, required: true,
},
},
data() {
return {
temp:null,
}
},
methods: {
agreeChange() {
this.$confirm('请咨询系统技术支持方,否则可能导致基础数据缺失,系统无法正常运行。是否继续', '提示', {
confirmButtonText: '确定',
type: 'warning'
}).then(() => {
this.temp= this.inputDetailQuery.fromType;
}).catch(() => {
this.inputDetailQuery.fromType = this.temp;
});
},
}, },
created() { },
this.temp= this.inputDetailQuery.fromType; data() {
return {
temp: null,
}
},
methods: {
agreeChange() {
this.$confirm('请咨询系统技术支持方,否则可能导致基础数据缺失,系统无法正常运行。是否继续', '提示', {
confirmButtonText: '确定',
type: 'warning'
}).then(() => {
this.temp = this.inputDetailQuery.fromType;
}).catch(() => {
this.inputDetailQuery.fromType = this.temp;
});
}, },
}; },
created() {
this.temp = this.inputDetailQuery.fromType;
},
};
</script> </script>
<style scoped> <style scoped>
.itemTag { .itemTag {
float: left; float: left;
text-align: left; text-align: left;
margin-top: 5px; margin-top: 5px;
} }
.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;
margin-bottom: 20px; margin-bottom: 20px;
} }
.el-col { .el-col {
border-radius: 4px; border-radius: 4px;
flex-wrap: wrap; flex-wrap: wrap;
} }
</style> </style>

@ -37,7 +37,7 @@
<span>API说明文档:&nbsp;</span> <span>API说明文档:&nbsp;</span>
</div> </div>
<div style="padding-top: 5px"> <div style="padding-top: 5px">
<a :href="inputQuery.guideUrl" target="_blank">{{inputQuery.thirdName}}接口说明文档</a> <a :href="inputQuery.guideUrl" target="_blank">{{ inputQuery.thirdName }}接口说明文档</a>
</div> </div>
@ -84,6 +84,8 @@
splaceholder="请输入内容" splaceholder="请输入内容"
v-model="inputQuery.thirdSysUrl" v-model="inputQuery.thirdSysUrl"
></el-input> ></el-input>
<el-button style="margin-left: 5px;" type="primary" @click="testThirdInter"></el-button>
</div> </div>
</el-col> </el-col>
</el-row> </el-row>
@ -160,51 +162,63 @@
</template> </template>
<script> <script>
import {testThirdService} from "../../api/basic/basicThirdSys"; import {testThirdInter, testThirdService} from "../../api/basic/basicThirdSys";
export default { export default {
name: "inputQuery", name: "inputQuery",
props: { props: {
inputQuery: { inputQuery: {
type: Object, type: Object,
required: true, required: true,
}, },
},
methods: {
testThirdService() {
testThirdService(this.inputQuery).then((res) => {
if (res.code === 20000) {
this.$message.success("连接成功");
} else
this.$message.error(res.message);
});
}, },
methods: {
testThirdService (){ testThirdInter() {
testThirdService(this.inputQuery).then((res) => { testThirdInter(this.inputQuery).then((res) => {
if (res.code === 20000) { if (res.code === 20000) {
this.$message.success("连接成功"); this.$message.success("连接成功");
} } else {
}); this.$message.error(res.message);
} }
});
} }
};
}
};
</script> </script>
<style scoped> <style scoped>
.itemTag { .itemTag {
float: left; float: left;
text-align: left; text-align: left;
margin-top: 5px; margin-top: 5px;
} }
.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;
margin-bottom: 20px; margin-bottom: 20px;
} }
.el-col { .el-col {
border-radius: 4px; border-radius: 4px;
flex-wrap: wrap; flex-wrap: wrap;
} }
</style> </style>

@ -211,6 +211,7 @@ export default {
useDyCount: null, useDyCount: null,
expireTip: true, expireTip: true,
prefix: null, prefix: null,
outTospms: null,
}, },
enableMap: { enableMap: {
true: "是", true: "是",
@ -376,7 +377,8 @@ export default {
defaultUnit: row.defaultUnit, defaultUnit: row.defaultUnit,
useDyCount: row.useDyCount, useDyCount: row.useDyCount,
expireTip: row.expireTip, expireTip: row.expireTip,
prefix: row.prefix prefix: row.prefix,
outTospms: row.outTospms,
}; };
this.modifyDialogVisible = true; this.modifyDialogVisible = true;
}, },

@ -198,8 +198,8 @@
</el-checkbox> </el-checkbox>
<el-checkbox v-model="inputQuery.useDyCount" :disabled="true">使 <el-checkbox v-model="inputQuery.useDyCount" :disabled="true">使
</el-checkbox> </el-checkbox>
<!-- <el-checkbox v-model="inputQuery.expireTip">--> <el-checkbox v-model="inputQuery.outTospms" >允许手持终端提交单据至自助平台
<!-- </el-checkbox>--> </el-checkbox>
</div> </div>
@ -276,18 +276,18 @@
<el-row :gutter="20" class="el-row" type="flex" style="margin-left: 15px"> <el-row :gutter="20" class="el-row" type="flex" style="margin-left: 15px">
<el-col :span="4" class="el-col"> <el-col :span="4" class="el-col">
<div class="text item"> <div class="text item">
<el-checkbox v-model="inputQuery.checkSp" :disabled="!inputQuery.checkEnable">UDI</el-checkbox> <el-checkbox v-model="inputQuery.checkSp" :disabled="!inputQuery.checkEnable"></el-checkbox>
</div> </div>
</el-col> </el-col>
<el-col :span="4" class="el-col"> <el-col :span="4" class="el-col">
<div class="text item"> <div class="text item">
<el-checkbox v-model="inputQuery.checkChange" :disabled="!inputQuery.checkEnable"> <el-checkbox v-model="inputQuery.checkChange" :disabled="!inputQuery.checkEnable">
</el-checkbox> </el-checkbox>
</div> </div>
</el-col> </el-col>
<el-col :span="4" class="el-col"> <el-col :span="4" class="el-col">
<div class="text item"> <div class="text item">
<el-checkbox v-model="inputQuery.checkBalacne" :disabled="!inputQuery.checkEnable"> <el-checkbox v-model="inputQuery.checkBalacne" :disabled="!inputQuery.checkEnable">
</el-checkbox> </el-checkbox>
</div> </div>
</el-col> </el-col>
@ -346,19 +346,19 @@
<el-row :gutter="20" class="el-row" type="flex" style="margin-left: 15px"> <el-row :gutter="20" class="el-row" type="flex" style="margin-left: 15px">
<el-col :span="4" class="el-col"> <el-col :span="4" class="el-col">
<div class="text item"> <div class="text item">
<el-checkbox v-model="inputQuery.secCheckSp" :disabled="!inputQuery.secCheckEnable">UDI <el-checkbox v-model="inputQuery.secCheckSp" :disabled="!inputQuery.secCheckEnable">
</el-checkbox> </el-checkbox>
</div> </div>
</el-col> </el-col>
<el-col :span="4" class="el-col"> <el-col :span="4" class="el-col">
<div class="text item"> <div class="text item">
<el-checkbox v-model="inputQuery.secCheckChange" :disabled="!inputQuery.secCheckEnable"> <el-checkbox v-model="inputQuery.secCheckChange" :disabled="!inputQuery.secCheckEnable">
</el-checkbox> </el-checkbox>
</div> </div>
</el-col> </el-col>
<el-col :span="4" class="el-col"> <el-col :span="4" class="el-col">
<div class="text item"> <div class="text item">
<el-checkbox v-model="inputQuery.secCheckBalacne" :disabled="!inputQuery.secCheckEnable"> <el-checkbox v-model="inputQuery.secCheckBalacne" :disabled="!inputQuery.secCheckEnable">
</el-checkbox> </el-checkbox>
</div> </div>
</el-col> </el-col>

@ -229,7 +229,10 @@ export default {
onAddSubmit() { onAddSubmit() {
if (this.$isBlank(this.inputQuery.action)) {
this.$message.error("单据类型代码不能为空!");
return;
}
insertBussinessType(this.inputQuery) insertBussinessType(this.inputQuery)
.then((response) => { .then((response) => {
this.loading = false; this.loading = false;
@ -243,6 +246,10 @@ export default {
}, },
onModifySubmit() { onModifySubmit() {
if (this.$isBlank(this.inputQuery.action)) {
this.$message.error("单据类型代码不能为空!");
return;
}
updateBussinessType(this.inputQuery) updateBussinessType(this.inputQuery)
.then((response) => { .then((response) => {
this.loading = false; this.loading = false;

@ -575,6 +575,9 @@ export default {
this.formData.code = this.originCode; this.formData.code = this.originCode;
}); });
} else if (response.code == 508) {
this.originCode = "";
this.formData.code = "01" + response.data.nameCode;
} else { } else {
this.$alert(response.message, '提示', { this.$alert(response.message, '提示', {
confirmButtonText: '确定', confirmButtonText: '确定',
@ -988,7 +991,7 @@ export default {
if (text.includes("delete")) { if (text.includes("delete")) {
that.formData.code = ""; that.formData.code = "";
that.sictomText = ""; that.sictomText = "";
this.originCode = ""; that.originCode = "";
return; return;
} }
if (that.sitcomScan) { if (that.sitcomScan) {

@ -1,293 +1,294 @@
<template> <template>
<div> <div>
<el-descriptions class="margin-top" title="产品信息" :column="3" :size="size" border> <el-descriptions class="margin-top" title="产品信息" :column="3" :size="size" border>
<el-descriptions-item> <el-descriptions-item>
<template slot="label"> <template slot="label">
产品名称 产品名称
</template> </template>
{{ idQuery.cpmctymc }} {{ idQuery.cpmctymc }}
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item> <el-descriptions-item>
<template slot="label"> <template slot="label">
产品标识 产品标识
</template> </template>
{{ idQuery.nameCode }} {{ idQuery.nameCode }}
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item> <el-descriptions-item>
<template slot="label"> <template slot="label">
批次号 批次号
</template> </template>
{{ idQuery.batchNo }} {{ idQuery.batchNo }}
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item> <el-descriptions-item>
<template slot="label"> <template slot="label">
规格型号 规格型号
</template> </template>
{{ idQuery.ggxh }} {{ idQuery.ggxh }}
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item> <el-descriptions-item>
<template slot="label"> <template slot="label">
生产日期 生产日期
</template> </template>
{{ idQuery.productionDate }} {{ idQuery.productionDate }}
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item> <el-descriptions-item>
<template slot="label"> <template slot="label">
失效日期 失效日期
</template> </template>
{{ idQuery.expireDate }} {{ idQuery.expireDate }}
</el-descriptions-item> </el-descriptions-item>
</el-descriptions> </el-descriptions>
<!-- <el-descriptions style="margin-top: 15px" class="margin-top" title="库存统计" :column="3" :size="size" border>--> <!-- <el-descriptions style="margin-top: 15px" class="margin-top" title="库存统计" :column="3" :size="size" border>-->
<!-- <el-descriptions-item>--> <!-- <el-descriptions-item>-->
<!-- <template slot="label">--> <!-- <template slot="label">-->
<!-- 入库数量--> <!-- 入库数量-->
<!-- </template>--> <!-- </template>-->
<!-- {{ statData.inCount }}--> <!-- {{ statData.inCount }}-->
<!-- </el-descriptions-item>--> <!-- </el-descriptions-item>-->
<!-- <el-descriptions-item>--> <!-- <el-descriptions-item>-->
<!-- <template slot="label">--> <!-- <template slot="label">-->
<!-- 出库数量--> <!-- 出库数量-->
<!-- </template>--> <!-- </template>-->
<!-- {{ statData.outCount }}--> <!-- {{ statData.outCount }}-->
<!-- </el-descriptions-item>--> <!-- </el-descriptions-item>-->
<!-- <el-descriptions-item>--> <!-- <el-descriptions-item>-->
<!-- <template slot="label">--> <!-- <template slot="label">-->
<!-- 结余数量--> <!-- 结余数量-->
<!-- </template>--> <!-- </template>-->
<!-- {{ (statData.inCount - statData.outCount) }}--> <!-- {{ (statData.inCount - statData.outCount) }}-->
<!-- </el-descriptions-item>--> <!-- </el-descriptions-item>-->
<!-- <el-descriptions-item>--> <!-- <el-descriptions-item>-->
<!-- <template slot="label">--> <!-- <template slot="label">-->
<!-- 普通采购数量--> <!-- 普通采购数量-->
<!-- </template>--> <!-- </template>-->
<!-- {{ statData.commonCount }}--> <!-- {{ statData.commonCount }}-->
<!-- </el-descriptions-item>--> <!-- </el-descriptions-item>-->
<!-- <el-descriptions-item>--> <!-- <el-descriptions-item>-->
<!-- <template slot="label">--> <!-- <template slot="label">-->
<!-- 预入库数量--> <!-- 预入库数量-->
<!-- </template>--> <!-- </template>-->
<!-- {{ statData.advanceCount }}--> <!-- {{ statData.advanceCount }}-->
<!-- </el-descriptions-item>--> <!-- </el-descriptions-item>-->
<!-- </el-descriptions>--> <!-- </el-descriptions>-->
<el-form :inline="true" :model="query" class="query-form" size="mini"> <el-form :inline="true" :model="query" class="query-form" size="mini">
<el-form-item class="query-form-item"> <el-form-item class="query-form-item">
<el-input v-model="query.code" placeholder="条码查询"></el-input> <el-input v-model="query.code" placeholder="条码查询"></el-input>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button-group> <el-button-group>
<el-button type="primary" icon="search" @click="getCodeList" <el-button type="primary" icon="search" @click="getCodeList"
>查询 >查询
</el-button </el-button
> >
</el-button-group> </el-button-group>
</el-form-item> </el-form-item>
</el-form> </el-form>
<el-table v-loading="loading" :data="codeArry" style="width: 100%"> <el-table v-loading="loading" :data="codeArry" 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="条码" label="条码"
prop="originCode" prop="originCode"
width="300" width="300"
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
<el-table-column label="单据类型" prop="action" width="150"> <el-table-column label="单据类型" prop="action" width="150">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ getActionName(scope.row.action) }}</span> <span>{{ getActionName(scope.row.action) }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
label="出入库类型" label="出入库类型"
prop="mainActionStr" prop="mainActionStr"
width="120" width="120"
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
<el-table-column <el-table-column
label="入库数量" label="入库数量"
prop="inCount" prop="inCount"
width="120" width="120"
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
<el-table-column <el-table-column
label="出库数量" label="出库数量"
prop="outCount" prop="outCount"
width="120" width="120"
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
<el-table-column <el-table-column
label="订单日期" label="订单日期"
prop="updateTime" prop="updateTime"
width="150" width="150"
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
<el-table-column <el-table-column
label="所属扫码单据" label="所属扫码单据"
prop="orderIdFk" prop="orderIdFk"
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
<el-table-column <el-table-column
label="所属业务单据" label="所属业务单据"
prop="stockIdFk" prop="stockIdFk"
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
</el-table> </el-table>
<el-pagination <el-pagination
:page-size="query.limit" :page-size="query.limit"
@current-change="handleCurrentChange" @current-change="handleCurrentChange"
layout="prev, pager, next,total" layout="prev, pager, next,total"
:total="total" :total="total"
> >
</el-pagination> </el-pagination>
</div> </div>
</template> </template>
<script> <script>
import { import {
filterDetailProducts, statDetailProducts filterDetailProducts, statDetailProducts
} from "../../api/inventory/InvProducts"; } from "../../api/inventory/InvProducts";
import store from "../../store"; import store from "../../store";
import draggable from "vuedraggable"; import draggable from "vuedraggable";
import {getBussinessType} from "../../api/basic/bussinessType"; import {getBussinessType} from "../../api/basic/bussinessType";
export default { export default {
name: "idQuery", name: "idQuery",
props: { props: {
idQuery: { idQuery: {
type: Object, type: Object,
required: true, required: true,
},
}, },
}, data() {
data() { return {
return { query: {
query: { batchNo: null,
batchNo: null, productIdFk: null,
productIdFk: null, customerId: null,
customerId: null, page: 1,
page: 1, limit: 20,
limit: 20, },
}, codeArry: [],
codeArry: [], total: 0,
total: 0, loading: true,
loading: true, index: null,
index: null, formLoading: false,
formLoading: false, formVisible: false,
formVisible: false, deleteLoading: false,
deleteLoading: false, orderNo: null,
orderNo: null, busTypes: [],
busTypes: [], statData: {},
statData: {}, };
};
},
components: {
draggable,
},
methods: {
onReset() {
this.$router.push({
path: "",
});
this.query = {
productIdFk: null,
customerId: null,
page: 1,
limit: 20,
};
this.getCodeList();
}, },
onSubmit() { components: {
this.$router.push({ draggable,
path: "",
query: this.query,
});
this.getCodeList();
},
handleSizeChange(val) {
this.query.limit = val;
this.getCodeList();
},
handleCurrentChange(val) {
this.query.page = val;
this.getCodeList();
}, },
methods: {
onReset() {
this.$router.push({
path: "",
});
this.query = {
productIdFk: null,
customerId: null,
page: 1,
limit: 20,
};
this.getCodeList();
},
onSubmit() {
this.$router.push({
path: "",
query: this.query,
});
this.getCodeList();
},
handleSizeChange(val) {
this.query.limit = val;
this.getCodeList();
},
handleCurrentChange(val) {
this.query.page = val;
this.getCodeList();
},
getCodeList() { getCodeList() {
this.loading = true; this.loading = true;
this.query.productIdFk = this.idQuery.relIdFk; this.query.productIdFk = this.idQuery.relIdFk;
this.query.batchNo = this.idQuery.batchNo; this.query.batchNo = this.idQuery.batchNo;
this.query.supId = this.idQuery.supId; this.query.supId = this.idQuery.supId;
filterDetailProducts(this.query) // this.query.invStorageCode = this.idQuery.invStorageCode;
.then((response) => { filterDetailProducts(this.query) //
this.loading = false; .then((response) => {
this.codeArry = response.data.list || []; this.loading = false;
this.total = response.data.total || 0; this.codeArry = response.data.list || [];
}) this.total = response.data.total || 0;
.catch(() => { })
this.loading = false; .catch(() => {
this.list = []; this.loading = false;
this.total = 0; this.list = [];
}); this.total = 0;
}, });
},
getStat() { getStat() {
this.query.productIdFk = this.idQuery.relIdFk; this.query.productIdFk = this.idQuery.relIdFk;
this.query.batchNo = this.idQuery.batchNo; this.query.batchNo = this.idQuery.batchNo;
this.query.customerId = store.getters.customerId; this.query.customerId = store.getters.customerId;
statDetailProducts(this.query) // statDetailProducts(this.query) //
.then((response) => { .then((response) => {
this.loading = false; this.loading = false;
this.statData = response.data; this.statData = response.data;
}) })
.catch(() => { .catch(() => {
this.loading = false; this.loading = false;
}); });
}, },
intentBack() { intentBack() {
// this.$router.push({path:'../readme/detail',query:{id:row.corpOrderId}}); // this.$router.push({path:'../readme/detail',query:{id:row.corpOrderId}});
this.$router.go(-1); this.$router.go(-1);
},
getActionName(action) {
for (let i = 0; i < this.busTypes.length; i++) {
if (this.busTypes[i].action === action) {
return this.busTypes[i].name;
}
}
},
getBusType() {
let query = {
enabled: true,
};
getBussinessType(query)
.then((response) => {
this.busTypes = response.data.list || [];
this.filterQuery.billAction = this.busTypes[0].action;
// this.getList();
})
.catch(() => {
});
},
}, },
getActionName(action) { filters: {},
for (let i = 0; i < this.busTypes.length; i++) { mounted() {
if (this.busTypes[i].action === action) { document.body.ondrop = function (event) {
return this.busTypes[i].name; event.preventDefault();
} event.stopPropagation();
} };
}, },
getBusType() { created() {
let query = { this.getBusType();
enabled: true, this.getCodeList();
}; this.getStat();
getBussinessType(query)
.then((response) => {
this.busTypes = response.data.list || [];
this.filterQuery.billAction = this.busTypes[0].action;
// this.getList();
})
.catch(() => {
});
}, },
},
filters: {},
mounted() {
document.body.ondrop = function (event) {
event.preventDefault();
event.stopPropagation();
};
},
created() {
this.getBusType();
this.getCodeList();
this.getStat();
},
}; };
</script> </script>

@ -1,62 +1,103 @@
<template> <template>
<div class="login-container"> <div class="login-container">
<el-form
class="card-box login-form"
autocomplete="on" <div>
:model="ruleForm" <h3 class="toptitle">{{ hospName }}</h3>
:rules="rules" </div>
ref="ruleForm"
label-position="left" <el-form
> class="card-box login-form"
<!-- <div style="text-align:center"> autocomplete="on"
<img alt="element-logo" :model="ruleForm"
style="width: 187px; height: 66px; margin : 0px 15px 35px 15px;" :rules="rules"
src="../../assets/pzhlogo.png" ref="ruleForm"
> label-position="left"
</div> -->
<h3 class="title">UDI管理系统</h3>
<el-form-item prop="username" class="item">
<el-input placeholder="邮箱" name="userName" autocomplete="on" v-model="ruleForm.userName">
<i slot="prefix" class="el-input__icon">
<icon-svg icon-class="user" />
</i>
</el-input>
</el-form-item>
<el-form-item prop="password" class="item">
<!--<span class="svg-container">-->
<!--<icon-svg icon-class="pwd"/>-->
<!--</span>-->
<el-input
placeholder="密码"
name="pwd"
:type="isShowPwd ? 'text' : 'password'"
@keyup.enter.native="handleLogin"
v-model="ruleForm.pwd"
autocomplete="on"
> >
<i slot="prefix" class="el-input__icon"> <el-card class="box-card">
<icon-svg icon-class="pwd" /> <div style="text-align: center; margin-top: 10px">
</i> <img alt="element-logo" src="../../assets/logo.png"/>
<i slot="suffix" class="el-input__icon" @click="isShowPwd = !isShowPwd"> </div>
<icon-svg icon-class="eye" /> <h3 class="title">用户登录</h3>
</i> <el-form-item prop="username" class="item" style="margin-top: -20px">
</el-input> <el-input
</el-form-item> placeholder="账号"
<div style="text-align:center"> name="userName"
<el-button autocomplete="on"
type="primary" v-model="ruleForm.userName"
>
style="width:60%;margin-bottom:30px" <i slot="prefix" class="el-input__icon">
:loading="loading" <icon-svg icon-class="user"/>
@click.native="handleLogin()" </i>
>登录</el-button> </el-input>
</div> </el-form-item>
<h4 style="color:#2d3a4b">开发单位厦门高立新鹏软件科技有限公司 技术支持13459286066</h4> <el-form-item prop="password" class="item">
</el-form> <!--<span class="svg-container">-->
</div> <!--<icon-svg icon-class="pwd"/>-->
<!--</span>-->
<el-input
placeholder="密码"
name="pwd"
:type="isShowPwd ? 'text' : 'password'"
@keyup.enter.native="handleLogin"
v-model="ruleForm.pwd"
autocomplete="on"
>
<i slot="prefix" class="el-input__icon">
<icon-svg icon-class="pwd"/>
</i>
<i
slot="suffix"
class="el-input__icon"
@click="isShowPwd = !isShowPwd"
>
<icon-svg icon-class="eye"/>
</i>
</el-input>
</el-form-item>
<el-form-item prop="verificationCode" class="item" style="background-color: white">
<!--<el-input-->
<!--placeholder="验证码"-->
<!--name="verificationCode"-->
<!--v-model="ruleForm.verificationCode"-->
<!--autocomplete="on"-->
<!--&gt;-->
<!--<i slot="prefix" class="el-input__icon">-->
<!--<icon-svg icon-class="tongyong"/>-->
<!--</i>-->
<!--</el-input>-->
<Verify ref="checkV" :showButton="false" :barSize="{width:'305px',height:'37px'}" :vOffset="5"
@success="verifyAlert('success')" @error="verifyAlert('error')" :type="3"></Verify>
</el-form-item>
<div style="text-align: center; margin-top: 15px">
<el-button
type="primary"
style="width: 60%; margin-bottom: 30px"
:loading="loading"
@click.native="handleLogin()"
>登录
</el-button>
</div>
</el-card>
</el-form>
<!-- <div style="-->
<!-- position: absolute;-->
<!-- bottom: 0;-->
<!-- left: 50%;-->
<!-- transform: translate(-50%, -50%);-->
<!-- ">-->
<!-- 开发单位厦门高立新鹏软件科技有限公司 技术支持13459286066-->
<!-- </div>-->
</div>
</template> </template>
<script> <script>
import Verify from 'vue2-verify'
import axios from "axios";
export default { export default {
data() { data() {
let validatePwd = (rule, value, callback) => { let validatePwd = (rule, value, callback) => {
@ -70,32 +111,48 @@ export default {
ruleForm: { ruleForm: {
userName: "", userName: "",
pwd: "", pwd: "",
checked: true checked: true,
verificationCode: false
}, },
rules: { rules: {
userName: [ userName: [
{ required: true, message: "请输入登录名", trigger: "blur" } {required: true, message: "请输入登录名", trigger: "blur"},
], ],
pwd: [{ validator: validatePwd, trigger: "blur" }] pwd: [{validator: validatePwd, trigger: "blur"}],
}, },
isShowPwd: false, // isShowPwd: false, //
loading: false, // loading loading: false, // loading
showDialog: false, // dialog showDialog: false, // dialog
redirect: null // redirect: null, //
hospName: "",
}; };
}, },
methods: { methods: {
verifyAlert(text) {
if (text === 'success') {
this.ruleForm.verificationCode = true;
}
},
handleLogin() { handleLogin() {
this.$refs["ruleForm"].validate(valid => { if (!this.ruleForm.verificationCode) {
this.$message({
message: '请进行验证',
center: true,
type: 'warning'
});
return;
}
this.$refs["ruleForm"].validate((valid) => {
if (valid) { if (valid) {
this.loading = true; this.loading = true;
this.$store this.$store
.dispatch("loginName", this.ruleForm) .dispatch("loginName", this.ruleForm)
.then(response => { .then((response) => {
this.loading = false; this.loading = false;
if (response.code !== 20000) {
if (response.code != 20000) {
console.log("--code = " + response.code); console.log("--code = " + response.code);
this.ruleForm.verificationCode = false;
this.$refs.checkV.refresh();
this.$message.error(response.message); this.$message.error(response.message);
return; return;
} }
@ -105,19 +162,24 @@ export default {
} }
console.log("path = " + path); console.log("path = " + path);
this.$router.push({ this.$router.push({
path: "../main" path: "../main",
}); });
// window.location.replace(path); // window.location.replace(path);
// this.showDialog = true // this.showDialog = true
}) })
.catch(() => { .catch(() => {
this.ruleForm.verificationCode = false;
this.$refs.checkV.refresh();
this.loading = false; this.loading = false;
}); });
} else { } else {
return false; return false;
} }
}); });
} },
},
components: {
Verify
}, },
created() { created() {
// //
@ -126,6 +188,13 @@ export default {
// URL Encode // URL Encode
this.redirect = decodeURIComponent(query.redirect); this.redirect = decodeURIComponent(query.redirect);
} }
axios.get("./config.json").then(res => {
this.hospName = res.data.hosp_name;
});
} }
}; };
</script> </script>
@ -137,22 +206,28 @@ $bg: #2d3a4b;
$dark_gray: #889aa4; $dark_gray: #889aa4;
$light_gray: #eee; $light_gray: #eee;
.login-container { .login-container {
@include relative; @include relative;
background-color: white;
background-image: url("../../assets/login.jpg");
background-size: 100vw 100vh;
height: 100%; height: 100%;
// background-image: url("../../assets/bg_body.jpg");
input:-webkit-autofill { input:-webkit-autofill {
-webkit-box-shadow: 0 0 0 1000px #293444 inset !important; -webkit-box-shadow: 0 0 0 1000px #293444 inset !important;
-webkit-text-fill-color: #fff !important; -webkit-text-fill-color: #fff !important;
} }
.item { .item {
width: 22em; width: 22em;
margin-left: 5em; margin-left: 5em;
.el-form-item__content { .el-form-item__content {
display: flex; display: flex;
flex-flow: row; flex-flow: row;
} }
} }
input { input {
background: transparent; background: transparent;
border: 0; border: 0;
@ -162,23 +237,28 @@ $light_gray: #eee;
color: $dark_gray; color: $dark_gray;
height: 100%; height: 100%;
} }
.el-input { .el-input {
display: inline-block; display: inline-block;
} }
.tips { .tips {
font-size: 14px; font-size: 14px;
color: #fff; color: #fff;
margin-bottom: 0.13333rem; margin-bottom: 0.13333rem;
} }
.svg-container { .svg-container {
padding: 0.08rem 0.0666rem 0.08rem 0.2rem; padding: 0.08rem 0.0666rem 0.08rem 0.2rem;
color: $dark_gray; color: $dark_gray;
vertical-align: middle; vertical-align: middle;
display: inline-block; display: inline-block;
&_login { &_login {
font-size: 20px; font-size: 20px;
} }
} }
.title { .title {
font-size: 26px; font-size: 26px;
color: #2d3a4b; color: #2d3a4b;
@ -187,19 +267,33 @@ $light_gray: #eee;
font-weight: bold; font-weight: bold;
margin-bottom: 50px; margin-bottom: 50px;
} }
.login-form {
@include fxied-center;
width: 52em;
background: #fff;
padding: 10em 10em 10em 10em; .toptitle {
position: absolute;
font-size: 55px;
color: #FFFFFF;
margin: 50px auto 0.5333rem 50px;
text-align: center;
font-weight: bold;
} }
.login-form {
//@include fxied-center;
margin: 0px 100px auto auto;
width: 50em;
/*background-color: silver;*/
/*background: #fff;*/
padding: 10em 10em 15em 10em;
}
.el-form-item { .el-form-item {
border: 1px solid rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.1);
background: rgba(0, 0, 0, 0.1); background: rgba(0, 0, 0, 0.1);
border-radius: 0.0666rem; border-radius: 0.0666rem;
color: #454545; color: #454545;
} }
.show-pwd { .show-pwd {
position: absolute; position: absolute;
right: 0.1333rem; right: 0.1333rem;
@ -208,10 +302,17 @@ $light_gray: #eee;
color: $dark_gray; color: $dark_gray;
cursor: pointer; cursor: pointer;
} }
.thirdparty-button { .thirdparty-button {
/*position: absolute;*/ /*position: absolute;*/
/*right: .4666rem;*/ /*right: .4666rem;*/
/*bottom: .37333rem;*/ /*bottom: .37333rem;*/
} }
.box-card {
margin-top: -20px;
height: 550px;
width: 490px;
}
} }
</style> </style>

@ -62,7 +62,8 @@
</el-row> </el-row>
</el-descriptions-item> </el-descriptions-item>
</el-descriptions>
<el-descriptions class="margin-top" title="上传至UDI自助平台基础数据" :column="1" :size="100" style="margin-top: 40px" border>
<el-descriptions-item> <el-descriptions-item>
<template slot="label"> <template slot="label">
单据类型 单据类型
@ -79,6 +80,7 @@
<el-checkbox v-model="configQuery.basicProducts"></el-checkbox> <el-checkbox v-model="configQuery.basicProducts"></el-checkbox>
<el-checkbox v-model="configQuery.basicCorp"></el-checkbox> <el-checkbox v-model="configQuery.basicCorp"></el-checkbox>
<el-checkbox v-model="configQuery.basicInv"></el-checkbox> <el-checkbox v-model="configQuery.basicInv"></el-checkbox>
<el-checkbox v-model="configQuery.sysUser"></el-checkbox>
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item> <el-descriptions-item>
<template slot="label"> <template slot="label">
@ -90,17 +92,17 @@
<el-checkbox v-model="configQuery.basicThirdBusOrder"></el-checkbox> <el-checkbox v-model="configQuery.basicThirdBusOrder"></el-checkbox>
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item> <!-- <el-descriptions-item>-->
<template slot="label"> <!-- <template slot="label">-->
国家库DI数据 <!-- 国家库DI数据-->
</template> <!-- </template>-->
<el-checkbox v-model="configQuery.dbDiProducts">DI</el-checkbox> <!-- <el-checkbox v-model="configQuery.dbDiProducts">DI</el-checkbox>-->
</el-descriptions-item> <!-- </el-descriptions-item>-->
</el-descriptions> </el-descriptions>
<el-descriptions class="margin-top" title="" :column="1" :size="100" style="margin-top: 30px" border> <el-descriptions class="margin-top" title="上传至UDI自助平台单据" :column="1" :size="100" style="margin-top: 40px" border>
<el-descriptions-item> <el-descriptions-item>
<template slot="label"> <template slot="label">
单据(单据状态) 单据(单据状态)
@ -220,6 +222,7 @@ export default {
syncDownloadTime: null, syncDownloadTime: null,
orderUnCheck: null, orderUnCheck: null,
orderUnReceive: null, orderUnReceive: null,
sysUser: null,
busTypes: [], busTypes: [],
}, },
checkedBusTypes: [], checkedBusTypes: [],

@ -17,7 +17,15 @@
<el-option label="异常" value="2"></el-option> <el-option label="异常" value="2"></el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item class="query-form-item">
<el-date-picker
v-model="syncTime"
type="datetime"
format="yyyy-MM-dd HH:mm:ss"
value-format="yyyy-MM-dd HH:mm:ss"
placeholder="请选择同步时间">
</el-date-picker>
</el-form-item>
<el-form-item> <el-form-item>
<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>
@ -121,6 +129,7 @@ export default {
status: "1", status: "1",
page: 1, page: 1,
limit: 10, limit: 10,
syncTime: null,
}, },
list: [], list: [],
headers: {}, headers: {},
@ -165,6 +174,7 @@ export default {
}, },
templateDlUrl: null, templateDlUrl: null,
checked: false, checked: false,
syncTime: null,
}; };
}, },
@ -246,7 +256,8 @@ export default {
createSchedule(type) { createSchedule(type) {
let query = { let query = {
createType: type createType: type,
syncTime: this.syncTime,
} }
createSchedule(query) createSchedule(query)

@ -1,155 +1,163 @@
<template> <template>
<div> <div>
<el-form :inline="true" :model="query" class="query-form" size="mini"> <el-form :inline="true" :model="query" class="query-form" size="mini">
<el-form-item class="query-form-item"> <el-form-item class="query-form-item">
<el-input v-model="query.name" placeholder="角色名称"></el-input> <el-input v-model="query.name" placeholder="角色名称"></el-input>
</el-form-item> </el-form-item>
<!-- <el-form-item class="query-form-item">--> <!-- <el-form-item class="query-form-item">-->
<!-- <el-select v-model="query.status" placeholder="状态">--> <!-- <el-select v-model="query.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="0"></el-option>-->
<!-- <el-option label="正常" value="1"></el-option>--> <!-- <el-option label="正常" value="1"></el-option>-->
<!-- </el-select>--> <!-- </el-select>-->
<!-- </el-form-item>--> <!-- </el-form-item>-->
<el-form-item> <el-form-item>
<el-button-group> <el-button-group>
<el-button <el-button
type="primary" type="primary"
icon="el-icon-refresh" icon="el-icon-refresh"
@click="onReset" @click="onReset"
></el-button> ></el-button>
<el-button type="primary" icon="search" @click="onSubmit" <el-button type="primary" icon="search" @click="onSubmit"
>查询</el-button >查询
> </el-button
<el-button type="primary" @click.native="handleForm(null, null)" >
>新增</el-button <el-button type="primary" @click.native="handleForm(null, null)"
> >新增
</el-button-group> </el-button
</el-form-item> >
</el-form> </el-button-group>
<el-table v-loading="loading" :data="list" style="width: 100%"> </el-form-item>
<el-table-column type="index" label="序号" width="50"></el-table-column> </el-form>
<el-table-column label="角色名称" prop="name"> </el-table-column> <el-table v-loading="loading" :data="list" style="width: 100%">
<el-table-column label="状态"> <el-table-column type="index" label="序号" width="50"></el-table-column>
<template slot-scope="scope"> <el-table-column label="角色名称" prop="name"></el-table-column>
<el-tag :type="scope.row.status | statusFilterType">{{ <el-table-column label="状态">
scope.row.status | statusFilterName <template slot-scope="scope">
}}</el-tag> <el-tag :type="scope.row.status | statusFilterType">{{
</template> scope.row.status | statusFilterName
</el-table-column> }}
<el-table-column label="备注说明" :show-overflow-tooltip="true"> </el-tag>
<template slot-scope="scope"> </template>
<span>{{ scope.row.remark }}</span> </el-table-column>
</template> <el-table-column label="备注说明" :show-overflow-tooltip="true">
</el-table-column> <template slot-scope="scope">
<el-table-column label="操作" fixed="right" width="200"> <span>{{ scope.row.remark }}</span>
<template slot-scope="scope"> </template>
<el-button </el-table-column>
type="text" <el-table-column label="操作" fixed="right" width="200">
size="small" <template slot-scope="scope">
@click.native="handleAuth(scope.row.id)" <el-button
>授权</el-button type="text"
> size="small"
<el-button @click.native="handleAuth(scope.row)"
type="text" >授权
size="small" </el-button
@click.native="handleForm(scope.$index, scope.row)" >
>编辑</el-button <el-button
> type="text"
<el-button size="small"
type="text" @click.native="handleForm(scope.$index, scope.row)"
size="small" >编辑
@click.native="handleDel(scope.$index, scope.row)" </el-button
:loading="deleteLoading" >
>删除</el-button <el-button
> type="text"
</template> size="small"
</el-table-column> @click.native="handleDel(scope.$index, scope.row)"
</el-table> :loading="deleteLoading"
>删除
</el-button
>
</template>
</el-table-column>
</el-table>
<el-pagination <el-pagination
:page-size="query.limit" :page-size="query.limit"
@current-change="handleCurrentChange" @current-change="handleCurrentChange"
layout="prev, pager, next" layout="prev, pager, next"
:total="total" :total="total"
> >
</el-pagination> </el-pagination>
<!--授权界面--> <!--授权界面-->
<el-dialog <el-dialog
title="授权" :title="authTitle"
:visible.sync="authFormVisible" :visible.sync="authFormVisible"
:close-on-click-modal="false" :close-on-click-modal="false"
:close-on-press-escape="false" :close-on-press-escape="false"
class="dialog" class="dialog"
>
<el-tree
style="max-height: 75vh; overflow-y: auto"
:data="authList"
show-checkbox=""
default-expand-all=""
node-key="id"
ref="tree"
:props="defaultProps"
:default-checked-keys="authDefaultCheckedKeys"
>
</el-tree>
<div slot="footer" class="dialog-footer">
<el-button @click.native="authFormVisible = !authFormVisible"
>取消</el-button
> >
<el-button <el-tree
type="primary" style="max-height: 75vh; overflow-y: auto"
@click.native="authSubmit()" :data="authList"
:loading="authLoading" show-checkbox=""
>提交 default-expand-all=""
</el-button> node-key="id"
</div> ref="tree"
</el-dialog> :props="defaultProps"
:default-checked-keys="authDefaultCheckedKeys"
>
</el-tree>
<div slot="footer" class="dialog-footer">
<el-button @click.native="authFormVisible = !authFormVisible"
>取消
</el-button
>
<el-button
type="primary"
@click.native="authSubmit()"
:loading="authLoading"
>提交
</el-button>
</div>
</el-dialog>
<!--表单--> <!--表单-->
<el-dialog <el-dialog
:title="formMap[formName]" :title="formMap[formName]"
:visible.sync="formVisible" :visible.sync="formVisible"
:close-on-click-modal="false" :close-on-click-modal="false"
:close-on-press-escape="false" :close-on-press-escape="false"
:before-close="hideForm" :before-close="hideForm"
width="85%" width="85%"
top="5vh" top="5vh"
>
<el-form :model="formData" :rules="formRules" ref="dataForm">
<el-form-item label="角色名称" prop="name">
<el-input v-model="formData.name" auto-complete="off"></el-input>
</el-form-item>
<el-form-item label="排序" prop="listorder">
<el-input
type=""
v-model="formData.listorder"
auto-complete="off"
></el-input>
</el-form-item>
<el-form-item label="状态" prop="status">
<el-radio-group v-model="formData.status" :disabled="true">
<el-radio :label="0">禁用</el-radio>
<el-radio :label="1">正常</el-radio>
</el-radio-group>
</el-form-item>
<el-form-item label="备注说明">
<el-input type="textarea" v-model="formData.remark"></el-input>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click.native="hideForm">取消</el-button>
<el-button
type="primary"
@click.native="formSubmit()"
:loading="formLoading"
>提交</el-button
> >
</div> <el-form :model="formData" :rules="formRules" ref="dataForm">
</el-dialog> <el-form-item label="角色名称" prop="name">
</div> <el-input v-model="formData.name" auto-complete="off"></el-input>
</el-form-item>
<el-form-item label="排序" prop="listorder">
<el-input
type=""
v-model="formData.listorder"
auto-complete="off"
></el-input>
</el-form-item>
<el-form-item label="状态" prop="status">
<el-radio-group v-model="formData.status" :disabled="true">
<el-radio :label="0">禁用</el-radio>
<el-radio :label="1">正常</el-radio>
</el-radio-group>
</el-form-item>
<el-form-item label="备注说明">
<el-input type="textarea" v-model="formData.remark"></el-input>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click.native="hideForm">取消</el-button>
<el-button
type="primary"
@click.native="formSubmit()"
:loading="formLoading"
>提交
</el-button
>
</div>
</el-dialog>
</div>
</template> </template>
<script> <script>
@ -160,6 +168,7 @@ import {
authRoleSave, authRoleSave,
authRoleDelete authRoleDelete
} from "../../../api/auth/authRole"; } from "../../../api/auth/authRole";
const formJson = { const formJson = {
id: "", id: "",
name: "", name: "",
@ -202,13 +211,14 @@ export default {
formData: formJson, formData: formJson,
formRules: { formRules: {
name: [ name: [
{ required: true, message: "请输入名称", trigger: "blur" } {required: true, message: "请输入名称", trigger: "blur"}
], ],
status: [ status: [
{ required: true, message: "请选择状态", trigger: "change" } {required: true, message: "请选择状态", trigger: "change"}
] ]
}, },
deleteLoading: false deleteLoading: false,
authTitle: "授权",
}; };
}, },
methods: { methods: {
@ -246,11 +256,12 @@ export default {
}); });
}, },
// //
handleAuth(roleId) { handleAuth(row) {
this.authFormData.role_id = roleId; this.authFormData.role_id = row.id;
this.authTitle = "授权角色<" + row.name + ">";
this.authFormData.auth_rules = []; this.authFormData.auth_rules = [];
this.authList = []; this.authList = [];
authRoleAuthList({ id: roleId }) authRoleAuthList({id: row.id})
.then(response => { .then(response => {
if (response.code != 20000) { if (response.code != 20000) {
this.authFormVisible = false; this.authFormVisible = false;
@ -260,6 +271,7 @@ export default {
}); });
return; return;
} }
this.authFormVisible = true; this.authFormVisible = true;
this.authList = response.data.list || []; this.authList = response.data.list || [];
console.log("this.authList=" + this.authList); console.log("this.authList=" + this.authList);
@ -267,11 +279,10 @@ export default {
let tempCheckedKeys = []; let tempCheckedKeys = [];
let id = null; let id = null;
let node = null; let node = null;
let getTreeNode = function(arr, id) { let getTreeNode = function (arr, id) {
for (let i in arr) { for (let i in arr) {
let tempNode = arr[i]; let tempNode = arr[i];
if (tempNode.id === id) { if (tempNode.id === id) {
//
node = tempNode; node = tempNode;
} }
// //
@ -290,11 +301,12 @@ export default {
this.authDefaultCheckedKeys = tempCheckedKeys; this.authDefaultCheckedKeys = tempCheckedKeys;
// this.$refs.tree.setCheckedKeys(tempCheckedKeys); // this.$refs.tree.setCheckedKeys(tempCheckedKeys);
}) })
.catch(() => {}); .catch(() => {
});
}, },
authSubmit() { authSubmit() {
this.authLoading = true; this.authLoading = true;
let getNodeParents = function(node) { let getNodeParents = function (node) {
let arr = []; let arr = [];
let id = node.data.id || null; let id = node.data.id || null;
if (id) { if (id) {
@ -405,7 +417,7 @@ export default {
}) })
.then(() => { .then(() => {
this.deleteLoading = true; this.deleteLoading = true;
let para = { id: row.id }; let para = {id: row.id};
authRoleDelete(para) authRoleDelete(para)
.then(response => { .then(response => {
this.deleteLoading = false; this.deleteLoading = false;
@ -443,7 +455,8 @@ export default {
return statusMap[status]; return statusMap[status];
} }
}, },
mounted() {}, mounted() {
},
created() { created() {
// //
this.getList(); this.getList();

Loading…
Cancel
Save