|
@@ -109,7 +109,8 @@ export default {
|
109
|
109
|
...mapState({
|
110
|
110
|
OrgId: x => x.app.user.OrgId,
|
111
|
111
|
caseList: x => x.app.cases.list,
|
112
|
|
- defaultCaseId: x => x.app.cases.default
|
|
112
|
+ defaultCaseId: x => x.app.cases.default,
|
|
113
|
+ clientUrl: x => x.app.clientUrl,
|
113
|
114
|
})
|
114
|
115
|
},
|
115
|
116
|
components: {
|
|
@@ -149,7 +150,7 @@ export default {
|
149
|
150
|
this.$router.push({ name: 'editIndexCase', query: { id: row.CmsCaseId } })
|
150
|
151
|
},
|
151
|
152
|
returnUrl (id) {
|
152
|
|
- return window.location.origin + window.location.pathname + 'user.html#/majorProjects?id=' + id
|
|
153
|
+ return this.clientUrl + 'user.html#/majorProjects?id=' + id
|
153
|
154
|
},
|
154
|
155
|
deleteItem (index, row) { // 删除
|
155
|
156
|
this.$confirm('确认删除此项目专题?', '提示', {
|