机具大融合问题修改
This commit is contained in:
parent
663800aadd
commit
7665908991
|
|
@ -10,7 +10,6 @@
|
||||||
clearable
|
clearable
|
||||||
size="small" maxlength="50"
|
size="small" maxlength="50"
|
||||||
prefix-icon="el-icon-search"
|
prefix-icon="el-icon-search"
|
||||||
@input="getUserList"
|
|
||||||
style="margin-bottom: 20px"
|
style="margin-bottom: 20px"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -21,7 +20,7 @@
|
||||||
:filter-node-method="filterNode"
|
:filter-node-method="filterNode"
|
||||||
:render-content="renderConent"
|
:render-content="renderConent"
|
||||||
ref="tree"
|
ref="tree"
|
||||||
node-key="userId"
|
node-key="id"
|
||||||
default-expand-all
|
default-expand-all
|
||||||
highlight-current
|
highlight-current
|
||||||
@node-click="handleNodeClick"
|
@node-click="handleNodeClick"
|
||||||
|
|
@ -502,7 +501,7 @@ export default {
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
// 根据名称筛选部门树
|
// 根据名称筛选部门树
|
||||||
deptName(val) {
|
userName(val) {
|
||||||
this.$refs.tree.filter(val);
|
this.$refs.tree.filter(val);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
@ -512,7 +511,7 @@ export default {
|
||||||
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
renderConent(h, { node }) {
|
renderConent(h, { node }) {
|
||||||
let iconClass = '';
|
let iconClass = '';
|
||||||
// 根据 node 的类型判断图标
|
// 根据 node 的类型判断图标
|
||||||
if (node.data.level == 99) {
|
if (node.data.level == 99) {
|
||||||
|
|
|
||||||
|
|
@ -459,7 +459,7 @@ export default {
|
||||||
handleDelete(row) {
|
handleDelete(row) {
|
||||||
const dictCodes = row.dictCode || this.ids;
|
const dictCodes = row.dictCode || this.ids;
|
||||||
this.$modal
|
this.$modal
|
||||||
.confirm('是否确认删除字典编码为"' + dictCodes + '"的数据项?')
|
.confirm('是否确认删除所选择的数据项')
|
||||||
.then(function () {
|
.then(function () {
|
||||||
return delData(dictCodes);
|
return delData(dictCodes);
|
||||||
})
|
})
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,6 @@
|
||||||
:model="maForm"
|
:model="maForm"
|
||||||
ref="maForm"
|
ref="maForm"
|
||||||
size="small"
|
size="small"
|
||||||
:rules="rules"
|
|
||||||
:inline="true"
|
:inline="true"
|
||||||
label-width="120px"
|
label-width="120px"
|
||||||
>
|
>
|
||||||
|
|
@ -17,7 +16,6 @@
|
||||||
filterable
|
filterable
|
||||||
clearable
|
clearable
|
||||||
collapse-tags
|
collapse-tags
|
||||||
@change="uniteChange"
|
|
||||||
disabled
|
disabled
|
||||||
placeholder="请选择租赁单位"
|
placeholder="请选择租赁单位"
|
||||||
></el-cascader>
|
></el-cascader>
|
||||||
|
|
@ -31,7 +29,6 @@
|
||||||
filterable
|
filterable
|
||||||
clearable
|
clearable
|
||||||
collapse-tags
|
collapse-tags
|
||||||
@change="projectChange"
|
|
||||||
disabled
|
disabled
|
||||||
placeholder="请选择租赁工程"
|
placeholder="请选择租赁工程"
|
||||||
></el-cascader>
|
></el-cascader>
|
||||||
|
|
|
||||||
|
|
@ -225,7 +225,7 @@
|
||||||
|
|
||||||
<!-- 出库弹窗 -->
|
<!-- 出库弹窗 -->
|
||||||
<el-dialog
|
<el-dialog
|
||||||
:title="title"
|
title="出库"
|
||||||
:visible.sync="showOutInfo"
|
:visible.sync="showOutInfo"
|
||||||
width="1200px"
|
width="1200px"
|
||||||
append-to-body
|
append-to-body
|
||||||
|
|
@ -324,7 +324,7 @@
|
||||||
|
|
||||||
<!-- 查看弹窗 -->
|
<!-- 查看弹窗 -->
|
||||||
<el-dialog
|
<el-dialog
|
||||||
:title="title"
|
title="查看"
|
||||||
:visible.sync="showOutView"
|
:visible.sync="showOutView"
|
||||||
width="1200px"
|
width="1200px"
|
||||||
append-to-body
|
append-to-body
|
||||||
|
|
@ -399,7 +399,7 @@
|
||||||
|
|
||||||
<!-- 编码出库 -->
|
<!-- 编码出库 -->
|
||||||
<el-dialog
|
<el-dialog
|
||||||
:title="title"
|
title="编码出库"
|
||||||
:visible.sync="openCode"
|
:visible.sync="openCode"
|
||||||
width="1200px"
|
width="1200px"
|
||||||
append-to-body
|
append-to-body
|
||||||
|
|
@ -774,7 +774,7 @@
|
||||||
|
|
||||||
<!-- 数量出库 -->
|
<!-- 数量出库 -->
|
||||||
<el-dialog
|
<el-dialog
|
||||||
:title="title"
|
title="数量出库"
|
||||||
:visible.sync="openNum"
|
:visible.sync="openNum"
|
||||||
width="1200px"
|
width="1200px"
|
||||||
append-to-body
|
append-to-body
|
||||||
|
|
@ -1007,7 +1007,10 @@ export default {
|
||||||
this.queryOutInfo.pageNum = 1;
|
this.queryOutInfo.pageNum = 1;
|
||||||
this.getDialogList();
|
this.getDialogList();
|
||||||
},
|
},
|
||||||
|
resetQueryOutInfo() {
|
||||||
|
this.queryOutInfo.typeId=""
|
||||||
|
this.getDialogList();
|
||||||
|
},
|
||||||
getListView() {
|
getListView() {
|
||||||
outInfoList(this.queryOutView.id).then((response) => {
|
outInfoList(this.queryOutView.id).then((response) => {
|
||||||
this.getListOutInfo = response.data.leaseApplyDetailsList;
|
this.getListOutInfo = response.data.leaseApplyDetailsList;
|
||||||
|
|
@ -1024,7 +1027,7 @@ export default {
|
||||||
// this.loading = false;
|
// this.loading = false;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
resetQueryOutInfo() {},
|
|
||||||
|
|
||||||
/** 查看按钮操作 */
|
/** 查看按钮操作 */
|
||||||
handleView(row) {
|
handleView(row) {
|
||||||
|
|
@ -1100,7 +1103,10 @@ export default {
|
||||||
this.getCodeList();
|
this.getCodeList();
|
||||||
},
|
},
|
||||||
|
|
||||||
resetOutQuery() {},
|
resetOutQuery() {
|
||||||
|
this.outQuery.maCode=""
|
||||||
|
this.handleOutQuery()
|
||||||
|
},
|
||||||
|
|
||||||
saveCodeOut() {
|
saveCodeOut() {
|
||||||
console.log(this.maCodeList)
|
console.log(this.maCodeList)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue