From 59e66310bfadaba46bf180d14f52035e9685a7d7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=AE=8B=E4=BC=9F=E4=BD=B3?= <2797716443@qq.com>
Date: Tue, 22 Jun 2021 18:15:29 +0800
Subject: [PATCH] =?UTF-8?q?=E6=A0=87=E5=87=86=E6=B8=85=E5=8D=95?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/common/axios/index.js | 13 +
.../accessStandardsAndRegulations/index.vue | 131 +-
.../page/listOfCountries.vue | 290 +--
.../page/listOther.vue | 76 +-
.../page/listProject.vue | 267 ++-
.../pages/addEdit.vue | 7 +-
.../pages/details.vue | 1870 +++--------------
7 files changed, 790 insertions(+), 1864 deletions(-)
diff --git a/src/common/axios/index.js b/src/common/axios/index.js
index bd1faa601..e7ad9e22d 100644
--- a/src/common/axios/index.js
+++ b/src/common/axios/index.js
@@ -447,5 +447,18 @@ export default {
}
exeFun.call(this, err)
})
+ },
+
+ /**
+ * @description: delete方法
+ * @author: chenxiaoxi
+ * @date: 2018-09-14 09:55:30
+ */
+ postDelete (url, param, thenFun, exeFun) {
+ _axios.post(api() + url, {}).then(res => {
+ thenFun.call(this, res.data)
+ }).catch(err => {
+ exeFun.call(this, err)
+ })
}
}
diff --git a/src/pages/regulatoryRepository/accessStandardsAndRegulations/index.vue b/src/pages/regulatoryRepository/accessStandardsAndRegulations/index.vue
index d683c5072..9327a4c2c 100644
--- a/src/pages/regulatoryRepository/accessStandardsAndRegulations/index.vue
+++ b/src/pages/regulatoryRepository/accessStandardsAndRegulations/index.vue
@@ -1,49 +1,50 @@