1.拆分产品修改为批量拆分

master
x_z 3 years ago
parent 5484e6b6bc
commit ec64000a55

@ -85,7 +85,10 @@
>国家同步库查询
</el-button
>
<el-button type="primary" icon="search" @click="showCheckedData" size="mini"
>查看选中数据
</el-button
>
</el-button-group>
</el-form-item>
</el-row>
@ -96,18 +99,8 @@
style="width: 100%"
v-loading="loading"
highlight-current-row="true"
:row-class-name="tableRowClassName"
@current-change="handleErpChange"
@selection-change="handleSelectionUdiChange"
ref="multipleTable"
>
<el-table-column
v-if="relId==null"
type="selection"
:selectable="checkSelectable"
width="55"
></el-table-column>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column
label="产品标识"
prop="nameCode"
@ -143,6 +136,13 @@
>详情
</el-button
>
<el-button
type="text"
size="small"
@click="addItem(scope.row)"
>添加
</el-button
>
</template>
</el-table-column>
@ -365,6 +365,58 @@
></selectDiDetail>
</el-dialog>
<el-dialog
title="已选器械信息"
:close-on-click-modal="false"
:close-on-press-escape="false"
:visible.sync="checkedDataVisible"
width="75%"
append-to-body
>
<el-table
:data="checkedList"
style="width: 100%"
>
<el-table-column
label="产品标识"
prop="nameCode"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="产品名称"
prop="cpmctymc"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="规格型号"
prop="ggxh"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="医疗器械注册人"
prop="ylqxzcrbarmc"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="注册证编号"
prop="zczbhhzbapzbh"
show-overflow-tooltip
></el-table-column>
<el-table-column label="操作" fixed="right">
<template slot-scope="scope">
<el-button
type="text"
size="small"
@click="removeCheckedItem(scope.row)"
>移除
</el-button
>
</template>
</el-table-column>
</el-table>
</el-dialog>
</div>
</template>
@ -436,6 +488,8 @@ export default {
multipleUdiSelection: [],
selectDialog: false,
diDetails: null,
checkedDataVisible: false,
checkedList: [],
};
},
methods: {
@ -551,7 +605,6 @@ export default {
return "";
},
handleErpChange(val) {
console.log(val);
this.currentRow = val;
},
intentBack() {
@ -559,18 +612,10 @@ export default {
},
checkCombine() {
let selectData = this.multipleUdiSelection;
let selectData = this.checkedList;
let selected = null;
if (this.multipleUdiSelection.length == 0) {
if (this.relId != null) {
this.combineQuery.relId = this.relId;
this.combineQuery.keys.push(this.currentRow.uuid);
if (this.currentRow.check) {
selected = this.currentRow;
}
} else
return;
if (this.checkedList.length == 0) {
return;
} else {
selectData.forEach((obj) => {
if (obj.check) {
@ -589,6 +634,7 @@ export default {
this.combineLoading = false;
if (response.code == 20000) {
this.combine();
this.checkedList = [];
// combineUdi(this.combineQuery)
// .then((response) => {
// this.combineLoading = false;
@ -630,8 +676,6 @@ export default {
this.combineLoading = false;
this.$emit("closeUdi", false);
});
},
combine() {
@ -657,12 +701,7 @@ export default {
});
},
handleSelectionUdiChange(val) {
console.log("----" + val);
this.multipleUdiSelection = val;
},
findMethod(query) {
console.log(query);
let cQuery = {
ylqxzcrbarmc: query,
page: 1,
@ -678,6 +717,25 @@ export default {
this.fromOptions = [];
});
},
addItem(row) {
if (this.checkedList.indexOf(row) === -1) {
this.checkedList.push(row);
this.$message.success("添加成功");
} else {
this.$message.info("已添加");
}
},
showCheckedData() {
this.checkedDataVisible = true;
},
removeCheckedItem(row) {
for (let i = 0; i < this.checkedList.length; i++) {
if (this.checkedList[i].id === row.id) {
this.checkedList.splice(i, 1);
break;
}
}
}
},
components: {
selectDiDetail,

Loading…
Cancel
Save