fix:更改计算系数
This commit is contained in:
parent
b32511f35e
commit
fba62dc2c0
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue