diff --git a/src/api/attachment.js b/src/api/attachment.js
new file mode 100644
index 000000000..43a3b7e8f
--- /dev/null
+++ b/src/api/attachment.js
@@ -0,0 +1,15 @@
+import service from '@/utils/service'
+
+const baseUrl = '/admin/api/attachments'
+
+const attachmentApi = {}
+
+attachmentApi.list = pagination => {
+ return service({
+ url: baseUrl,
+ method: 'get',
+ params: pagination
+ })
+}
+
+export default attachmentApi
diff --git a/src/views/attachment/AttachmentList.vue b/src/views/attachment/AttachmentList.vue
index def3ae603..b3396747c 100644
--- a/src/views/attachment/AttachmentList.vue
+++ b/src/views/attachment/AttachmentList.vue
@@ -1,107 +1,77 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ :xs="24"
+ >
+
+
+
+ {{ attachment.name }}
+
+
+
+