fix: 🐛 修改部分已知的bug
parent
d642e00844
commit
ac26690e78
|
@ -298,7 +298,7 @@
|
||||||
</p>
|
</p>
|
||||||
<div>
|
<div>
|
||||||
<Form ref="modifyPriceForm" :model="modifyPriceForm" label-position="left" :label-width="70"
|
<Form ref="modifyPriceForm" :model="modifyPriceForm" label-position="left" :label-width="70"
|
||||||
:rules="modifyPriceValidate">
|
:rules="modifyPriceValidate" @submit.native.prevent>
|
||||||
<FormItem label="订单金额" prop="price">
|
<FormItem label="订单金额" prop="price">
|
||||||
<InputNumber style="width: 100px" v-model="modifyPriceForm.price" :min="0" :max="999999"></InputNumber>
|
<InputNumber style="width: 100px" v-model="modifyPriceForm.price" :min="0" :max="999999"></InputNumber>
|
||||||
<span class="ml_10">元</span>
|
<span class="ml_10">元</span>
|
||||||
|
|
|
@ -143,6 +143,7 @@ export default {
|
||||||
this.$Message.success("保存成功!");
|
this.$Message.success("保存成功!");
|
||||||
localStorage.setItem("icon", this.formValidate.domainLogo);
|
localStorage.setItem("icon", this.formValidate.domainLogo);
|
||||||
window.document.title = this.formValidate.siteName + " - 运营后台";
|
window.document.title = this.formValidate.siteName + " - 运营后台";
|
||||||
|
this.setStore("title", this.formValidate.siteName);
|
||||||
} else {
|
} else {
|
||||||
this.$Message.error("保存失败!");
|
this.$Message.error("保存失败!");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue