|
|
|
@ -1330,7 +1330,22 @@
|
|
|
|
|
</el-form>
|
|
|
|
|
</el-card>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
title="耗材字典-选择DI版本"
|
|
|
|
|
:visible.sync="selectVersionVisible"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
width="85%"
|
|
|
|
|
v-if="selectVersionVisible"
|
|
|
|
|
>
|
|
|
|
|
<selectUdiVersion
|
|
|
|
|
:closeDialog="closeDialog"
|
|
|
|
|
:relId="relId"
|
|
|
|
|
:uuid="uuid"
|
|
|
|
|
:originUuid="originUuid"
|
|
|
|
|
@closeUdi="closeUdi"
|
|
|
|
|
></selectUdiVersion>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
</el-card>
|
|
|
|
|
</div>
|
|
|
|
@ -1339,7 +1354,6 @@
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
|
|
import {filterByUuid} from "@/api/basic/product/udiInfo";
|
|
|
|
|
|
|
|
|
|
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -1356,10 +1370,12 @@ import {
|
|
|
|
|
} from "@/api/basic/basicProductType";
|
|
|
|
|
import {thirdSysDetail} from "@/api/basic/product/udiRelevance";
|
|
|
|
|
import {finProductSet} from "@/api/param/systemParamConfig";
|
|
|
|
|
import selectUdiVersion from './UdiinfoSelectVersion'
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
selectVersionVisible: false,
|
|
|
|
|
useNumEnable: true,
|
|
|
|
|
checked: false,
|
|
|
|
|
sysList: [],
|
|
|
|
@ -1399,6 +1415,12 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
filters: {},
|
|
|
|
|
methods: {
|
|
|
|
|
selectVersion() {
|
|
|
|
|
this.selectVersionVisible = true;
|
|
|
|
|
this.uuid = this.editQuery.uuid;
|
|
|
|
|
this.originUuid = this.editQuery.originUuid;
|
|
|
|
|
this.relId = this.editQuery.id;
|
|
|
|
|
},
|
|
|
|
|
onReset() {
|
|
|
|
|
this.$router.push({
|
|
|
|
|
path: "",
|
|
|
|
@ -1453,6 +1475,7 @@ export default {
|
|
|
|
|
this.isImport = false;
|
|
|
|
|
this.thisData = row;
|
|
|
|
|
this.editDialogVisible = true;
|
|
|
|
|
console.log("row.uuid="+this.uuid)
|
|
|
|
|
|
|
|
|
|
this.pId = row.id;
|
|
|
|
|
this.relevanceEdit = {
|
|
|
|
@ -1724,7 +1747,7 @@ export default {
|
|
|
|
|
mounted() {
|
|
|
|
|
},
|
|
|
|
|
components: {
|
|
|
|
|
Treeselect, selectProduct,
|
|
|
|
|
Treeselect, selectProduct,selectUdiVersion,
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
this.getList();
|
|
|
|
|