fix:更改计算系数

This commit is contained in:
shijing 2024-05-08 16:11:45 +08:00
parent b32511f35e
commit fba62dc2c0
1 changed files with 9 additions and 2 deletions

View File

@ -34,11 +34,18 @@ export default {
},
};
},
mounted() {},
mounted() {
this.getSysConfig();
},
methods: {
getSysConfig() {
this.$API.system.config.getInfo.req().then((res) => {
this.form = res.enm;
});
},
submitForm() {
this.saveLoading = true;
this.$API.system.config.update
this.$API.system.config.updateInfo
.req(this.form)
.then((res) => {
this.saveLoading = false;