|
|
|
|
@ -456,7 +456,7 @@
|
|
|
|
|
import {
|
|
|
|
|
getInfo
|
|
|
|
|
} from '@/api/user.js'
|
|
|
|
|
import {
|
|
|
|
|
import {
|
|
|
|
|
getToken
|
|
|
|
|
} from '@/utils/auth'
|
|
|
|
|
import editor from "./components/editorContract"
|
|
|
|
|
@ -1355,10 +1355,10 @@
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
let tokens = getToken();
|
|
|
|
|
if (is_export) {
|
|
|
|
|
if (is_export && this.select.is_export == 1) {
|
|
|
|
|
var url = "/api/admin/contract/index?is_auth=1&token=" + tokens
|
|
|
|
|
Object.keys(this.select).map((key, item) => {
|
|
|
|
|
url += "&"+key+"=" + this.select[key];
|
|
|
|
|
Object.keys(this.select).map((key, item) => {
|
|
|
|
|
url += "&" + key + "=" + this.select[key];
|
|
|
|
|
});
|
|
|
|
|
url = location.host + url;
|
|
|
|
|
console.log(url)
|
|
|
|
|
|