diff --git a/.env.production b/.env.production
index b3751a76..f54ba371 100644
--- a/.env.production
+++ b/.env.production
@@ -15,16 +15,15 @@ ENV = 'production'
# 测试服务器
# VUE_APP_BASE_API = 'http://192.168.0.66:9150/UDI_WMS_MC/'
+
+# 林淑波
+# VUE_APP_BASE_API = 'http://192.168.0.231:9150/UDI_WMS_MC/'
+
# 文明东1
# VUE_APP_BASE_API = 'http://192.168.0.62:9150/UDI_WMS_MC/'
# 文明东2
# VUE_APP_BASE_API = 'http://192.168.0.61:9150/UDI_WMS_MC/'
-
-# 林树波
-VUE_APP_BASE_API = 'http://192.168.0.231:9150/UDI_WMS_MC/'
-
-
刘恩典
# VUE_APP_BASE_API = 'http://192.168.0.54:9150/UDI_WMS_MC/'
diff --git a/src/api/auth/authAdmin.js b/src/api/auth/authAdmin.js
index 1523a56e..30340561 100644
--- a/src/api/auth/authAdmin.js
+++ b/src/api/auth/authAdmin.js
@@ -9,7 +9,6 @@ export function authAdminList(query) {
});
}
-
//根据当前角色,获取是否为客户角色
export function roleCustomers(query) {
return axios({
@@ -67,4 +66,18 @@ export function selectUser(query) {
});
}
+export function modifyPasswd(data) {
+ return axios({
+ url: "/admin/auth/admin/updateUser",
+ method: "post",
+ data: data
+ });
+}
+export function filterByUser(query) {
+ return axios({
+ url: "/admin/auth/admin/selectUser",
+ method: "get",
+ params: query
+ });
+}
diff --git a/src/api/thrsys/thrProductsExport.js b/src/api/thrsys/thrProductsExport.js
index dac0a27e..ad941681 100644
--- a/src/api/thrsys/thrProductsExport.js
+++ b/src/api/thrsys/thrProductsExport.js
@@ -31,3 +31,11 @@ export function exportExcel(query) {
});
}
+export function exportExcelAll(query) {
+ return axios({
+ url: "/udiwms/thrProducts/importLog/exportAll",
+ method: "post",
+ data: query
+ });
+}
+
diff --git a/src/layout/components/Navbar.vue b/src/layout/components/Navbar.vue
index 4df395bc..96add313 100644
--- a/src/layout/components/Navbar.vue
+++ b/src/layout/components/Navbar.vue
@@ -10,10 +10,10 @@
部门:{{ deptName }}
+ style="margin: 10px;color: #2d8cf0;font-size: 14px;">部门 : {{ deptName }}
仓库:{{ inv }}
-
用户:{{ this.companyName }}
+ style="margin-right: 18px;margin-left:8px;color: #2d8cf0;font-size: 14px;">仓库 : {{ inv }}
+
用户 : 吴XX{{ this.companyName }}
({{
this.userName
@@ -40,6 +40,9 @@
切换仓库
+
+ 修改密码
+
退出登录
@@ -102,6 +105,78 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改密码
+ 取消
+
+
+
+
@@ -118,17 +193,35 @@ import RuoYiDoc from '@/components/RuoYi/Doc'
import store from "@/store";
import {filterAllByUser} from "@/api/system/invWarehouse";
import {filterSubByInv, findByDeptUser} from "@/api/system/invSubWarehouse";
-import {updateInv} from "@/api/auth/authAdmin";
+import {updateInv, modifyPasswd,filterByUser} from "@/api/auth/authAdmin";
import {isRelogin} from "@/utils/request";
import router from "@/router";
export default {
data() {
+ // let validatePass2 = (rule, value, callback) => {
+ // if (value === "") {
+ // callback(new Error("请再次输入密码"));
+ // } else if (value !== this.inputQuery.passWord) {
+ // callback(new Error("两次输入密码不一致!"));
+ // } else {
+ // callback();
+ // }
+ // };
return {
inv: store.getters.locInvName,
deptName: store.getters.locDeptName,
selInvVisible: false,
+ isVisible: false,
userInfo: {},
+ inputQuery: {
+ passWord: "",
+ newPassword: "",
+ confirmPassword: "",
+ userName: "",
+ locInvCode: "",
+
+ },
deptList: [],
invList: [],
formRules: {
@@ -138,6 +231,19 @@ export default {
locInvCode: [
{required: true, message: "请选择当前仓库", trigger: "blur"}
],
+ password: [{required: true, message: "请输入密码", trigger: "blur"}],
+ newPassword: [{required: true, message: "请输入密码", trigger: "blur"}],
+ confirmPassword: [
+ {required: true, message: "请确认密码", trigger: "blur"},
+ // {validator: validatePass2, trigger: "blur"},
+ ],
+ },
+ rules: {
+ password: [{required: true, message: "请输入密码", trigger: "blur"}],
+ confirmPassword: [
+ {required: true, message: "请确认密码", trigger: "blur"},
+ // {validator: validatePass2, trigger: "blur"},
+ ],
},
};
@@ -176,6 +282,41 @@ export default {
}
},
methods: {
+ onSubmit() {
+ if (this.inputQuery.newPassword != this.inputQuery.confirmPassword) {
+ this.$message.error("新密码与确认密码不一致!!!!");
+ return
+ }
+ if (this.inputQuery.passWord == this.inputQuery.newPassword) {
+ this.$message.error("旧密码与新密码不能相同!!!!");
+ return
+ }
+ this.$refs["dataForm"].validate((valid) => {
+ if (valid) {
+ this.loading = true;
+ modifyPasswd(this.inputQuery).then((response) => {
+ if (response.code === 20000) {
+ this.loading = false;
+ this.$confirm('密码重置成功,请点击确定重新登录', '提示', {
+ confirmButtonText: '确定',
+ cancelButtonText: '取消',
+ type: 'warning'
+ }).then(() => {
+ this.$store.dispatch('LogOut').then(() => {
+ location.href = process.env.VUE_APP_CONTEXT_PATH;
+ })
+ }).catch(() => {
+ });
+ } else {
+ this.$message.error(response.message);
+ }
+ });
+ } else {
+ return false;
+ }
+ });
+ },
+
toggleSideBar() {
this.$store.dispatch('app/toggleSideBar')
},
@@ -186,7 +327,7 @@ export default {
type: 'warning'
}).then(() => {
this.$store.dispatch('LogOut').then(() => {
- location.href = process.env.VUE_APP_CONTEXT_PATH ;
+ location.href = process.env.VUE_APP_CONTEXT_PATH;
})
}).catch(() => {
});
@@ -195,6 +336,9 @@ export default {
changeInv() {
this.selInvVisible = true;
},
+ modifyPassword() {
+ this.isVisible = true;
+ },
getDeptList() {
this.deptList = [];
@@ -206,10 +350,20 @@ export default {
.catch(() => {
});
},
+ getInputQuery() {
+ this.inputQuery = [];
+ filterByUser()
+ .then((response) => {
+ this.inputQuery = response.data || [];
+ // this.getInvList();
+ })
+ .catch(() => {
+ });
+ },
deptChange() {
this.getInvList();
- this.userInfo.locInvCode="";
+ this.userInfo.locInvCode = "";
},
getInvList() {
@@ -225,7 +379,7 @@ export default {
}
})
.catch(() => {
- this.selInvVisible=true;
+ this.selInvVisible = true;
});
},
@@ -261,6 +415,8 @@ export default {
closeDialog() {
this.selInvVisible = false;
+ this.isVisible = false;
+
this.getDeptList()
this.resetForm();
},
@@ -278,12 +434,15 @@ export default {
},
created() {
this.userName = this.$store.getters.name;
- this.userInfo = {
- id: store.getters.adminId,
- locInvCode: store.getters.locInvCode,
- locDeptCode: store.getters.locDeptCode,
- };
-
+ this.userInfo = {
+ id: store.getters.adminId,
+ locInvCode: store.getters.locInvCode,
+ locDeptCode: store.getters.locDeptCode,
+ };
+ this.inputQuery = {
+ userName: this.$store.getters.name,
+ };
+ this.getInputQuery();
this.getDeptList();
//this.getInvList()
diff --git a/src/views/basic/corpMaintain/corpMaintain.vue b/src/views/basic/corpMaintain/corpMaintain.vue
index f1418213..c171f6e2 100644
--- a/src/views/basic/corpMaintain/corpMaintain.vue
+++ b/src/views/basic/corpMaintain/corpMaintain.vue
@@ -213,6 +213,7 @@ export default {
return {
query: {
key: "",
+ corpType: "2",
page: 1,
limit: 20,
},
@@ -303,6 +304,7 @@ export default {
});
this.query = {
key: "",
+ corpType: "2",
page: 1,
limit: 20,
};
diff --git a/src/views/basic/destiny/addDestinyProcess.vue b/src/views/basic/destiny/addDestinyProcess.vue
index f30db7a3..b7e92264 100644
--- a/src/views/basic/destiny/addDestinyProcess.vue
+++ b/src/views/basic/destiny/addDestinyProcess.vue
@@ -107,7 +107,7 @@
width="60%"
append-to-body
v-if="orderMutiVisible"
- @close='closeDialog'
+ @close='closedeStinyDialog'
:close-on-click-modal="false"
:close-on-press-escape="false"
>
@@ -250,6 +250,11 @@ export default {
this.filterQuery.page = val.page;
this.getList();
},
+ closedeStinyDialog(){
+ this.orderMutiVisible = false;
+ this.destinyProcessDelectShow = false;
+ this.destinyProcessCodeShow = false;
+ },
closeDialog(row) {
this.destinyId = row;
var query = {
diff --git a/src/views/basic/destiny/destiny.vue b/src/views/basic/destiny/destiny.vue
index efa933bd..58f290b6 100644
--- a/src/views/basic/destiny/destiny.vue
+++ b/src/views/basic/destiny/destiny.vue
@@ -3,12 +3,12 @@
-
+
-
+
@@ -28,8 +28,8 @@
-
-
+
+
@@ -61,7 +61,7 @@
-
+
{
if (res.code == 20000) {
diff --git a/src/views/basic/destiny/destinyModelSelectProduct.vue b/src/views/basic/destiny/destinyModelSelectProduct.vue
index 1ff5a657..b5def680 100644
--- a/src/views/basic/destiny/destinyModelSelectProduct.vue
+++ b/src/views/basic/destiny/destinyModelSelectProduct.vue
@@ -27,9 +27,9 @@
-
-
-
+
+
+
@@ -42,7 +42,7 @@
-
+
{
this.loading = false;
if (response.code === 20000) {
- console.log(response)
this.list = response.data.list || [];
this.total = response.data.total || 0;
} else {
diff --git a/src/views/basic/destiny/destinyProcess.vue b/src/views/basic/destiny/destinyProcess.vue
index 97e4ffed..0cf05c49 100644
--- a/src/views/basic/destiny/destinyProcess.vue
+++ b/src/views/basic/destiny/destinyProcess.vue
@@ -131,8 +131,8 @@ export default {
codeArray: [],
editQuery: {},
formMap: {
- "add": "新增定数包模板",
- "edit": "编辑定数包模板"
+ "add": "新增定数包",
+ "edit": "编辑定数包"
},
statusMap: {
0: "草稿",
diff --git a/src/views/basic/destiny/destinyProcessDelect.vue b/src/views/basic/destiny/destinyProcessDelect.vue
index 9c9dc9dc..77a0a111 100644
--- a/src/views/basic/destiny/destinyProcessDelect.vue
+++ b/src/views/basic/destiny/destinyProcessDelect.vue
@@ -10,7 +10,7 @@
-
+
diff --git a/src/views/basic/destiny/destinySelectProduct.vue b/src/views/basic/destiny/destinySelectProduct.vue
index e4ed795c..ee6cd67e 100644
--- a/src/views/basic/destiny/destinySelectProduct.vue
+++ b/src/views/basic/destiny/destinySelectProduct.vue
@@ -317,6 +317,7 @@ export default {
components: {udiRlDetailDialog},
created() {
+ this.getList();
},
};
diff --git a/src/views/basic/product/bindProduct.vue b/src/views/basic/product/bindProduct.vue
index 3f358434..a768d43b 100644
--- a/src/views/basic/product/bindProduct.vue
+++ b/src/views/basic/product/bindProduct.vue
@@ -82,11 +82,12 @@
-
+
+
详情
+ 移除
@@ -485,7 +486,33 @@ export default {
};
this.checked = row.isUseDy == 1;
},
-
+ handleDeleteClick(rowId){
+ this.$confirm("此操作将删除该供应商器械信息, 是否继续?", "提示", {
+ confirmButtonText: "确定",
+ cancelButtonText: "取消",
+ type: "warning",
+ })
+ .then(() => {
+ let dQuery = {
+ id: rowId,
+ };
+ deleteCompanyProductRelevance(dQuery)
+ .then((response) => {
+ this.loading = false;
+ if (response.code == 20000) {
+ this.$message.success("删除成功");
+ } else {
+ this.$message.error(response.message);
+ }
+ this.getList();
+ })
+ .catch(() => {
+ this.loading = false;
+ });
+ })
+ .catch(() => {
+ });
+ },
lockProducts(status) {
let selectData = this.multipleSelection;
let postQuery = {
diff --git a/src/views/inout/DialogCreateOrder.vue b/src/views/inout/DialogCreateOrder.vue
index c4ac9b1b..f6ec1832 100644
--- a/src/views/inout/DialogCreateOrder.vue
+++ b/src/views/inout/DialogCreateOrder.vue
@@ -118,6 +118,7 @@
placeholder="请选择单据类型"
:disabled="corpOrderIdDisabled"
style="width: 90%"
+ filterable
@change="actionChange"
>
{{ scope.row.createTime }}
+
+
@@ -449,6 +451,7 @@ export default {
startTime: null,
endTime: null,
};
+ this.actDateRange = null
this.getList();
},
//查询
diff --git a/src/views/inout/DialogNewReviewOrder.vue b/src/views/inout/DialogNewReviewOrder.vue
index 4d488c87..eb6984c0 100644
--- a/src/views/inout/DialogNewReviewOrder.vue
+++ b/src/views/inout/DialogNewReviewOrder.vue
@@ -344,7 +344,7 @@ export default {
checkFinish() {
let query = {
- orderId: this.orderQuery.billNo,
+ billNo: this.formData.billNo,
};
getAcceptStatus(query)
.then((response) => {
diff --git a/src/views/inout/DialogSelectRl.vue b/src/views/inout/DialogSelectRl.vue
index ed68ed0c..5200ac05 100644
--- a/src/views/inout/DialogSelectRl.vue
+++ b/src/views/inout/DialogSelectRl.vue
@@ -587,6 +587,7 @@ export default {
this.filterQuery.nameCode = this.curRow.nameCode;
this.filterQuery.bindRlIds = this.curRow.bindRlIds;
this.filterQuery.unitFk = this.fromCorp;
+ this.filterQuery.key = this.curRow.key;
getMutiUdiInfos(this.filterQuery)
.then((response) => {
this.loading = false;
@@ -860,6 +861,13 @@ export default {
components: {}
,
created() {
+ if(this.curRow.selectSupId!=null){
+ if(this.curRow.selectSupId!=false){
+ this.fromCorp=this.curRow.selectSupId
+ }else{
+ this.fromCorp=''
+ }
+ }
this.getList();
}
,
diff --git a/src/views/inout/InvoiceRegistration.vue b/src/views/inout/InvoiceRegistration.vue
index d7066054..dceff7c9 100644
--- a/src/views/inout/InvoiceRegistration.vue
+++ b/src/views/inout/InvoiceRegistration.vue
@@ -209,6 +209,7 @@
+
{
+ previewFile(this.certFileUrl).then(res => {
binaryData.push(res);
- let URL = window.URL.createObjectURL(new Blob(binaryData, {type: pdf}));
+ let URL = window.URL.createObjectURL(new Blob(binaryData, { type: pdf }));
window.open(URL);
- })
- // window.open(this.imgList[0])
- return false
+ });
+ return false;
}
this.imgViewerVisible = true;
- // previewImage({
- // imageUrl: this.inputQuery.licenseUrl,
- // certFileUrl: this.certFileUrl,
- // }).then((response) => {
- // if (response.code === 20000) {
- // }
- // console.log(this.imgList);
- // });
const m = (e) => {
e.preventDefault();
};
document.body.style.overflow = "hidden";
document.addEventListener("touchmove", m, false); // 禁止页面滑动
-
},
+ closeImgViewer() {
+ this.imgViewerVisible = false;
+ document.body.style.overflow = "auto"; // 恢复页面滑动
+ document.removeEventListener("touchmove", m, false); // 移除禁止页面滑动的事件
+ },
+
invChange() {
@@ -841,7 +838,7 @@ export default {
},
freshen() {
this.Upinvoice = false;
- this.getBizDetailListInv();
+ // this.getBizDetailListInv();
},
printOrder(row) {
this.currentManufacturer = row;
diff --git a/src/views/inout/IoAuditedOrder.vue b/src/views/inout/IoAuditedOrder.vue
index 573dde03..9d72559a 100644
--- a/src/views/inout/IoAuditedOrder.vue
+++ b/src/views/inout/IoAuditedOrder.vue
@@ -153,6 +153,8 @@
+
+
+
+
+
+
+
+
+
+
@@ -225,6 +227,11 @@
row-key="id"
>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/inout/IoDealOrder.vue b/src/views/inout/IoDealOrder.vue
index efaced76..13a303ea 100644
--- a/src/views/inout/IoDealOrder.vue
+++ b/src/views/inout/IoDealOrder.vue
@@ -149,6 +149,8 @@
+
+
+
+
+
+
+
+
打印
@@ -203,6 +204,11 @@
row-key="id"
>
+
+
+
+
+
diff --git a/src/views/inout/PanelCreateOrderBizDetail.vue b/src/views/inout/PanelCreateOrderBizDetail.vue
index a0616924..207308c8 100644
--- a/src/views/inout/PanelCreateOrderBizDetail.vue
+++ b/src/views/inout/PanelCreateOrderBizDetail.vue
@@ -22,6 +22,11 @@
:row-style="rowStyle"
max-height="350" height="350" ref="multipleTable">
+
+
diff --git a/src/views/inout/muti/ioOrderMutiSelect.vue b/src/views/inout/muti/ioOrderMutiSelect.vue
index 41a24468..857efd00 100644
--- a/src/views/inout/muti/ioOrderMutiSelect.vue
+++ b/src/views/inout/muti/ioOrderMutiSelect.vue
@@ -169,6 +169,7 @@ export default {
0: "草稿",
1: "未审核",
2: "已审核",
+ 3: "已拒绝"
},
orderMutiVisible: false,
actDateRange: [],
@@ -210,7 +211,9 @@ export default {
statusFilterType(status) {
const statusMap = {
0: "warning",
- 1: "success",
+ 1: "primary",
+ 2: "success",
+ 3: "danger"
};
return statusMap[status];
},
diff --git a/src/views/inventory/InvCountOrderAudit.vue b/src/views/inventory/InvCountOrderAudit.vue
index 57e4d8fa..3aa436a7 100644
--- a/src/views/inventory/InvCountOrderAudit.vue
+++ b/src/views/inventory/InvCountOrderAudit.vue
@@ -328,7 +328,7 @@ export default {
updateCountOrderStatus(params).then((res) => {
if (res.code === 20000) {
this.$message.success("审核通过");
- this.$message.success("已驳回");
+ this.$message.warning("已驳回");
this.getList();
this.onRestDetail();
} else {
diff --git a/src/views/inventory/InvMAOrderModify.vue b/src/views/inventory/InvMAOrderModify.vue
index 18d0f38c..64925e06 100644
--- a/src/views/inventory/InvMAOrderModify.vue
+++ b/src/views/inventory/InvMAOrderModify.vue
@@ -137,10 +137,10 @@
-
-
+
-
@@ -158,7 +158,7 @@
type="text"
size="small"
@click.stop="true"
- @click.native="updateOrderDetail(scope.row)"
+ @click.native="updateOrderDetail(scope.$index,scope.row)"
>保存
@@ -473,13 +473,14 @@ export default {
}
})
},
- updateOrderDetail(row) {
+ updateOrderDetail(index,row) {
updateInvMAOrderDetail(row).then((res) => {
if (res.code === 20000) {
this.$message.success("保存成功!")
this.getList();
}
})
+ this.currentIndex = -1;
},
editOrderDetail(index, row) {
this.currentIndex = index;
diff --git a/src/views/inventory/inner/innerCodeDetail.vue b/src/views/inventory/inner/innerCodeDetail.vue
index 3b248202..8de253d6 100644
--- a/src/views/inventory/inner/innerCodeDetail.vue
+++ b/src/views/inventory/inner/innerCodeDetail.vue
@@ -42,7 +42,7 @@
-
+
{{ statusMap[scope.row.status] }}
diff --git a/src/views/purchase/purApply/purOrderSelectProduct.vue b/src/views/purchase/purApply/purOrderSelectProduct.vue
index 3cdb0a9b..3247e9bf 100644
--- a/src/views/purchase/purApply/purOrderSelectProduct.vue
+++ b/src/views/purchase/purApply/purOrderSelectProduct.vue
@@ -115,6 +115,16 @@
+
+
+
+
详情
diff --git a/src/views/purchase/purApply/pureApplyAudit.vue b/src/views/purchase/purApply/pureApplyAudit.vue
index ef9470e7..7854627a 100644
--- a/src/views/purchase/purApply/pureApplyAudit.vue
+++ b/src/views/purchase/purApply/pureApplyAudit.vue
@@ -103,6 +103,8 @@
+
+
{
this.userData = res.data.list;
this.userTotal = res.data.total;
-
}).catch((error) => {
this.$message.error("数据正在处理,请勿重复提交")
});
diff --git a/src/views/system/dept/invWarehouse.vue b/src/views/system/dept/invWarehouse.vue
index 87c89bdb..42d420bc 100644
--- a/src/views/system/dept/invWarehouse.vue
+++ b/src/views/system/dept/invWarehouse.vue
@@ -578,7 +578,7 @@ export default {
this.subData = {advanceType: data.advanceType.toString(), spUse: false, parentCode: data.code};
}
}
-
+ debugger
this.subFormVisible = true;
this.getSubThrsysDetailData();
if (this.subData.parentCode != null && this.subData.parentCode != "") {
@@ -592,6 +592,7 @@ export default {
}
filterSubAll(this.query)
.then((response) => {
+ debugger
let invList = response.data || [];
//上级仓库中去除当前仓库节点
if (invList.length > 0) {
diff --git a/src/views/system/param/busTypeChange.vue b/src/views/system/param/busTypeChange.vue
index 7034e6b0..b26b13ea 100644
--- a/src/views/system/param/busTypeChange.vue
+++ b/src/views/system/param/busTypeChange.vue
@@ -239,7 +239,14 @@ export default {
this.$message.error("请选择类型!");
return;
}
-
+ if (this.inputQuery.beforeTime < 0){
+ this.$message.error("生成出入库单时间间隔不能为负数!")
+ return;
+ }
+ if (this.inputQuery.busBeforeTime < 0){
+ this.$message.error("生成业务单时间间隔不能为负数!")
+ return;
+ }
if (this.formName === "add") {
let numRegExp = '^[0-9]*$';
let numReg = new RegExp(numRegExp);
diff --git a/src/views/system/param/busTypePre.vue b/src/views/system/param/busTypePre.vue
index 30388134..a6ffdf7e 100644
--- a/src/views/system/param/busTypePre.vue
+++ b/src/views/system/param/busTypePre.vue
@@ -235,11 +235,11 @@ export default {
return;
}
if (this.inputQuery.beforeTime < 0){
- this.$message.error("时间间隔不能为负数!")
+ this.$message.error("生成出入库单时间间隔不能为负数!")
return;
}
if (this.inputQuery.busBeforeTime < 0){
- this.$message.error("时间间隔不能为负数!")
+ this.$message.error("生成业务单时间间隔不能为负数!")
return;
}
// if (isBlank(this.inputQuery.invCode)) {
diff --git a/src/views/system/user/authUser.vue b/src/views/system/user/authUser.vue
index 7bb18229..7fc018fc 100644
--- a/src/views/system/user/authUser.vue
+++ b/src/views/system/user/authUser.vue
@@ -1,38 +1,42 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
- 重置
-
- 查询
-
- 新增
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 显示/隐藏搜索栏
+ 重置
+ 查询
+ 新增
+
+
+
+
@@ -292,10 +296,12 @@ export default {
}
};
return {
+ showSearch: true,
roles: [],
query: {
userName: "",
userFlag: "1",
+ deptName: "",
page: 1,
limit: 10,
roleId: "",
@@ -363,6 +369,12 @@ export default {
};
},
methods: {
+ getDeptList(){
+
+ },
+ hideSearch() {
+ this.showSearch = !this.showSearch;
+ },
onReset() {
this.$router.push({
path: ""
@@ -370,6 +382,7 @@ export default {
this.query = {
userName: "",
userFlag: "1",
+ deptName: null,
page: 1,
limit: 10,
roleId: "",
diff --git a/src/views/thirdSys/api/DialogEditBusDown.vue b/src/views/thirdSys/api/DialogEditBusDown.vue
index 44d8f451..4b0d441c 100644
--- a/src/views/thirdSys/api/DialogEditBusDown.vue
+++ b/src/views/thirdSys/api/DialogEditBusDown.vue
@@ -71,7 +71,7 @@