Skip to content

Commit

Permalink
chore[litemall-admin]: 小调整
Browse files Browse the repository at this point in the history
  • Loading branch information
linlinjava committed Apr 11, 2019
1 parent 4f907c0 commit f351748
Showing 1 changed file with 18 additions and 7 deletions.
25 changes: 18 additions & 7 deletions litemall-admin/src/views/config/order.vue
Original file line number Diff line number Diff line change
@@ -1,20 +1,23 @@
<template>
<div class="app-container">
<el-form ref="dataForm" :rules="rules" :model="dataForm" status-icon label-width="300px">
<el-form-item label="下单后超期自动取消" prop="litemall_order_unpaid">
<el-input v-model="dataForm.litemall_order_unpaid">
<el-form-item label="用户下单后超时" prop="litemall_order_unpaid">
<el-input v-model="dataForm.litemall_order_unpaid" class="input-width">
<template slot="append">分钟</template>
</el-input>
<span class="info">用户未付款,则订单自动取消</span>
</el-form-item>
<el-form-item label="发货后超期自动确认收货" prop="litemall_order_unconfirm">
<el-input v-model="dataForm.litemall_order_unconfirm">
<template slot="append">天</template>
<el-form-item label="订单发货后超期" prop="litemall_order_unconfirm">
<el-input v-model="dataForm.litemall_order_unconfirm" class="input-width">
<template slot="append"> 天</template>
</el-input>
<span class="info">未确认收货,则订单自动确认收货</span>
</el-form-item>
<el-form-item label="确认收货后超期取消评论资格" prop="litemall_order_comment">
<el-input v-model="dataForm.litemall_order_comment">
<el-form-item label="确认收货后超期" prop="litemall_order_comment">
<el-input v-model="dataForm.litemall_order_comment" class="input-width">
<template slot="append">天</template>
</el-input>
<span class="info">未评价商品,则取消评价资格</span>
</el-form-item>
<el-form-item>
<el-button @click="cancel">取消</el-button>
Expand Down Expand Up @@ -64,3 +67,11 @@ export default {
}
}
</script>
<style scoped>
.input-width {
width: 50%;
}
.info {
margin-left: 15px;
}
</style>

0 comments on commit f351748

Please sign in to comment.