diff --git a/src/api/system/vip.js b/src/api/system/vip.js
new file mode 100644
index 0000000..7a7ea62
--- /dev/null
+++ b/src/api/system/vip.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询会员等级列表
+export function listVip(query) {
+ return request({
+ url: '/system/vip/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询会员等级详细
+export function getVip(id) {
+ return request({
+ url: '/system/vip/' + id,
+ method: 'get'
+ })
+}
+
+// 新增会员等级
+export function addVip(data) {
+ return request({
+ url: '/system/vip',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改会员等级
+export function updateVip(data) {
+ return request({
+ url: '/system/vip',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除会员等级
+export function delVip(id) {
+ return request({
+ url: '/system/vip/' + id,
+ method: 'delete'
+ })
+}
diff --git a/src/views/system/vip/index.vue b/src/views/system/vip/index.vue
new file mode 100644
index 0000000..32e71a5
--- /dev/null
+++ b/src/views/system/vip/index.vue
@@ -0,0 +1,241 @@
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+