From 147db159fbdef9579c09c3a6209e054479b303e0 Mon Sep 17 00:00:00 2001
From: Tcsm <1377977403@qq.com>
Date: 星期二, 15 八月 2023 21:40:22 +0800
Subject: [PATCH] 完善荣誉证书模块的类别和名称的选择输入功能;家根网可以按照身份、姓名搜索;成长经历阅历的各个小模块的时间在修改时变成可选形式

---
 ruoyi-ui/src/api/contacts/index.js |   15 ++++++++++++---
 1 files changed, 12 insertions(+), 3 deletions(-)

diff --git a/ruoyi-ui/src/api/contacts/index.js b/ruoyi-ui/src/api/contacts/index.js
index 128717e..325fafe 100644
--- a/ruoyi-ui/src/api/contacts/index.js
+++ b/ruoyi-ui/src/api/contacts/index.js
@@ -1,17 +1,18 @@
 import request from '@/utils/request'
 // 鏌ヨ鎵�鏈夐�氳褰�
-export function getContactList() {
+export function getContactList(query) {
   return request({
     url: '/zfContact/all' ,
     method: 'get',
+    params: query
 
   })
 }
 
 // 鏍规嵁id鏌ヨ閫氳褰曡缁嗕俊鎭�
-export function getContactIdList() {
+export function getContactIdList(id) {
   return request({
-    url: '/zfContact/2' ,
+    url: '/zfContact/' + id,
     method: 'get',
 
   })
@@ -61,3 +62,11 @@
     responseType: 'blob'
   })
 }
+//涓婁紶鏂囦欢
+export function enload(data) {
+  return request({
+    url: '/zfContact/importData',
+    method: 'post',
+    data: data
+  })
+}

--
Gitblit v1.9.1