|
@@ -1,20 +1,23 @@
|
|
|
<template>
|
|
<template>
|
|
|
<div class="app-container">
|
|
<div class="app-container">
|
|
|
<el-form ref="dataForm" :rules="rules" :model="dataForm" status-icon label-width="300px">
|
|
<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>
|
|
<template slot="append">分钟</template>
|
|
|
</el-input>
|
|
</el-input>
|
|
|
|
|
+ <span class="info">用户未付款,则订单自动取消</span>
|
|
|
</el-form-item>
|
|
</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>
|
|
</el-input>
|
|
|
|
|
+ <span class="info">未确认收货,则订单自动确认收货</span>
|
|
|
</el-form-item>
|
|
</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>
|
|
<template slot="append">天</template>
|
|
|
</el-input>
|
|
</el-input>
|
|
|
|
|
+ <span class="info">未评价商品,则取消评价资格</span>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
<el-form-item>
|
|
<el-form-item>
|
|
|
<el-button @click="cancel">取消</el-button>
|
|
<el-button @click="cancel">取消</el-button>
|
|
@@ -64,3 +67,11 @@ export default {
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
</script>
|
|
</script>
|
|
|
|
|
+<style scoped>
|
|
|
|
|
+ .input-width {
|
|
|
|
|
+ width: 50%;
|
|
|
|
|
+ }
|
|
|
|
|
+ .info {
|
|
|
|
|
+ margin-left: 15px;
|
|
|
|
|
+ }
|
|
|
|
|
+</style>
|