|
@@ -68,7 +68,7 @@ export default {
|
|
|
computed: {
|
|
|
disabledLossField(){
|
|
|
const {good_receive_type} = this.ruleForm;
|
|
|
- return ['0','1','2'].includes(good_receive_type)
|
|
|
+ return ['1','2','3'].includes(good_receive_type)
|
|
|
},
|
|
|
powers() {
|
|
|
const tran =
|
|
@@ -92,10 +92,10 @@ export default {
|
|
|
loss_num: "",
|
|
|
},
|
|
|
statusOptions:[
|
|
|
- { value:'0', label:'库房未发货无需追回'},
|
|
|
- { value:'1', label:'库房已发货已全部追回'},
|
|
|
- { value:'2', label:'库房已发货已无法追回'},
|
|
|
- { value:'3', label:'库房已发货已部分追回'},
|
|
|
+ { value:'1', label:'库房未发货无需追回'},
|
|
|
+ { value:'2', label:'库房已发货已全部追回'},
|
|
|
+ { value:'3', label:'库房已发货已无法追回'},
|
|
|
+ { value:'4', label:'库房已发货已部分追回'},
|
|
|
],
|
|
|
rules: {
|
|
|
good_receive_type: [
|
|
@@ -125,7 +125,7 @@ export default {
|
|
|
watch:{
|
|
|
'ruleForm.good_receive_type':{
|
|
|
handler(value){
|
|
|
- if(value === '2'){
|
|
|
+ if(value === '3'){
|
|
|
this.ruleForm.loss_num = this.sitem.return_num;
|
|
|
}else{
|
|
|
this.ruleForm.loss_num = "0"
|