Commit f351748b authored by Junling Bu's avatar Junling Bu
Browse files

chore[litemall-admin]: 小调整

parent 4f907c00
<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>
......@@ -64,3 +67,11 @@ export default {
}
}
</script>
<style scoped>
.input-width {
width: 50%;
}
.info {
margin-left: 15px;
}
</style>
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment