From d74b495736f0c04522ec54274b70fed0ded2878d Mon Sep 17 00:00:00 2001
From: zhongrj <646384940@qq.com>
Date: Tue, 27 Jun 2023 11:30:06 +0800
Subject: [PATCH] 任务新增导出
---
public/map/js/comm.js | 16 ++++++++++++++++
1 files changed, 16 insertions(+), 0 deletions(-)
diff --git a/public/map/js/comm.js b/public/map/js/comm.js
new file mode 100644
index 0000000..a01ee66
--- /dev/null
+++ b/public/map/js/comm.js
@@ -0,0 +1,16 @@
+function login(){
+ $.ajax({
+ url: 'https://gqpc.whkc.com.cn/arcgis/sharing/rest/community/self',
+ type: 'post',
+ dataType:'json',
+ data:{"f":"json","token":_token},
+ success: function (result) {
+ /* _token = result.token;
+ init();*/
+ },
+ error: function(xhr){
+ alert("请求出错");
+ }
+ });
+
+}
--
Gitblit v1.9.3