diff --git a/src/api/accounting/other.js b/src/api/accounting/other.js
new file mode 100644
index 00000000..1dd8b2bb
--- /dev/null
+++ b/src/api/accounting/other.js
@@ -0,0 +1,54 @@
+import request from '@/utils/request'
+
+// 创建其他资料
+export function createOther(data) {
+ return request({
+ url: '/accounting/other/create',
+ method: 'post',
+ data: data
+ })
+}
+
+// 更新其他资料
+export function updateOther(data) {
+ return request({
+ url: '/accounting/other/update',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除其他资料
+export function deleteOther(id) {
+ return request({
+ url: '/accounting/other/delete?id=' + id,
+ method: 'delete'
+ })
+}
+
+// 获得其他资料
+export function getOther(id) {
+ return request({
+ url: '/accounting/other/get?id=' + id,
+ method: 'get'
+ })
+}
+
+// 获得其他资料分页
+export function getOtherPage(query) {
+ return request({
+ url: '/accounting/other/page',
+ method: 'get',
+ params: query
+ })
+}
+
+// 导出其他资料 Excel
+export function exportOtherExcel(query) {
+ return request({
+ url: '/accounting/other/export-excel',
+ method: 'get',
+ params: query,
+ responseType: 'blob'
+ })
+}
diff --git a/src/views/accounting/other/index.vue b/src/views/accounting/other/index.vue
new file mode 100644
index 00000000..8cba268b
--- /dev/null
+++ b/src/views/accounting/other/index.vue
@@ -0,0 +1,353 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+
+ 新增
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ parseTime(scope.row.createTime) }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+