机具大融合问题修改

This commit is contained in:
zzyuan 2024-11-29 17:03:51 +08:00
parent 663800aadd
commit 7665908991
4 changed files with 22 additions and 20 deletions

View File

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

View File

@ -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);
}) })

View File

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

View File

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