|
@@ -102,14 +102,13 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="10">
|
|
|
- <el-form-item
|
|
|
- label="开始出售时间"
|
|
|
- prop="auto_listing_time"
|
|
|
- label-width="120px"
|
|
|
- >
|
|
|
+ <el-form-item label="开始出售时间" prop="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
|
|
|
+ v-model="ruleForm.item_auto_listing_time"
|
|
|
+ label="0"
|
|
|
+ @change="item_auto_change"
|
|
|
>立即出售</el-radio
|
|
|
>
|
|
|
</li>
|
|
@@ -121,6 +120,7 @@
|
|
|
value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
placeholder="选择开始出售时间"
|
|
|
default-time="12:00:00"
|
|
|
+ @change="time_change"
|
|
|
:picker-options="pickerOptions"
|
|
|
>
|
|
|
</el-date-picker>
|
|
@@ -140,7 +140,7 @@
|
|
|
:controls="false"
|
|
|
:append="''"
|
|
|
:newTime="''"
|
|
|
- :size="'mini'"
|
|
|
+ :size="''"
|
|
|
:disabled="false"
|
|
|
@reschange="num_change($event, 'origin', -1)"
|
|
|
/>
|
|
@@ -265,6 +265,35 @@ export default {
|
|
|
* @searchChange : 选中值变化调用 抛出选中数据
|
|
|
*/
|
|
|
data() {
|
|
|
+ const validatetime = (rule, value, callback) => {
|
|
|
+ const { item_auto_listing_time, auto_listing_time } = this.ruleForm;
|
|
|
+ const type = item_auto_listing_time ?? "";
|
|
|
+ const time = auto_listing_time ?? "";
|
|
|
+ // console.log(item_auto_listing_time, auto_listing_time);
|
|
|
+ if (type === "" && time === "") {
|
|
|
+ callback(new Error("请选择开始出售时间!"));
|
|
|
+ } else {
|
|
|
+ callback();
|
|
|
+ }
|
|
|
+ };
|
|
|
+ const validate_num_0 = (rule, value, callback) => {
|
|
|
+ const val = value ?? "";
|
|
|
+ const { required } = rule;
|
|
|
+ if (required && val === "") {
|
|
|
+ callback(new Error("不能为空!"));
|
|
|
+ } else if (
|
|
|
+ required &&
|
|
|
+ (val === "0" ||
|
|
|
+ val === "0." ||
|
|
|
+ val === "0.0" ||
|
|
|
+ val === "0.00" ||
|
|
|
+ val === "0.000")
|
|
|
+ ) {
|
|
|
+ callback(new Error("不能为零!"));
|
|
|
+ } else {
|
|
|
+ callback();
|
|
|
+ }
|
|
|
+ };
|
|
|
return {
|
|
|
platform_id: "",
|
|
|
spuCode: "",
|
|
@@ -296,7 +325,7 @@ export default {
|
|
|
showModelThis: this.showModel,
|
|
|
pickerOptions: {
|
|
|
disabledDate: (time) => {
|
|
|
- return time.getTime() > new Date().valueOf();
|
|
|
+ return time.getTime() < new Date().valueOf() - 1000 * 60 * 60 * 24;
|
|
|
},
|
|
|
},
|
|
|
ruleForm: {
|
|
@@ -308,7 +337,8 @@ export default {
|
|
|
item_type: "0",
|
|
|
item_auto_listing_time: "0",
|
|
|
auto_listing_time: "",
|
|
|
- origin: 0,
|
|
|
+ origin: "0",
|
|
|
+ time: "0",
|
|
|
},
|
|
|
rulesThis: this.rules,
|
|
|
rules: {
|
|
@@ -354,15 +384,15 @@ export default {
|
|
|
origin: [
|
|
|
{
|
|
|
required: true,
|
|
|
- message: "请输入划线价",
|
|
|
+ validator: validate_num_0,
|
|
|
trigger: "blur",
|
|
|
},
|
|
|
],
|
|
|
- auto_listing_time: [
|
|
|
+ time: [
|
|
|
{
|
|
|
required: true,
|
|
|
- message: "请选择开始出售时间",
|
|
|
- trigger: "change",
|
|
|
+ validator: validatetime,
|
|
|
+ trigger: "change,blur",
|
|
|
},
|
|
|
],
|
|
|
item_type: [
|
|
@@ -422,6 +452,23 @@ export default {
|
|
|
this.setCurrent(this.nakelist[0]);
|
|
|
this.loading = false;
|
|
|
},
|
|
|
+ item_auto_change() {
|
|
|
+ const { item_auto_listing_time } = this.ruleForm;
|
|
|
+ if (item_auto_listing_time === "0") {
|
|
|
+ }
|
|
|
+ this.ruleForm.auto_listing_time =
|
|
|
+ item_auto_listing_time === "0" ? "" : this.ruleForm.auto_listing_time;
|
|
|
+ this.ruleForm.time =
|
|
|
+ this.ruleForm.item_auto_listing_time || this.ruleForm.auto_listing_time;
|
|
|
+ this.$refs.ruleForm.validateField("time");
|
|
|
+ },
|
|
|
+ time_change() {
|
|
|
+ const { auto_listing_time } = this.ruleForm;
|
|
|
+ this.ruleForm.item_auto_listing_time = auto_listing_time === "" ? "0" : "";
|
|
|
+ this.ruleForm.time =
|
|
|
+ this.ruleForm.item_auto_listing_time || this.ruleForm.auto_listing_time;
|
|
|
+ this.$refs.ruleForm.validateField("time");
|
|
|
+ },
|
|
|
async get_tags() {
|
|
|
const { code, data, message } = await asyncRequest.tag_list({});
|
|
|
if (code === 0) {
|
|
@@ -440,12 +487,13 @@ export default {
|
|
|
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.time[0].required = isok;
|
|
|
this.rulesThis.origin[0].required = isok;
|
|
|
this.rulesThis.reject_reason[0].required = !isok;
|
|
|
},
|
|
|
num_change(e, key, index) {
|
|
|
if (index === -1) {
|
|
|
+ // console.log(key, e);
|
|
|
this.ruleForm[key] = e;
|
|
|
this.$refs.ruleForm.validateField(key);
|
|
|
} else {
|
|
@@ -503,7 +551,8 @@ export default {
|
|
|
item_type: "0",
|
|
|
item_auto_listing_time: "0",
|
|
|
auto_listing_time: "",
|
|
|
- origin: 0,
|
|
|
+ origin: "0",
|
|
|
+ time: "0",
|
|
|
};
|
|
|
}
|
|
|
});
|
|
@@ -511,93 +560,123 @@ export default {
|
|
|
async submitForm() {
|
|
|
await this.$refs.ruleForm.validate(async (valid) => {
|
|
|
if (valid) {
|
|
|
- let model = JSON.parse(JSON.stringify(this.ruleForm));
|
|
|
- const { yz_cat_id } = this.ruleForm;
|
|
|
+ if (this.loading) return;
|
|
|
+ await this.$confirm(`确定要提交?`, {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning",
|
|
|
+ })
|
|
|
+ .then(async () => {
|
|
|
+ this.loading = true;
|
|
|
+ let model = JSON.parse(JSON.stringify(this.ruleForm));
|
|
|
+ const {
|
|
|
+ yz_cat_id,
|
|
|
+ item_auto_listing_time,
|
|
|
+ auto_listing_time,
|
|
|
+ origin,
|
|
|
+ } = this.ruleForm;
|
|
|
|
|
|
- // console.log(yz_cat_id);
|
|
|
- model.platform_youzan_id = this.sitem.platform_youzan_id;
|
|
|
- model.yz_cat_id = "";
|
|
|
- model.good_ladder_id = "";
|
|
|
- model.final_price = "";
|
|
|
- model.start_sale_num = "";
|
|
|
- const { exam_status } = this.ruleForm;
|
|
|
- const isok = exam_status === "1";
|
|
|
- if (isok) {
|
|
|
- const { id } = this.currentRow;
|
|
|
- if (!id) {
|
|
|
- this.$message.warning("请选择一个系统阶梯!");
|
|
|
- return;
|
|
|
- }
|
|
|
- let is_ok = true;
|
|
|
- this.nakelist.forEach((e) => {
|
|
|
- if (e.sale_good_price + "" === "0" && e.sale_cost_fee + "" === "0") {
|
|
|
- is_ok = false;
|
|
|
+ // console.log(yz_cat_id);
|
|
|
+ model.platform_youzan_id = this.sitem.platform_youzan_id;
|
|
|
+ model.yz_cat_id = "";
|
|
|
+ model.good_ladder_id = "";
|
|
|
+ model.final_price = "";
|
|
|
+ model.start_sale_num = "";
|
|
|
+ const { exam_status } = this.ruleForm;
|
|
|
+ const isok = exam_status === "1";
|
|
|
+ if (isok) {
|
|
|
+ const { id } = this.currentRow;
|
|
|
+ if (!id) {
|
|
|
+ this.$message.warning("请选择一个系统阶梯!");
|
|
|
+ this.loading = false;
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ let is_ok = true;
|
|
|
+ this.nakelist.forEach((e) => {
|
|
|
+ if (e.sale_good_price + "" === "0" && e.sale_cost_fee + "" === "0") {
|
|
|
+ is_ok = false;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ if (!is_ok) {
|
|
|
+ this.$message.warning("暂无系统售价,请设置毛利率!");
|
|
|
+ this.loading = false;
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ let index = this.nakelist.findIndex((si) => si.id === id);
|
|
|
+ const {
|
|
|
+ min_num,
|
|
|
+ start_sale_num,
|
|
|
+ sale_good_price,
|
|
|
+ sale_cost_fee,
|
|
|
+ final_price,
|
|
|
+ } = this.nakelist[index];
|
|
|
+ if (parseInt(start_sale_num) < parseInt(min_num)) {
|
|
|
+ this.$message.warning("销售起订量不小于采购起订量!");
|
|
|
+ this.loading = false;
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (!final_price) {
|
|
|
+ this.$message.warning("最终售价不能为空!");
|
|
|
+ this.loading = false;
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (sale_good_price * 100 > final_price * 100) {
|
|
|
+ this.$message.warning("销售起订量不小于采购起订量!");
|
|
|
+ this.loading = false;
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ let am = 0;
|
|
|
+ const m = auto_listing_time ?? "",
|
|
|
+ nm = new Date().valueOf(),
|
|
|
+ fp = final_price * 100,
|
|
|
+ op = origin * 100;
|
|
|
+ if (m !== "0") {
|
|
|
+ am = new Date(auto_listing_time).valueOf();
|
|
|
+ }
|
|
|
+ if (am !== 0 && nm >= am) {
|
|
|
+ this.$message.warning("开始出售时间不能小于当前时间!");
|
|
|
+ this.loading = false;
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (op < fp) {
|
|
|
+ this.$message.warning("划线价不能小于最终售价!");
|
|
|
+ this.loading = false;
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ model.platform_youzan_id = this.sitem.platform_youzan_id;
|
|
|
+ model.yz_cat_id = yz_cat_id[yz_cat_id.length - 1];
|
|
|
+ model.good_ladder_id = id;
|
|
|
+ model.final_price = final_price;
|
|
|
+ model.start_sale_num = start_sale_num;
|
|
|
+ model.auto_listing_time =
|
|
|
+ model.time !== "0" ? new Date(model.time).valueOf() : "0";
|
|
|
+ delete model["time"];
|
|
|
+ delete model["item_auto_listing_time"];
|
|
|
+ }
|
|
|
+ const { code, message } = await asyncRequest.goodupexam(model);
|
|
|
+ if (code === 0) {
|
|
|
+ this.$notify.success({
|
|
|
+ title: "提交成功!",
|
|
|
+ message: "",
|
|
|
+ });
|
|
|
+ this.$emit("searchChange");
|
|
|
+ } else if (code >= 100 && code <= 104) {
|
|
|
+ await this.logout();
|
|
|
+ } else {
|
|
|
+ this.$message.warning(message);
|
|
|
}
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ console.log("取消");
|
|
|
});
|
|
|
- if (!is_ok) {
|
|
|
- this.$message.warning("暂无系统售价,请设置毛利率!");
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- let index = this.nakelist.findIndex((si) => si.id === id);
|
|
|
- const {
|
|
|
- min_num,
|
|
|
- start_sale_num,
|
|
|
- sale_good_price,
|
|
|
- sale_cost_fee,
|
|
|
- final_price,
|
|
|
- } = this.nakelist[index];
|
|
|
- if (parseInt(start_sale_num) < parseInt(min_num)) {
|
|
|
- this.$message.warning("销售起订量不小于采购起订量!");
|
|
|
- return;
|
|
|
- }
|
|
|
- if (!final_price) {
|
|
|
- this.$message.warning("最终售价不能为空!");
|
|
|
- return;
|
|
|
- }
|
|
|
- if (sale_good_price * 100 > final_price * 100) {
|
|
|
- this.$message.warning("销售起订量不小于采购起订量!");
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- model.platform_youzan_id = this.sitem.platform_youzan_id;
|
|
|
- model.yz_cat_id = yz_cat_id[yz_cat_id.length - 1];
|
|
|
- model.good_ladder_id = id;
|
|
|
- model.final_price = final_price;
|
|
|
- model.start_sale_num = start_sale_num;
|
|
|
- console.log(min_num);
|
|
|
- }
|
|
|
- await this.setstatus(model);
|
|
|
} else {
|
|
|
console.log("error submit!!");
|
|
|
return false;
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
- async setstatus(model) {
|
|
|
- await this.$confirm(`确定要提交?`, {
|
|
|
- confirmButtonText: "确定",
|
|
|
- cancelButtonText: "取消",
|
|
|
- type: "warning",
|
|
|
- })
|
|
|
- .then(async () => {
|
|
|
- const { code, message } = await asyncRequest.goodupexam(model);
|
|
|
- if (code === 0) {
|
|
|
- this.$notify.success({
|
|
|
- title: "提交成功!",
|
|
|
- message: "",
|
|
|
- });
|
|
|
- this.$emit("searchChange");
|
|
|
- } else if (code >= 100 && code <= 104) {
|
|
|
- await this.logout();
|
|
|
- } else {
|
|
|
- this.$message.warning(message);
|
|
|
- }
|
|
|
- })
|
|
|
- .catch(() => {
|
|
|
- console.log("取消");
|
|
|
- });
|
|
|
- },
|
|
|
+ async setstatus(model) {},
|
|
|
},
|
|
|
};
|
|
|
</script>
|