fix: 🐛 修改订单配置中描述错误bug

master
Yer 2024-01-29 14:08:24 +08:00
parent 43159335f8
commit 2316fb8d11
1 changed files with 7 additions and 3 deletions

View File

@ -26,7 +26,7 @@
<Input type='number' v-model="formValidate.closeAfterSale"> <Input type='number' v-model="formValidate.closeAfterSale">
<span slot="append"></span> <span slot="append"></span>
</Input> </Input>
<span class="desc">订单完成后多少天内允许退单如果天数为0,则不允许退单</span> <span class="desc">订单完成后多少天内允许退单如果天数为0,不限制退款时间</span>
</FormItem> </FormItem>
<FormItem label="已完成订单允许投诉" prop="closeComplaint"> <FormItem label="已完成订单允许投诉" prop="closeComplaint">
<Input type='number' v-model="formValidate.closeComplaint"> <Input type='number' v-model="formValidate.closeComplaint">
@ -54,9 +54,9 @@ export default {
autoEvaluation: "", autoEvaluation: "",
autoReceive: "", autoReceive: "",
closeAfterSale: "", closeAfterSale: "",
closeComplaint:"" closeComplaint: ""
}, },
result:"" result: ""
}; };
}, },
props: ["res", "type"], props: ["res", "type"],
@ -114,16 +114,20 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
@import "./style.scss"; @import "./style.scss";
.label-item { .label-item {
display: flex; display: flex;
} }
.ivu-input-wrapper { .ivu-input-wrapper {
width: 100px; width: 100px;
margin-right: 10px; margin-right: 10px;
} }
/deep/ .ivu-input { /deep/ .ivu-input {
width: 100px !important; width: 100px !important;
} }
.desc { .desc {
font-size: 12px; font-size: 12px;
color: #999; color: #999;