Commit d7704870 authored by jingnan's avatar jingnan 👀 Committed by jingnan

通用试验维护记录关联AO

parent 5a127ade
<template>
<div class="addAoInGeberalExperRecord-dialog">
<dee-as-com :basicData="basicData" ref="tablelists" class="list-table" table-height="50vh" :lay-config="{
typeName: 'ExtProcessPlan',
layKey: 'addAoInGeberalExperRecord',
}" @selectionChange="selectionChange" />
<div slot="footer" class="foot-btn-box">
<el-button type="primary" @click="submitEvent">确认</el-button>
<el-button @click="cancelEvent">取消</el-button>
</div>
</div>
</template>
<script>
import { post } from '@/utils/http'
export default {
name: 'AddAoInGeberalExperRecordDialog',
components: {},
props: {
basicData: {
type: Object,
default: () => { }
},
},
data() {
return {
selection: []
}
},
computed: {},
mounted() { },
methods: {
selectionChange(val) {
this.selection = val
},
submitEvent() {
if (!this.selection||!this.selection.length ) return this.$utils.showMessageWarning('请选择数据!')
const params = this.selection.map((item) => {
return {
sourceId: this.basicData.id,
sourceIdType: this.basicData.subTypeName,
targetId: item.id,
targetIdType: item.subTypeName,
operator: 'ADD'
}
})
post('/ExperimentPlanLink/recursions', params).then(res => {
this.cancelEvent()
this.$utils.showMessageSuccess('保存成功')
this.$bus.$emit('refreshExperimentPlanLink')
})
},
cancelEvent() {
this.$emit('cancel')
}
}
}
</script>
<style lang="scss">
</style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment