chore[litemall-admin]: 小调整

This commit is contained in:
Junling Bu
2019-04-11 23:23:56 +08:00
parent 4f907c00de
commit f351748b78

View File

@@ -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-input>
</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_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" 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>
@@ -64,3 +67,11 @@ export default {
}
}
</script>
<style scoped>
.input-width {
width: 50%;
}
.info {
margin-left: 15px;
}
</style>