|
@@ -118,7 +118,7 @@
|
|
|
<el-form-item label="期望意愿" prop="except_code">
|
|
|
<el-select
|
|
|
style="width: 100%"
|
|
|
- :disabled="ruleForm.is_receive === ''"
|
|
|
+ disabled
|
|
|
v-model="ruleForm.except_code"
|
|
|
placeholder="期望意愿"
|
|
|
>
|
|
@@ -210,7 +210,7 @@ export default {
|
|
|
stock_out_numbers: "", //发货单编号
|
|
|
num: "", //异常数量
|
|
|
errorCode: "", //异常原因
|
|
|
- except_code: "", //期望意愿
|
|
|
+ except_code: "1", //期望意愿
|
|
|
img: [],
|
|
|
remark: "", //异常备注
|
|
|
},
|
|
@@ -262,26 +262,23 @@ export default {
|
|
|
],
|
|
|
},
|
|
|
reason_options: [],
|
|
|
- expect_options: [],
|
|
|
- expect_options1: [
|
|
|
+ expect_options: [
|
|
|
{
|
|
|
value: "1",
|
|
|
label: "退货",
|
|
|
- },
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ expect_options1: [
|
|
|
{
|
|
|
- value: "2",
|
|
|
- label: "换货",
|
|
|
+ value: "1",
|
|
|
+ label: "退货",
|
|
|
},
|
|
|
],
|
|
|
expect_options0: [
|
|
|
{
|
|
|
value: "1",
|
|
|
label: "退货",
|
|
|
- },
|
|
|
- {
|
|
|
- value: "2",
|
|
|
- label: "补发",
|
|
|
- },
|
|
|
+ }
|
|
|
],
|
|
|
expect_value: "", //期望意愿
|
|
|
code: "",
|
|
@@ -357,7 +354,7 @@ export default {
|
|
|
async is_receive_change() {
|
|
|
const { is_receive } = this.ruleForm;
|
|
|
this.ruleForm.errorCode = "";
|
|
|
- this.ruleForm.except_code = "";
|
|
|
+ this.ruleForm.except_code = "1";
|
|
|
if (is_receive === "0") {
|
|
|
this.ruleForm.num = this.ruleForm.send_num;
|
|
|
}
|
|
@@ -389,7 +386,7 @@ export default {
|
|
|
send_num: send_num || "",
|
|
|
num: send_num || "", //异常数量
|
|
|
errorCode: "", //异常原因
|
|
|
- except_code: "", //期望意愿
|
|
|
+ except_code: "1", //期望意愿
|
|
|
img: [],
|
|
|
outCode: this.code,
|
|
|
};
|