From 530e033f9fdba1dfd02848d5839fd348ca6eeed1 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期五, 16 九月 2022 00:09:45 +0800 Subject: [PATCH] 2022-09-16 --- src/views/interface/history/index.jsx | 16 ++-------------- 1 files changed, 2 insertions(+), 14 deletions(-) diff --git a/src/views/interface/history/index.jsx b/src/views/interface/history/index.jsx index a8d4321..5e882c2 100644 --- a/src/views/interface/history/index.jsx +++ b/src/views/interface/history/index.jsx @@ -195,18 +195,12 @@ } uselogon = () => { - let baseurl = '' - if (process.env.NODE_ENV === 'production') { - baseurl = document.location.origin + '/' + window.GLOB.service - } else { - baseurl = window.GLOB.location + '/' + window.GLOB.service - } let m = { active: 'raw', createDate: '', formData: [], headers: [], - interface: baseurl + 'webapi/logon', + interface: window.GLOB.baseurl + 'webapi/logon', method: 'POST', params: [], raw: "{\n \"UserName\":\"******\",\n \"Password\":\"******\",\n \"systemType\":\"local\",\n \"Type\":\"鍏挜\",\n \"privatekey\":\"绉侀挜\",\n \"timestamp\":\"" + moment().format('YYYY-MM-DD HH:mm:ss') + "\",\n \"appkey\":\"" + window.GLOB.appkey + "\"\n}", @@ -216,18 +210,12 @@ } usedostars = () => { - let baseurl = '' - if (process.env.NODE_ENV === 'production') { - baseurl = document.location.origin + '/' + window.GLOB.service - } else { - baseurl = window.GLOB.location + '/' + window.GLOB.service - } let m = { active: 'raw', createDate: '', formData: [], headers: [], - interface: baseurl + 'webapi/dostars', + interface: window.GLOB.baseurl + 'webapi/dostars', method: 'POST', params: [], raw: "{\n \"func\":\"******\",\n \"LoginUID\":\"******\",\n \"UserID\":\"******\",\n \"nonc\":\"" + Utils.getguid() + "\",\n \"t\":" + parseInt(new Date().getTime() / 1000) + "\n}", -- Gitblit v1.8.0