|
@@ -30,7 +30,7 @@
|
|
|
</el-col>
|
|
|
<el-col :span="18" v-if="ruleForm.exam_status === '1'">
|
|
|
<el-row>
|
|
|
- <el-col :span="12">
|
|
|
+ <el-col :span="13">
|
|
|
<el-form-item label="有赞公用分类" prop="yz_cat_id" label-width="120px">
|
|
|
<good-class-youzan
|
|
|
:value="ruleForm.yz_cat_id"
|
|
@@ -40,7 +40,7 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
|
|
|
- <el-col :span="12">
|
|
|
+ <el-col :span="11">
|
|
|
<el-form-item label="是否可退货" prop="is_support_barter" label-width="120px">
|
|
|
<el-radio-group
|
|
|
v-model="ruleForm.is_support_barter"
|
|
@@ -77,7 +77,82 @@
|
|
|
</el-col> -->
|
|
|
</el-row>
|
|
|
</el-col>
|
|
|
- <el-col :span="24" v-if="ruleForm.exam_status === '1'" style="padding: 0 0 10px 0">
|
|
|
+ <el-col
|
|
|
+ :span="24"
|
|
|
+ v-show="ruleForm.exam_status === '1'"
|
|
|
+ style="padding: 0 0 10px 0"
|
|
|
+ >
|
|
|
+ <el-row>
|
|
|
+ <el-col :span="6">
|
|
|
+ <el-form-item label="商品类型" prop="item_type">
|
|
|
+ <el-select
|
|
|
+ v-model="ruleForm.item_type"
|
|
|
+ placeholder="请选择商品类型"
|
|
|
+ style="width: 100%"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in item_type_options"
|
|
|
+ :key="item.label + item.value"
|
|
|
+ :label="item.label"
|
|
|
+ :value="item.value"
|
|
|
+ :disabled="item.status === '0'"
|
|
|
+ >
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="10">
|
|
|
+ <el-form-item
|
|
|
+ label="开始出售时间"
|
|
|
+ prop="auto_listing_time"
|
|
|
+ label-width="120px"
|
|
|
+ >
|
|
|
+ <ul class="item_auto_listing_time clearfix">
|
|
|
+ <li class="fl" style="width: 100px">
|
|
|
+ <el-radio v-model="ruleForm.item_auto_listing_time" label="0"
|
|
|
+ >立即出售</el-radio
|
|
|
+ >
|
|
|
+ </li>
|
|
|
+ <li class="fl">
|
|
|
+ <el-date-picker
|
|
|
+ v-model="ruleForm.auto_listing_time"
|
|
|
+ type="datetime"
|
|
|
+ style="width: 100%"
|
|
|
+ value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
+ placeholder="选择开始出售时间"
|
|
|
+ default-time="12:00:00"
|
|
|
+ :picker-options="pickerOptions"
|
|
|
+ >
|
|
|
+ </el-date-picker>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="8">
|
|
|
+ <el-form-item label="划线价" prop="origin">
|
|
|
+ <digital-input
|
|
|
+ :values="ruleForm.origin"
|
|
|
+ :placeholder="'起订量'"
|
|
|
+ :min="0"
|
|
|
+ :max="100000000000"
|
|
|
+ :position="'right'"
|
|
|
+ :precision="2"
|
|
|
+ :controls="false"
|
|
|
+ :append="''"
|
|
|
+ :newTime="''"
|
|
|
+ :size="'mini'"
|
|
|
+ :disabled="false"
|
|
|
+ @reschange="num_change($event, 'origin', -1)"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ </el-col>
|
|
|
+ <el-col
|
|
|
+ :span="24"
|
|
|
+ v-show="ruleForm.exam_status === '1'"
|
|
|
+ style="padding: 0 0 10px 0"
|
|
|
+ >
|
|
|
<el-table
|
|
|
:data="nakelist"
|
|
|
:size="'mini'"
|
|
@@ -146,7 +221,7 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
</el-col>
|
|
|
- <el-col :span="18" v-else>
|
|
|
+ <el-col :span="18" v-show="ruleForm.exam_status !== '1'">
|
|
|
<el-form-item label="审核备注" prop="reject_reason">
|
|
|
<el-input
|
|
|
type="textarea"
|
|
@@ -172,6 +247,7 @@
|
|
|
|
|
|
<script>
|
|
|
import asyncRequest from "@/apis/service/youzan/othgoodsOnline";
|
|
|
+import { item_type_options } from "../columns";
|
|
|
export default {
|
|
|
name: "exam-form",
|
|
|
props: ["size", "statusList", "disabled", "isMust", "labelWidth", "time", "sitem"],
|
|
@@ -196,6 +272,7 @@ export default {
|
|
|
currentRow: null,
|
|
|
nakelist: [],
|
|
|
tags_options: [],
|
|
|
+ item_type_options,
|
|
|
exam_statusList: [
|
|
|
{
|
|
|
value: "1",
|
|
@@ -218,8 +295,8 @@ export default {
|
|
|
],
|
|
|
showModelThis: this.showModel,
|
|
|
pickerOptions: {
|
|
|
- disabledDate(time) {
|
|
|
- return time.getTime() < Date.now() - 60 * 60 * 24 * 1000;
|
|
|
+ disabledDate: (time) => {
|
|
|
+ return time.getTime() > new Date().valueOf();
|
|
|
},
|
|
|
},
|
|
|
ruleForm: {
|
|
@@ -228,6 +305,10 @@ export default {
|
|
|
rebut: "", //驳回至
|
|
|
reject_reason: "",
|
|
|
tags: [],
|
|
|
+ item_type: "0",
|
|
|
+ item_auto_listing_time: "0",
|
|
|
+ auto_listing_time: "",
|
|
|
+ origin: 0,
|
|
|
},
|
|
|
rulesThis: this.rules,
|
|
|
rules: {
|
|
@@ -270,6 +351,27 @@ export default {
|
|
|
trigger: "blur",
|
|
|
},
|
|
|
],
|
|
|
+ origin: [
|
|
|
+ {
|
|
|
+ required: true,
|
|
|
+ message: "请输入划线价",
|
|
|
+ trigger: "blur",
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ auto_listing_time: [
|
|
|
+ {
|
|
|
+ required: true,
|
|
|
+ message: "请选择开始出售时间",
|
|
|
+ trigger: "change",
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ item_type: [
|
|
|
+ {
|
|
|
+ required: true,
|
|
|
+ message: "请选择商品类型",
|
|
|
+ trigger: "change",
|
|
|
+ },
|
|
|
+ ],
|
|
|
},
|
|
|
};
|
|
|
},
|
|
@@ -337,12 +439,20 @@ export default {
|
|
|
const isok = exam_status === "1";
|
|
|
this.rulesThis.is_support_barter[0].required = isok;
|
|
|
this.rulesThis.yz_cat_id[0].required = isok;
|
|
|
+ this.rulesThis.item_type[0].required = isok;
|
|
|
+ this.rulesThis.auto_listing_time[0].required = isok;
|
|
|
+ this.rulesThis.origin[0].required = isok;
|
|
|
this.rulesThis.reject_reason[0].required = !isok;
|
|
|
},
|
|
|
num_change(e, key, index) {
|
|
|
- this.nakelist[index][key] = e;
|
|
|
- this.nakelist[index].newTime = new Date().valueOf() + "";
|
|
|
- // this.$set(this.nakelist, index, this.nakelist[index]);
|
|
|
+ if (index === -1) {
|
|
|
+ this.ruleForm[key] = e;
|
|
|
+ this.$refs.ruleForm.validateField(key);
|
|
|
+ } else {
|
|
|
+ this.nakelist[index][key] = e;
|
|
|
+ this.nakelist[index].newTime = new Date().valueOf() + "";
|
|
|
+ // this.$set(this.nakelist, index, this.nakelist[index]);
|
|
|
+ }
|
|
|
},
|
|
|
handleChange(e) {
|
|
|
this.ruleForm.yz_cat_id = e;
|
|
@@ -390,6 +500,10 @@ export default {
|
|
|
is_support_barter: "1",
|
|
|
reject_reason: "",
|
|
|
tags: [],
|
|
|
+ item_type: "0",
|
|
|
+ item_auto_listing_time: "0",
|
|
|
+ auto_listing_time: "",
|
|
|
+ origin: 0,
|
|
|
};
|
|
|
}
|
|
|
});
|
|
@@ -489,6 +603,7 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<style>
|
|
|
-p {
|
|
|
+.item_auto_listing_time .fl:last-child {
|
|
|
+ width: calc(100% - 115px);
|
|
|
}
|
|
|
</style>
|