|
@@ -311,19 +311,57 @@ export default {
|
|
|
},
|
|
|
// 新建拓扑图成功
|
|
|
toEdit(data) {
|
|
|
- // 如果跳入草稿则直接跳入
|
|
|
- // 打开新窗口
|
|
|
- let routeUrl = this.$router.resolve({
|
|
|
- name: "Editer",
|
|
|
- query: {
|
|
|
- graphId: data.graphId,
|
|
|
- id: data.id,
|
|
|
- categoryName: encodeURI(this.categoryName),
|
|
|
- isPub: this.isPub,
|
|
|
- projectId: this.projectId,
|
|
|
- },
|
|
|
- });
|
|
|
- window.open(routeUrl.href, "_blank");
|
|
|
+ // 如果跳入草稿则直接跳入、如果调已发布图判断是否是有草稿、有则提示是否要跳入草稿
|
|
|
+ if (this.isPub) {
|
|
|
+ this.getDraft(data).then((res) => {
|
|
|
+ // 是否有对应草稿 如果有出弹窗
|
|
|
+ if (res) {
|
|
|
+ this.$confirm("该图片已存在最新版草稿,是否选择编辑已有草稿", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ let routeUrl = this.$router.resolve({
|
|
|
+ name: "Editer",
|
|
|
+ query: {
|
|
|
+ graphId: res.graphId,
|
|
|
+ id: res.id,
|
|
|
+ categoryName: encodeURI(this.categoryName),
|
|
|
+ isPub: 0,
|
|
|
+ projectId: this.projectId,
|
|
|
+ },
|
|
|
+ });
|
|
|
+ window.open(routeUrl.href, "_blank");
|
|
|
+ })
|
|
|
+ .catch(() => {});
|
|
|
+ } else {
|
|
|
+ let routeUrl = this.$router.resolve({
|
|
|
+ name: "Editer",
|
|
|
+ query: {
|
|
|
+ graphId: data.graphId,
|
|
|
+ id: data.id,
|
|
|
+ categoryName: encodeURI(this.categoryName),
|
|
|
+ isPub: this.isPub,
|
|
|
+ projectId: this.projectId,
|
|
|
+ },
|
|
|
+ });
|
|
|
+ window.open(routeUrl.href, "_blank");
|
|
|
+ }
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ // 进入草稿
|
|
|
+ let routeUrl = this.$router.resolve({
|
|
|
+ name: "Editer",
|
|
|
+ query: {
|
|
|
+ graphId: data.graphId,
|
|
|
+ id: data.id,
|
|
|
+ categoryName: encodeURI(this.categoryName),
|
|
|
+ isPub: this.isPub,
|
|
|
+ projectId: this.projectId,
|
|
|
+ },
|
|
|
+ });
|
|
|
+ window.open(routeUrl.href, "_blank");
|
|
|
+ }
|
|
|
},
|
|
|
/////////////////接口
|
|
|
// 查询图形信息
|
|
@@ -359,12 +397,11 @@ export default {
|
|
|
});
|
|
|
}
|
|
|
},
|
|
|
- // 查询所有草稿图
|
|
|
- getAllDraft() {
|
|
|
+ // 查询是否存在对应的得草稿图
|
|
|
+ getDraft(data) {
|
|
|
if (!this.curCategory.code) {
|
|
|
return;
|
|
|
}
|
|
|
- this.selectCard = [];
|
|
|
const pa = {
|
|
|
filters: `categoryId="${this.curCategory.code}"`,
|
|
|
orders: `${this.selVal} desc`,
|
|
@@ -372,17 +409,22 @@ export default {
|
|
|
if (this.queryText) {
|
|
|
pa.filters += `;name contain ""`;
|
|
|
}
|
|
|
- if (this.isPub) {
|
|
|
- queryPubGraph(pa).then((res) => {
|
|
|
- this.cardList = res.content.map((t) => {
|
|
|
- t.checked = false;
|
|
|
- return t;
|
|
|
+ pa.filters += ";state=1";
|
|
|
+ pa.filters += `;id='${data.id}';graphId='${data.graphId}'`;
|
|
|
+ const cardList = [];
|
|
|
+ return new Promise((resolve, reject) => {
|
|
|
+ queryDraftsGraph(pa)
|
|
|
+ .then((res) => {
|
|
|
+ if (res.content.length) {
|
|
|
+ resolve(res.content[0]);
|
|
|
+ } else {
|
|
|
+ resolve(false);
|
|
|
+ }
|
|
|
+ })
|
|
|
+ .catch((err) => {
|
|
|
+ reject(err);
|
|
|
});
|
|
|
- this.cardLoading = false;
|
|
|
- });
|
|
|
- } else {
|
|
|
-
|
|
|
- }
|
|
|
+ });
|
|
|
},
|
|
|
},
|
|
|
components: {
|