|
@@ -70,7 +70,10 @@
|
|
name="3"
|
|
name="3"
|
|
v-if="
|
|
v-if="
|
|
queryType !== 'add' &&
|
|
queryType !== 'add' &&
|
|
- (status === '3' || status === '4' || status === '5'|| status === '6')
|
|
|
|
|
|
+ (status === '3' ||
|
|
|
|
+ status === '4' ||
|
|
|
|
+ status === '5' ||
|
|
|
|
+ status === '6')
|
|
"
|
|
"
|
|
>
|
|
>
|
|
<set-plan
|
|
<set-plan
|
|
@@ -102,6 +105,7 @@ import addForm from "./components/addForm";
|
|
import grossForm from "./components/grossForm";
|
|
import grossForm from "./components/grossForm";
|
|
import backGoodShow from "./components/backGoodShow";
|
|
import backGoodShow from "./components/backGoodShow";
|
|
import setPlan from "./components/setPlan";
|
|
import setPlan from "./components/setPlan";
|
|
|
|
+import urlConfig from "@/apis/url-config";
|
|
export default {
|
|
export default {
|
|
name: "projectDetail",
|
|
name: "projectDetail",
|
|
mixins: [resToken],
|
|
mixins: [resToken],
|
|
@@ -200,9 +204,10 @@ export default {
|
|
handleClick(row) {
|
|
handleClick(row) {
|
|
console.log(row);
|
|
console.log(row);
|
|
},
|
|
},
|
|
- copyToClip(title) {
|
|
|
|
- const { host } = window.location;
|
|
|
|
- let url = `${host}/#/${title}?id=${this.queryId}`;
|
|
|
|
|
|
+ copyToClip() {
|
|
|
|
+ console.log(urlConfig);
|
|
|
|
+ let url = `${urlConfig.webUrl}${this.queryId}`;
|
|
|
|
+ console.log(url);
|
|
let aux = document.createElement("input");
|
|
let aux = document.createElement("input");
|
|
aux.setAttribute("value", url);
|
|
aux.setAttribute("value", url);
|
|
document.body.appendChild(aux);
|
|
document.body.appendChild(aux);
|
|
@@ -212,7 +217,6 @@ export default {
|
|
this.$message.warning("分享链接已成功复制至粘贴板!");
|
|
this.$message.warning("分享链接已成功复制至粘贴板!");
|
|
},
|
|
},
|
|
async refresh(e) {
|
|
async refresh(e) {
|
|
-
|
|
|
|
this.routeReGoto("project", {});
|
|
this.routeReGoto("project", {});
|
|
},
|
|
},
|
|
async initData() {
|
|
async initData() {
|