|
|
|
@ -11,10 +11,10 @@ |
|
|
|
|
|
|
|
|
|
<a-spin :spinning="confirmLoading"> |
|
|
|
|
<a-form-model ref="form" :model="model" :rules="validatorRules"> |
|
|
|
|
<!-- <a-form-model-item :labelCol="labelCol" :wrapperCol="wrapperCol" prop="stationId" label="车间工位编号">--> |
|
|
|
|
<!-- <a-input placeholder="车间工位编号" v-model="model.stationId"/>--> |
|
|
|
|
<!--<!– <j-select-depart placeholder="请选择工位" v-model="model.stationId"/>–>--> |
|
|
|
|
<!-- </a-form-model-item>--> |
|
|
|
|
<!-- <a-form-model-item :labelCol="labelCol" :wrapperCol="wrapperCol" prop="stationId" label="车间工位编号">--> |
|
|
|
|
<!-- <a-input placeholder="车间工位编号" v-model="model.stationId"/>--> |
|
|
|
|
<!--<!– <j-select-depart placeholder="请选择工位" v-model="model.stationId"/>–>--> |
|
|
|
|
<!-- </a-form-model-item>--> |
|
|
|
|
<!-- <a-form-model-item :labelCol="labelCol" :wrapperCol="wrapperCol" prop="stationId" label="工位ID">--> |
|
|
|
|
<!-- <a-input placeholder="请输入工位ID" v-model="model.stationId" />--> |
|
|
|
|
<!-- </a-form-model-item>--> |
|
|
|
@ -72,7 +72,7 @@ export default { |
|
|
|
|
methods: { |
|
|
|
|
add(stationId) { |
|
|
|
|
this.model.stationId = stationId; |
|
|
|
|
console.log("mode层接收到上级stationId:--" + this.model.stationId); |
|
|
|
|
console.log("Modal层接收到上级参数-stationId:" + this.model.stationId); |
|
|
|
|
this.edit(this.model); |
|
|
|
|
}, |
|
|
|
|
// add () { |
|
|
|
@ -104,19 +104,19 @@ export default { |
|
|
|
|
httpurl += this.url.edit; |
|
|
|
|
method = 'put'; |
|
|
|
|
} |
|
|
|
|
console.log("----------the add() model:",this.model); |
|
|
|
|
this.model.stationId= |
|
|
|
|
httpAction(httpurl, this.model, method).then((res) => { |
|
|
|
|
if (res.success) { |
|
|
|
|
that.$message.success(res.message); |
|
|
|
|
that.$emit('ok'); |
|
|
|
|
} else { |
|
|
|
|
that.$message.warning(res.message); |
|
|
|
|
} |
|
|
|
|
}).finally(() => { |
|
|
|
|
that.confirmLoading = false; |
|
|
|
|
that.close(); |
|
|
|
|
}) |
|
|
|
|
console.log("----------the add() model:", this.model); |
|
|
|
|
this.model.stationId = |
|
|
|
|
httpAction(httpurl, this.model, method).then((res) => { |
|
|
|
|
if (res.success) { |
|
|
|
|
that.$message.success(res.message); |
|
|
|
|
that.$emit('ok'); |
|
|
|
|
} else { |
|
|
|
|
that.$message.warning(res.message); |
|
|
|
|
} |
|
|
|
|
}).finally(() => { |
|
|
|
|
that.confirmLoading = false; |
|
|
|
|
that.close(); |
|
|
|
|
}) |
|
|
|
|
} else { |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|