|
@@ -38,7 +38,12 @@
|
|
|
</el-col>
|
|
|
<el-col :span="4">
|
|
|
<el-form-item label="单位" label-width="50px">
|
|
|
- <el-input v-if="show_sitem" maxlength="10" v-model="show_sitem.unit" disabled />
|
|
|
+ <el-input
|
|
|
+ v-if="show_sitem"
|
|
|
+ maxlength="10"
|
|
|
+ v-model="show_sitem.unit"
|
|
|
+ disabled
|
|
|
+ />
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="17">
|
|
@@ -46,7 +51,7 @@
|
|
|
<el-input
|
|
|
v-if="show_sitem"
|
|
|
v-model="show_sitem.good_name"
|
|
|
- maxlength="100"
|
|
|
+ maxlength="100"
|
|
|
disabled
|
|
|
/>
|
|
|
</el-form-item>
|
|
@@ -73,7 +78,7 @@
|
|
|
<el-input
|
|
|
v-if="show_sitem"
|
|
|
v-model="show_sitem.sale_price"
|
|
|
- maxlength="20"
|
|
|
+ maxlength="20"
|
|
|
disabled
|
|
|
/>
|
|
|
</el-form-item>
|
|
@@ -100,14 +105,13 @@
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
-
|
|
|
<!-- 需修改字段 -->
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="当前工艺费" label-width="108px">
|
|
|
<el-input
|
|
|
v-if="show_sitem"
|
|
|
- v-model="show_sitem.sale_price"
|
|
|
- maxlength="20"
|
|
|
+ v-model="show_sitem.sale_cost_fee"
|
|
|
+ maxlength="20"
|
|
|
disabled
|
|
|
/>
|
|
|
</el-form-item>
|
|
@@ -115,27 +119,30 @@
|
|
|
<el-col :span="12">
|
|
|
<el-form-item
|
|
|
label="期望工艺费"
|
|
|
- prop="bargain_price"
|
|
|
+ prop="cost_price"
|
|
|
label-width="108px"
|
|
|
>
|
|
|
<digital-input
|
|
|
- :values="ruleForm.bargain_price"
|
|
|
- :name="'ruleForm.bargain_price'"
|
|
|
+ :values="ruleForm.cost_price"
|
|
|
+ :name="'ruleForm.cost_price'"
|
|
|
:placeholder="'期望工艺费'"
|
|
|
:min="0"
|
|
|
- :disabled="sitem.is_gold_price == 1 ? false : true"
|
|
|
+ :disabled="
|
|
|
+ sitem.is_gold_price == 1 && sitem.can[0].id == 6
|
|
|
+ ? false
|
|
|
+ : true
|
|
|
+ "
|
|
|
:max="100000000000"
|
|
|
:position="'right'"
|
|
|
:precision="2"
|
|
|
:size="'mini'"
|
|
|
:controls="false"
|
|
|
:append="'元'"
|
|
|
- @reschange="number_change($event, 'bargain_price')"
|
|
|
+ @reschange="number_change($event, 'cost_price')"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
|
|
|
-
|
|
|
<el-col :span="18">
|
|
|
<el-form-item
|
|
|
label="议价备注:"
|
|
@@ -204,6 +211,7 @@ export default {
|
|
|
bargain_price: "0",
|
|
|
result_info_id_name: "",
|
|
|
bargain_remark: "",
|
|
|
+ cost_price: "0",
|
|
|
},
|
|
|
show_sitem: null,
|
|
|
rulesThis: this.rules,
|
|
@@ -218,7 +226,14 @@ export default {
|
|
|
bargain_price: [
|
|
|
{
|
|
|
required: true,
|
|
|
- validator: validate_num,
|
|
|
+ message: "期望售价不能为空!",
|
|
|
+ trigger: "blur",
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ cost_price: [
|
|
|
+ {
|
|
|
+ required: true,
|
|
|
+ message: "期望工艺费不能为空!",
|
|
|
trigger: "blur",
|
|
|
},
|
|
|
],
|
|
@@ -246,7 +261,7 @@ export default {
|
|
|
},
|
|
|
},
|
|
|
mounted() {
|
|
|
- console.log("11111111111111111",this.sitem.is_gold_price)
|
|
|
+ console.log("11111111111111111", this.sitem.is_gold_price);
|
|
|
},
|
|
|
methods: {
|
|
|
itemidChange(e) {
|
|
@@ -281,9 +296,10 @@ export default {
|
|
|
this.$refs.ruleForm.resetFields();
|
|
|
this.$refs.ruleForm.clearValidate();
|
|
|
this.ruleForm = {
|
|
|
- bargain_price: sale_price || "0",
|
|
|
+ bargain_price: "0",
|
|
|
result_info_id: "",
|
|
|
bargain_remark: "",
|
|
|
+ cost_price: "0",
|
|
|
result_info_id_name: "",
|
|
|
};
|
|
|
}
|
|
@@ -299,36 +315,97 @@ export default {
|
|
|
await this.$refs.ruleForm.validate(async (valid) => {
|
|
|
if (valid) {
|
|
|
this.loading = true;
|
|
|
- const { bargain_price, result_info_id, bargain_remark } = JSON.parse(
|
|
|
- JSON.stringify(this.ruleForm)
|
|
|
- );
|
|
|
- const { bidNo, sale_price } = this.sitem;
|
|
|
- if (sale_price * 100 === bargain_price * 100) {
|
|
|
- this.$message.warning("期望售价不能等于当前售价!");
|
|
|
+ const { bargain_price, result_info_id, bargain_remark, cost_price } =
|
|
|
+ JSON.parse(JSON.stringify(this.ruleForm));
|
|
|
+ const { bidNo, sale_price, is_gold_price, can ,sale_cost_fee} = this.sitem;
|
|
|
+ //根据实时金价对接口进行不同传参
|
|
|
+ if (is_gold_price == "1" && can[0].id == 6) {
|
|
|
+ if (sale_cost_fee * 100 <= cost_price * 100) {
|
|
|
+ this.$message.warning("期望工艺费不能大于等于当前工艺费!");
|
|
|
+ this.loading = false;
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ const model = {
|
|
|
+ bidNo: bidNo,
|
|
|
+ bargain_price: "0", //议价金额固定0
|
|
|
+ result_info_id,
|
|
|
+ bargain_remark,
|
|
|
+ cost_price: cost_price,
|
|
|
+ };
|
|
|
+
|
|
|
+ let res = await asyncRequest.bargain_add(model);
|
|
|
this.loading = false;
|
|
|
- return;
|
|
|
- }
|
|
|
- const model = {
|
|
|
- bidNo: bidNo,
|
|
|
- bargain_price: bargain_price, // 账号
|
|
|
- result_info_id,
|
|
|
- bargain_remark,
|
|
|
- };
|
|
|
- let res = await asyncRequest.bargain_add(model);
|
|
|
- this.loading = false;
|
|
|
- if (res && res.code === 0) {
|
|
|
- this.$notify.success({
|
|
|
- title: "议价流程创建成功!",
|
|
|
- message: "",
|
|
|
- });
|
|
|
- this.showModelThis = false;
|
|
|
- // 刷新
|
|
|
- this.$emit("refresh");
|
|
|
- } else if (res && res.code >= 100 && res.code <= 104) {
|
|
|
- await this.logout();
|
|
|
+ if (res && res.code === 0) {
|
|
|
+ this.$notify.success({
|
|
|
+ title: "议价流程创建成功!",
|
|
|
+ message: "",
|
|
|
+ });
|
|
|
+ this.showModelThis = false;
|
|
|
+ // 刷新
|
|
|
+ this.$emit("refresh");
|
|
|
+ } else if (res && res.code >= 100 && res.code <= 104) {
|
|
|
+ await this.logout();
|
|
|
+ } else {
|
|
|
+ this.$message.warning(res.message);
|
|
|
+ }
|
|
|
} else {
|
|
|
- this.$message.warning(res.message);
|
|
|
+ if (sale_price * 100 <= bargain_price * 100) {
|
|
|
+ this.$message.warning("期望售价不能大于等于当前售价!");
|
|
|
+ this.loading = false;
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ const model = {
|
|
|
+ bidNo: bidNo,
|
|
|
+ bargain_price: bargain_price, // 账号
|
|
|
+ result_info_id,
|
|
|
+ bargain_remark,
|
|
|
+ cost_price: "0", //工艺费固定0
|
|
|
+ };
|
|
|
+
|
|
|
+ let res = await asyncRequest.bargain_add(model);
|
|
|
+ this.loading = false;
|
|
|
+ if (res && res.code === 0) {
|
|
|
+ this.$notify.success({
|
|
|
+ title: "议价流程创建成功!",
|
|
|
+ message: "",
|
|
|
+ });
|
|
|
+ this.showModelThis = false;
|
|
|
+ // 刷新
|
|
|
+ this.$emit("refresh");
|
|
|
+ } else if (res && res.code >= 100 && res.code <= 104) {
|
|
|
+ await this.logout();
|
|
|
+ } else {
|
|
|
+ this.$message.warning(res.message);
|
|
|
+ }
|
|
|
}
|
|
|
+ // if (sale_price * 100 === bargain_price * 100) {
|
|
|
+ // this.$message.warning("期望售价不能等于当前售价!");
|
|
|
+ // this.loading = false;
|
|
|
+ // return;
|
|
|
+ // }
|
|
|
+ // const model = {
|
|
|
+ // bidNo: bidNo,
|
|
|
+ // bargain_price: bargain_price, // 账号
|
|
|
+ // result_info_id,
|
|
|
+ // bargain_remark,
|
|
|
+ // cost_price:"0", //工艺费固定0
|
|
|
+ // };
|
|
|
+
|
|
|
+ // let res = await asyncRequest.bargain_add(model);
|
|
|
+ // this.loading = false;
|
|
|
+ // if (res && res.code === 0) {
|
|
|
+ // this.$notify.success({
|
|
|
+ // title: "议价流程创建成功!",
|
|
|
+ // message: "",
|
|
|
+ // });
|
|
|
+ // this.showModelThis = false;
|
|
|
+ // // 刷新
|
|
|
+ // this.$emit("refresh");
|
|
|
+ // } else if (res && res.code >= 100 && res.code <= 104) {
|
|
|
+ // await this.logout();
|
|
|
+ // } else {
|
|
|
+ // this.$message.warning(res.message);
|
|
|
+ // }
|
|
|
} else {
|
|
|
console.log("error submit!!");
|
|
|
return false;
|