fix: 🐛 修改部分已知的bug

master
Yer 2023-08-11 17:41:44 +08:00
parent d642e00844
commit ac26690e78
2 changed files with 2 additions and 1 deletions

View File

@ -298,7 +298,7 @@
</p>
<div>
<Form ref="modifyPriceForm" :model="modifyPriceForm" label-position="left" :label-width="70"
:rules="modifyPriceValidate">
:rules="modifyPriceValidate" @submit.native.prevent>
<FormItem label="订单金额" prop="price">
<InputNumber style="width: 100px" v-model="modifyPriceForm.price" :min="0" :max="999999"></InputNumber>
<span class="ml_10"></span>

View File

@ -143,6 +143,7 @@ export default {
this.$Message.success("保存成功!");
localStorage.setItem("icon", this.formValidate.domainLogo);
window.document.title = this.formValidate.siteName + " - 运营后台";
this.setStore("title", this.formValidate.siteName);
} else {
this.$Message.error("保存失败!");
}