车间工位管理修改 12.7

zhc4dev
zhc077 2 years ago
parent ce675ff042
commit 0b8b925702
  1. 36
      ant-design-vue-jeecg/src/views/team/modules/StationToolModal.vue

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

Loading…
Cancel
Save