101 lines
2.3 KiB
JavaScript
101 lines
2.3 KiB
JavaScript
|
/*
|
||
|
* @Author: zwq
|
||
|
* @Date: 2022-08-24 11:19:43
|
||
|
* @LastEditors: zwq
|
||
|
* @LastEditTime: 2023-08-03 14:21:04
|
||
|
* @Description:
|
||
|
*/
|
||
|
export default {
|
||
|
data() {
|
||
|
/* eslint-disable */
|
||
|
return {
|
||
|
urlOptions: {
|
||
|
createURL: '',
|
||
|
updateURL: '',
|
||
|
infoURL: '',
|
||
|
codeURL: '',
|
||
|
getOption: false,
|
||
|
isGetCode: false,
|
||
|
optionArrUrl: [],
|
||
|
optionArr: {}
|
||
|
},
|
||
|
visible: false,
|
||
|
setData: false
|
||
|
}
|
||
|
},
|
||
|
created() {
|
||
|
},
|
||
|
activated() {
|
||
|
},
|
||
|
methods: {
|
||
|
init(id) {
|
||
|
this.dataForm.id = id || "";
|
||
|
this.visible = true;
|
||
|
if (this.urlOptions.getOption) {
|
||
|
this.getArr()
|
||
|
}
|
||
|
this.$nextTick(() => {
|
||
|
this.$refs["dataForm"].resetFields();
|
||
|
if (this.dataForm.id) {
|
||
|
this.urlOptions.infoURL(id).then(response => {
|
||
|
this.dataForm = response.data;
|
||
|
if (this.setData) {
|
||
|
this.setDataForm()
|
||
|
}
|
||
|
});
|
||
|
} else {
|
||
|
if (this.urlOptions.isGetCode) {
|
||
|
this.getCode()
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
},
|
||
|
getCode() {
|
||
|
this.urlOptions.codeURL()
|
||
|
.then(({ data: res }) => {
|
||
|
this.dataForm.code = res;
|
||
|
})
|
||
|
.catch(() => {});
|
||
|
},
|
||
|
getArr() {
|
||
|
const params = {
|
||
|
pageSize: 100,
|
||
|
pageNo: 1,
|
||
|
}
|
||
|
this.urlOptions.optionArrUrl.forEach((item, index) => {
|
||
|
item(params).then(({ data: res }) => {
|
||
|
this.$set(this.urlOptions.optionArr, `arr${index}`, res.list)
|
||
|
})
|
||
|
.catch(() => {
|
||
|
});
|
||
|
});
|
||
|
},
|
||
|
// 表单提交
|
||
|
dataFormSubmit() {
|
||
|
this.$refs["dataForm"].validate((valid) => {
|
||
|
if (!valid) {
|
||
|
return false;
|
||
|
}
|
||
|
// 修改的提交
|
||
|
if (this.dataForm.id) {
|
||
|
this.urlOptions.updateURL(this.dataForm).then(response => {
|
||
|
this.$modal.msgSuccess("修改成功");
|
||
|
this.visible = false;
|
||
|
this.$emit("refreshDataList");
|
||
|
});
|
||
|
return;
|
||
|
}
|
||
|
// 添加的提交
|
||
|
this.urlOptions.createURL(this.dataForm).then(response => {
|
||
|
this.$modal.msgSuccess("新增成功");
|
||
|
this.visible = false;
|
||
|
this.$emit("refreshDataList");
|
||
|
});
|
||
|
});
|
||
|
},
|
||
|
formClear() {
|
||
|
this.$refs.dataForm.resetFields()
|
||
|
}
|
||
|
}
|
||
|
}
|