diff --git a/web/views/@default/settings/ip-library/index.html b/web/views/@default/settings/ip-library/index.html
deleted file mode 100644
index 29dfe2a4..00000000
--- a/web/views/@default/settings/ip-library/index.html
+++ /dev/null
@@ -1,36 +0,0 @@
-{$layout}
-
-
- {{type.name}}
- |
- [上传]
-
-
-
-
-
-
-
-
- | 文件名 |
- 文件尺寸 |
- 上传时间 |
- 操作 |
-
-
-
- |
- {{library.file.filename}}
- -
- |
-
- {{library.file.sizeMB}}MB
- -
- |
- {{library.createdTime}} |
-
- 下载 删除
- |
-
-
-
\ No newline at end of file
diff --git a/web/views/@default/settings/ip-library/index.js b/web/views/@default/settings/ip-library/index.js
deleted file mode 100644
index 9b46ec4a..00000000
--- a/web/views/@default/settings/ip-library/index.js
+++ /dev/null
@@ -1,24 +0,0 @@
-Tea.context(function () {
- this.upload = function () {
- teaweb.popup("/settings/ip-library/uploadPopup", {
- callback: function () {
- teaweb.success("上传成功", function () {
- teaweb.reload()
- })
- }
- })
- }
-
- this.deleteLibrary = function (libraryId) {
- let that = this
- teaweb.confirm("确定要删除此IP库吗?", function () {
- that.$post(".delete")
- .params({
- "libraryId": libraryId
- })
- .success(function () {
- teaweb.reload()
- })
- })
- }
-})
\ No newline at end of file
diff --git a/web/views/@default/settings/ip-library/uploadPopup.html b/web/views/@default/settings/ip-library/uploadPopup.html
deleted file mode 100644
index b3363608..00000000
--- a/web/views/@default/settings/ip-library/uploadPopup.html
+++ /dev/null
@@ -1,26 +0,0 @@
-{$layout "layout_popup"}
-
-上传IP库
-
-
\ No newline at end of file
diff --git a/web/views/@default/settings/ip-library/uploadPopup.js b/web/views/@default/settings/ip-library/uploadPopup.js
deleted file mode 100644
index 6d259683..00000000
--- a/web/views/@default/settings/ip-library/uploadPopup.js
+++ /dev/null
@@ -1,28 +0,0 @@
-Tea.context(function () {
- this.isRequesting = false
- this.selectedTypeCode = this.types[0].code
- this.selectedTypeDescription = this.types[0].description
- this.selectedTypeExt = this.types[0].ext
-
- this.success = NotifyPopup
-
- this.before = function () {
- this.isRequesting = true
- }
-
- this.done = function () {
- this.isRequesting = false
- }
-
- this.changeType = function () {
- let that = this
- let selectedType = this.types.$find(function (k, v) {
- return v.code == that.selectedTypeCode
- })
- if (selectedType == null) {
- return
- }
- this.selectedTypeDescription = selectedType.description
- this.selectedTypeExt = selectedType.ext
- }
-})
\ No newline at end of file