Skip to content

Commit f351748

Browse files
committed
chore[litemall-admin]: 小调整
1 parent 4f907c0 commit f351748

File tree

1 file changed

+18
-7
lines changed

1 file changed

+18
-7
lines changed

litemall-admin/src/views/config/order.vue

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,23 @@
11
<template>
22
<div class="app-container">
33
<el-form ref="dataForm" :rules="rules" :model="dataForm" status-icon label-width="300px">
4-
<el-form-item label="下单后超期自动取消" prop="litemall_order_unpaid">
5-
<el-input v-model="dataForm.litemall_order_unpaid">
4+
<el-form-item label="用户下单后超时" prop="litemall_order_unpaid">
5+
<el-input v-model="dataForm.litemall_order_unpaid" class="input-width">
66
<template slot="append">分钟</template>
77
</el-input>
8+
<span class="info">用户未付款,则订单自动取消</span>
89
</el-form-item>
9-
<el-form-item label="发货后超期自动确认收货" prop="litemall_order_unconfirm">
10-
<el-input v-model="dataForm.litemall_order_unconfirm">
11-
<template slot="append">天</template>
10+
<el-form-item label="订单发货后超期" prop="litemall_order_unconfirm">
11+
<el-input v-model="dataForm.litemall_order_unconfirm" class="input-width">
12+
<template slot="append"> 天</template>
1213
</el-input>
14+
<span class="info">未确认收货,则订单自动确认收货</span>
1315
</el-form-item>
14-
<el-form-item label="确认收货后超期取消评论资格" prop="litemall_order_comment">
15-
<el-input v-model="dataForm.litemall_order_comment">
16+
<el-form-item label="确认收货后超期" prop="litemall_order_comment">
17+
<el-input v-model="dataForm.litemall_order_comment" class="input-width">
1618
<template slot="append">天</template>
1719
</el-input>
20+
<span class="info">未评价商品,则取消评价资格</span>
1821
</el-form-item>
1922
<el-form-item>
2023
<el-button @click="cancel">取消</el-button>
@@ -64,3 +67,11 @@ export default {
6467
}
6568
}
6669
</script>
70+
<style scoped>
71+
.input-width {
72+
width: 50%;
73+
}
74+
.info {
75+
margin-left: 15px;
76+
}
77+
</style>

0 commit comments

Comments
 (0)