2025-09-18 17:40:18 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<!-- 小型弹窗,用于完成,删除,保存等操作 -->
|
|
|
|
|
|
<el-dialog class="l-dialog" :class="lDialog" :title="title" :visible.sync="dialogVisible" :showClose="true"
|
|
|
|
|
|
:closeOnClickModal="false" @close="handleClose" :append-to-body="true">
|
|
|
|
|
|
<div>
|
2025-09-18 18:02:29 +08:00
|
|
|
|
|
2025-09-18 17:40:18 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<span slot="footer" class="dialog-footer">
|
|
|
|
|
|
<el-button class="clear-btn" @click="handleClose" :disabled="disabled">取消</el-button>
|
|
|
|
|
|
<el-button type="primary" class="search-btn" :disabled="disabled"
|
|
|
|
|
|
@click="submitForm('ruleForm')">确认</el-button>
|
|
|
|
|
|
</span>
|
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
|
|
|
import _ from 'lodash'
|
|
|
|
|
|
import {
|
|
|
|
|
|
saveTransferApplyApi,
|
|
|
|
|
|
editTransferApplyApi,
|
|
|
|
|
|
getProSelectApi
|
|
|
|
|
|
} from '@/api/filesTransfer/apply'
|
|
|
|
|
|
import { getDeptSelectApi } from '@/api/select'
|
|
|
|
|
|
import Treeselect from "@riophae/vue-treeselect";
|
|
|
|
|
|
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
|
|
|
|
|
|
export default {
|
|
|
|
|
|
name: "FileTree",
|
2025-09-18 18:02:29 +08:00
|
|
|
|
props: ["width", "dataForm", "title", "disabled", "rowData"],
|
2025-09-18 17:40:18 +08:00
|
|
|
|
dicts: ['data_class_type'],
|
|
|
|
|
|
components: { Treeselect},
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
|
|
|
|
|
lDialog: this.width > 500 ? "w700" : "w500",
|
|
|
|
|
|
dialogVisible: true,
|
|
|
|
|
|
isDisabled: true,
|
|
|
|
|
|
};
|
|
|
|
|
|
},
|
|
|
|
|
|
created() {
|
2025-09-18 18:02:29 +08:00
|
|
|
|
// this.initFormData();
|
2025-09-18 17:40:18 +08:00
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
/** 初始化表单数据 */
|
|
|
|
|
|
async initFormData() {
|
2025-09-18 18:02:29 +08:00
|
|
|
|
|
2025-09-18 17:40:18 +08:00
|
|
|
|
if (this.isAdd === 'edit' && this.rowData) {
|
|
|
|
|
|
// 编辑模式:填充表单数据
|
|
|
|
|
|
this.form = {
|
|
|
|
|
|
id: this.rowData.id,
|
|
|
|
|
|
proId: this.rowData.proId || undefined,
|
|
|
|
|
|
deptId: this.rowData.deptId || undefined,
|
|
|
|
|
|
};
|
|
|
|
|
|
} else {
|
|
|
|
|
|
// 新增模式:重置表单
|
|
|
|
|
|
this.form = {
|
|
|
|
|
|
proId: undefined,
|
|
|
|
|
|
deptId: undefined,
|
|
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
// 选择移交档案
|
|
|
|
|
|
handleAddFile(){
|
|
|
|
|
|
this.fileTreeVisible = true;
|
|
|
|
|
|
},
|
|
|
|
|
|
/*关闭弹窗 */
|
|
|
|
|
|
handleClose() {
|
|
|
|
|
|
this.dialogVisible = false;
|
|
|
|
|
|
this.$emit("closeDialog");
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
this.dialogVisible = true;
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
/**确认弹窗 */
|
|
|
|
|
|
sureBtnClick() {
|
|
|
|
|
|
this.dialogVisible = false;
|
|
|
|
|
|
this.$emit("closeDialog");
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
this.dialogVisible = true;
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
/**重置表单*/
|
|
|
|
|
|
reset() {
|
|
|
|
|
|
this.form = {
|
|
|
|
|
|
id: null,
|
|
|
|
|
|
pid: null,
|
|
|
|
|
|
dataTypeName: '',
|
|
|
|
|
|
remark: '',
|
|
|
|
|
|
};
|
|
|
|
|
|
this.resetForm("ruleForm");
|
|
|
|
|
|
},
|
|
|
|
|
|
handleReuslt(res) {
|
|
|
|
|
|
this.$modal.msgSuccess(res.msg);
|
|
|
|
|
|
this.reset();
|
|
|
|
|
|
this.$emit('handleQuery');
|
|
|
|
|
|
this.handleClose();
|
|
|
|
|
|
},
|
|
|
|
|
|
/**验证 */
|
|
|
|
|
|
submitForm(formName) {
|
|
|
|
|
|
this.$refs[formName].validate(valid => {
|
|
|
|
|
|
if (valid) {
|
|
|
|
|
|
// 显示遮罩层
|
|
|
|
|
|
this.loading = this.$loading({
|
|
|
|
|
|
lock: true,
|
|
|
|
|
|
text: "数据提交中,请稍候...",
|
|
|
|
|
|
background: 'rgba(0,0,0,0.5)',
|
|
|
|
|
|
target: this.$el.querySelector('.el-dialog') || document.body
|
|
|
|
|
|
})
|
|
|
|
|
|
let params = _.cloneDeep(this.form);
|
|
|
|
|
|
if (this.isAdd === 'add') {
|
|
|
|
|
|
saveTransferApplyApi(params).then(res => {
|
|
|
|
|
|
this.loading.close();
|
|
|
|
|
|
if (res.code === 200) {
|
|
|
|
|
|
this.handleReuslt(res);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.$modal.msgError(res.msg);
|
|
|
|
|
|
}
|
|
|
|
|
|
}).catch(error => {
|
|
|
|
|
|
this.loading.close();
|
|
|
|
|
|
// this.$modal.msgError('提交失败,请重试');
|
|
|
|
|
|
});
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
|
|
editTransferApplyApi(params).then(res => {
|
|
|
|
|
|
this.loading.close();
|
|
|
|
|
|
if (res.code === 200) {
|
|
|
|
|
|
this.handleReuslt(res);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.$modal.msgError(res.msg);
|
|
|
|
|
|
}
|
|
|
|
|
|
}).catch(error => {
|
|
|
|
|
|
this.loading.close();
|
|
|
|
|
|
// this.$modal.msgError('提交失败,请重试');
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
|
.w700 .el-dialog {
|
|
|
|
|
|
width: 700px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.w500 .el-dialog {
|
|
|
|
|
|
width: 500px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.w500 .el-dialog__header,
|
|
|
|
|
|
.w700 .el-dialog__header {
|
|
|
|
|
|
// background: #eeeeee;
|
|
|
|
|
|
|
|
|
|
|
|
.el-dialog__title {
|
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.yxq .el-range-separator {
|
|
|
|
|
|
margin-right: 7px !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.el-date-editor--daterange.el-input__inner {
|
|
|
|
|
|
width: 260px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.form-item {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.select-style {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|