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

master
x_z 3 years ago
parent 5484e6b6bc
commit ec64000a55

@ -85,7 +85,10 @@
>国家同步库查询 >国家同步库查询
</el-button </el-button
> >
<el-button type="primary" icon="search" @click="showCheckedData" size="mini"
>查看选中数据
</el-button
>
</el-button-group> </el-button-group>
</el-form-item> </el-form-item>
</el-row> </el-row>
@ -96,18 +99,8 @@
style="width: 100%" style="width: 100%"
v-loading="loading" v-loading="loading"
highlight-current-row="true" highlight-current-row="true"
:row-class-name="tableRowClassName" ref="multipleTable"
@current-change="handleErpChange"
@selection-change="handleSelectionUdiChange"
> >
<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 <el-table-column
label="产品标识" label="产品标识"
prop="nameCode" prop="nameCode"
@ -143,6 +136,13 @@
>详情 >详情
</el-button </el-button
> >
<el-button
type="text"
size="small"
@click="addItem(scope.row)"
>添加
</el-button
>
</template> </template>
</el-table-column> </el-table-column>
@ -365,6 +365,58 @@
></selectDiDetail> ></selectDiDetail>
</el-dialog> </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> </div>
</template> </template>
@ -436,6 +488,8 @@ export default {
multipleUdiSelection: [], multipleUdiSelection: [],
selectDialog: false, selectDialog: false,
diDetails: null, diDetails: null,
checkedDataVisible: false,
checkedList: [],
}; };
}, },
methods: { methods: {
@ -551,7 +605,6 @@ export default {
return ""; return "";
}, },
handleErpChange(val) { handleErpChange(val) {
console.log(val);
this.currentRow = val; this.currentRow = val;
}, },
intentBack() { intentBack() {
@ -559,18 +612,10 @@ export default {
}, },
checkCombine() { checkCombine() {
let selectData = this.multipleUdiSelection; let selectData = this.checkedList;
let selected = null; let selected = null;
if (this.multipleUdiSelection.length == 0) { if (this.checkedList.length == 0) {
if (this.relId != null) { return;
this.combineQuery.relId = this.relId;
this.combineQuery.keys.push(this.currentRow.uuid);
if (this.currentRow.check) {
selected = this.currentRow;
}
} else
return;
} else { } else {
selectData.forEach((obj) => { selectData.forEach((obj) => {
if (obj.check) { if (obj.check) {
@ -589,6 +634,7 @@ export default {
this.combineLoading = false; this.combineLoading = false;
if (response.code == 20000) { if (response.code == 20000) {
this.combine(); this.combine();
this.checkedList = [];
// combineUdi(this.combineQuery) // combineUdi(this.combineQuery)
// .then((response) => { // .then((response) => {
// this.combineLoading = false; // this.combineLoading = false;
@ -630,8 +676,6 @@ export default {
this.combineLoading = false; this.combineLoading = false;
this.$emit("closeUdi", false); this.$emit("closeUdi", false);
}); });
}, },
combine() { combine() {
@ -657,12 +701,7 @@ export default {
}); });
}, },
handleSelectionUdiChange(val) {
console.log("----" + val);
this.multipleUdiSelection = val;
},
findMethod(query) { findMethod(query) {
console.log(query);
let cQuery = { let cQuery = {
ylqxzcrbarmc: query, ylqxzcrbarmc: query,
page: 1, page: 1,
@ -678,6 +717,25 @@ export default {
this.fromOptions = []; 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: { components: {
selectDiDetail, selectDiDetail,

Loading…
Cancel
Save