164 lines
5.0 KiB
Vue
164 lines
5.0 KiB
Vue
<template>
|
||
<!-- 小型弹窗,用于完成,删除,保存等操作 -->
|
||
<el-dialog class="l-dialog" :class="lDialog" :title="title" :visible.sync="dialogVisible" :showClose="true"
|
||
:closeOnClickModal="false" @close="handleClose" :append-to-body="true">
|
||
<div>
|
||
<el-form :model="form" :rules="rules" ref="ruleForm" label-width="110px">
|
||
<el-form-item label="档案类型" prop="id">
|
||
<el-select class="form-item" v-model="form.id" filterable clearable
|
||
placeholder="请选择档案类型">
|
||
<el-option v-for="item in fileSetList" :key="item.id" :label="item.name"
|
||
:value="item.id"></el-option>
|
||
</el-select>
|
||
</el-form-item>
|
||
</el-form>
|
||
</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 {
|
||
updateContentsNameAPI,
|
||
getFileCatalogSelectAPI
|
||
} from '@/api/archivesManagement/project'
|
||
export default {
|
||
name: "FileSetForm",
|
||
props: ["width", "dataForm", "title", "disabled", "isAdd", "rowData"],
|
||
data() {
|
||
return {
|
||
lDialog: this.width > 500 ? "w700" : "w500",
|
||
dialogVisible: true,
|
||
isDisabled: true,
|
||
form: {
|
||
id: undefined,
|
||
proId:this.rowData.id,
|
||
},
|
||
fileSetList: [],
|
||
loading: null,
|
||
rules: {
|
||
id: [
|
||
{ required: true, message: '请选择档案类型', trigger: 'change' }
|
||
],
|
||
},
|
||
};
|
||
},
|
||
created() {
|
||
this.initFormData();
|
||
},
|
||
methods: {
|
||
/** 初始化表单数据 */
|
||
async initFormData() {
|
||
await getFileCatalogSelectAPI().then(res => {
|
||
this.fileSetList = res.data;
|
||
});
|
||
if (this.isAdd === 'edit' && this.rowData) {
|
||
// 编辑模式:填充表单数据
|
||
this.form = {
|
||
id: undefined,
|
||
proId:this.rowData.id,
|
||
};
|
||
}
|
||
},
|
||
/*关闭弹窗 */
|
||
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,
|
||
proId:null,
|
||
};
|
||
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);
|
||
const selected = this.fileSetList.find(item => item.id === this.form.id);
|
||
params.contentsName = selected.name;
|
||
console.log(params);
|
||
|
||
updateContentsNameAPI(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" scoped>
|
||
.w700 ::v-deep .el-dialog {
|
||
width: 700px;
|
||
}
|
||
|
||
.w500 ::v-deep .el-dialog {
|
||
width: 500px;
|
||
}
|
||
|
||
.w500 ::v-deep .el-dialog__header,
|
||
.w700 ::v-deep .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> |