|
|
|
@ -712,7 +712,7 @@
|
|
|
|
|
<p class="form-title">版本信息</p>
|
|
|
|
|
</template>
|
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-col :span="8" class="el-col">
|
|
|
|
|
<div class="text item">
|
|
|
|
|
<div class="itemTag">
|
|
|
|
|
<span>当前版本号: </span>
|
|
|
|
@ -724,12 +724,24 @@
|
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
|
v-model="editQuery.versionNumber"
|
|
|
|
|
></el-input>
|
|
|
|
|
<el-button type="text" size="small" @click.native.stop="selectVersion()"
|
|
|
|
|
style="margin-left: 5%"
|
|
|
|
|
>切换版本
|
|
|
|
|
</el-button>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
<el-col :span="2" class="el-col">
|
|
|
|
|
<el-button type="text" size="small" @click.native.stop="selectVersion()"
|
|
|
|
|
style="margin-left: 5%"
|
|
|
|
|
>切换版本
|
|
|
|
|
</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="2" class="el-col">
|
|
|
|
|
<el-button type="text" size="small" @click.native.stop="updateVersion()"
|
|
|
|
|
:loading="updateLoading"
|
|
|
|
|
style="margin-left: 5%"
|
|
|
|
|
>更新当前版本信息
|
|
|
|
|
</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-collapse-item>
|
|
|
|
|
|
|
|
|
@ -766,6 +778,25 @@
|
|
|
|
|
:supEnable="true"
|
|
|
|
|
></selectErp>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
title="选择DI版本"
|
|
|
|
|
:visible.sync="selectVersionVisible"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
width="85%"
|
|
|
|
|
append-to-body
|
|
|
|
|
v-if="selectVersionVisible"
|
|
|
|
|
>
|
|
|
|
|
<selectUdiVersion
|
|
|
|
|
:closeDialog="closeDialog"
|
|
|
|
|
:relId="relId"
|
|
|
|
|
:uuid="uuid"
|
|
|
|
|
:originUuid="originUuid"
|
|
|
|
|
@closeUdi="closeUdi"
|
|
|
|
|
></selectUdiVersion>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
@ -773,6 +804,8 @@
|
|
|
|
|
import {removeDiRl, removeRl, updatetUdiInfos} from "@/api/basic/udiRelevance";
|
|
|
|
|
import {finProductSet} from "@/api/param/systemParamConfig";
|
|
|
|
|
import selectErp from "./UdiInfoselectErpUdi";
|
|
|
|
|
import selectUdiVersion from "./UdiinfoSelectVersion";
|
|
|
|
|
import {dlLastVersionByDi} from "../../api/basic/udiInfo";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "basicProductEdit",
|
|
|
|
@ -805,6 +838,7 @@ export default {
|
|
|
|
|
loading: false,
|
|
|
|
|
selectErpDialogVisible: false, //选入ERP产品
|
|
|
|
|
uuid: "111",
|
|
|
|
|
originUuid: null,
|
|
|
|
|
relId: "",
|
|
|
|
|
intentThirdId: null,
|
|
|
|
|
isImport: false,
|
|
|
|
@ -825,11 +859,12 @@ export default {
|
|
|
|
|
isUseDy: false,
|
|
|
|
|
isAdavence: null,
|
|
|
|
|
},
|
|
|
|
|
selectVersionVisible: false,
|
|
|
|
|
updateLoading: false,
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
|
|
onAddSubmit() {
|
|
|
|
|
this.relevanceEdit.isDisable = this.editQuery.isDisable;
|
|
|
|
|
this.relevanceEdit.isLock = this.editQuery.isLock;
|
|
|
|
@ -937,7 +972,7 @@ export default {
|
|
|
|
|
type: "success",
|
|
|
|
|
message: "删除成功!",
|
|
|
|
|
});
|
|
|
|
|
this.cancelDialog();
|
|
|
|
|
this.closeUdi();
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
@ -949,16 +984,55 @@ export default {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
selectVersion() {
|
|
|
|
|
this.selectVersionVisible = true;
|
|
|
|
|
this.uuid = this.editQuery.uuid;
|
|
|
|
|
this.originUuid = this.editQuery.originUuid;
|
|
|
|
|
this.relId = this.editQuery.id;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
updateVersion() {
|
|
|
|
|
this.$confirm("此操作将访问国家库查询最新版本信息, 是否继续?", "提示", {
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
|
type: "warning",
|
|
|
|
|
})
|
|
|
|
|
.then(() => {
|
|
|
|
|
this.updateLoading = true;
|
|
|
|
|
let query = {nameCode: this.editQuery.nameCode};
|
|
|
|
|
dlLastVersionByDi(query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.updateLoading = false;
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.$message.success("更新成功!");
|
|
|
|
|
this.closeUdi();
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.updateLoading = false;
|
|
|
|
|
this.udidlList = [];
|
|
|
|
|
this.total = 0;
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
,
|
|
|
|
|
created() {
|
|
|
|
|
this.relId = this.editQuery.rlId;
|
|
|
|
|
if(this.editQuery.isUseDy==1){
|
|
|
|
|
this.checked=true
|
|
|
|
|
if (this.editQuery.isUseDy == 1) {
|
|
|
|
|
this.checked = true
|
|
|
|
|
}
|
|
|
|
|
this.findBasicProductSet();
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
components: {
|
|
|
|
|
selectErp,
|
|
|
|
|
selectErp, selectUdiVersion,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|