同步服务修改

master
anthonyywj2 3 years ago
parent 9993061db5
commit 25a85e3bd0

21
package-lock.json generated

@ -20,6 +20,7 @@
"qrcodejs2": "^0.0.2",
"vue": "2.5.16",
"vue-router": "^3.0.1",
"vue2-verify": "^1.1.5",
"vuedraggable": "^2.17.0",
"vuex": "^3.0.1"
},
@ -19383,6 +19384,18 @@
"integrity": "sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==",
"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": {
"version": "2.17.0",
"resolved": "https://registry.npmjs.org/vuedraggable/-/vuedraggable-2.17.0.tgz",
@ -37460,6 +37473,14 @@
"integrity": "sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==",
"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": {
"version": "2.17.0",
"resolved": "https://registry.npmjs.org/vuedraggable/-/vuedraggable-2.17.0.tgz",

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

@ -2,5 +2,6 @@
"UDI_SYNC_SERVER_IP": "http://192.168.0.109:9995/",
"BASE_URL":"http://192.168.0.109:9991",
"SERVER_IP": "http://192.168.0.109:9991/",
"WEBSOCKET_URL": "ws://192.168.0.109:9991/UDI_WMS_MC/api/websocket/"
"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) {
return axios({
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 syncConfig from "../views/thrsys/SysUdimsConfig.vue";
import BasicEntrutsRece from "../views/basic/BasicEntrutsRece.vue";
// Vue.use(VueRouter);
const err401 = r =>
@ -342,7 +344,6 @@ export const asyncRouterMap = [
authRule: ["admin/spsSyncData"]
}
},
// {
// path: "bussinessType",
// name: "单据类型",
@ -519,7 +520,7 @@ export const asyncRouterMap = [
{
path: "stockOrderSearch",
component: stockOrderSearch,
name: "未核对单据",
name: "未验收单据",
meta: {
authRule: ["stock/stockOrderSearch"]
}
@ -527,7 +528,7 @@ export const asyncRouterMap = [
{
path: "stockOrderDelSearch",
component: stockOrderDelSearch,
name: "已核对单据",
name: "已验收单据",
meta: {
authRule: ["stock/stockOrderDelSearch"]
}
@ -1044,6 +1045,15 @@ export const asyncRouterMap = [
}
},
{
path: "BasicEntrutsRece",
name: "委托验收",
component: BasicEntrutsRece,
meta: {
authRule: ["basic/BasicEntrutsRece"]
}
},
{
path: "stockOrderDelSearch",
component: stockOrderDelSearch,

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

@ -2,28 +2,28 @@
<div>
<el-row :gutter="20" class="el-row" type="flex" align="middle">
<el-col :span="8" class="el-col">
<div class="text item">
<span>是否启用接口</span>
<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="false" size="mini">禁用</el-radio-button>
</el-radio-group>
</div>
</el-col>
<!-- <el-col :span="8" class="el-col">-->
<!-- <div class="text item">-->
<!-- <span>是否启用接口</span>-->
<!-- <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="false" size="mini">禁用</el-radio-button>-->
<!-- </el-radio-group>-->
<!-- </div>-->
<!-- </el-col>-->
<el-col :span="12" class="el-col">
<div class="text item">
<el-radio-group v-model="inputDetailQuery.fromType" :disabled="!inputDetailQuery.enabled"
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="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-group>
<!--<el-checkbox :disabled="inputDetailQuery.fromType!=0 || !inputDetailQuery.enabled"-->
<!--v-model="inputDetailQuery.itrCache">是否启用接口缓存-->
<!--v-model="inputDetailQuery.itrCache">是否启用接口缓存-->
<!--</el-checkbox>-->
</div>
</el-col>
@ -102,61 +102,61 @@
</template>
<script>
export default {
name: "inputDetailQuery",
props: {
inputDetailQuery: {
type: Object,
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;
});
},
export default {
name: "inputDetailQuery",
props: {
inputDetailQuery: {
type: Object,
required: true,
},
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>
<style scoped>
.itemTag {
float: left;
text-align: left;
margin-top: 5px;
.itemTag {
float: left;
text-align: left;
margin-top: 5px;
}
}
.text {
font-size: 13px;
font-family: "Microsoft YaHei";
}
.text {
font-size: 13px;
font-family: "Microsoft YaHei";
}
.el-row {
display: flex;
flex-wrap: wrap;
margin-bottom: 20px;
.el-row {
display: flex;
flex-wrap: wrap;
margin-bottom: 20px;
}
}
.el-col {
border-radius: 4px;
flex-wrap: wrap;
.el-col {
border-radius: 4px;
flex-wrap: wrap;
}
}
</style>

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

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

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

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

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

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

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

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

@ -17,7 +17,15 @@
<el-option label="异常" value="2"></el-option>
</el-select>
</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-button-group style="display:flex;">
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
@ -121,6 +129,7 @@ export default {
status: "1",
page: 1,
limit: 10,
syncTime: null,
},
list: [],
headers: {},
@ -165,6 +174,7 @@ export default {
},
templateDlUrl: null,
checked: false,
syncTime: null,
};
},
@ -246,7 +256,8 @@ export default {
createSchedule(type) {
let query = {
createType: type
createType: type,
syncTime: this.syncTime,
}
createSchedule(query)

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

Loading…
Cancel
Save