diff --git a/klp-ui/src/api/finance/otherIncome.js b/klp-ui/src/api/finance/otherIncome.js new file mode 100644 index 00000000..e23003a3 --- /dev/null +++ b/klp-ui/src/api/finance/otherIncome.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询其他收入列表 +export function listOtherIncome(query) { + return request({ + url: '/klp/otherIncome/list', + method: 'get', + params: query + }) +} + +// 查询其他收入详细 +export function getOtherIncome(otherIncomeId) { + return request({ + url: '/klp/otherIncome/' + otherIncomeId, + method: 'get' + }) +} + +// 新增其他收入 +export function addOtherIncome(data) { + return request({ + url: '/klp/otherIncome', + method: 'post', + data: data + }) +} + +// 修改其他收入 +export function updateOtherIncome(data) { + return request({ + url: '/klp/otherIncome', + method: 'put', + data: data + }) +} + +// 删除其他收入 +export function delOtherIncome(otherIncomeId) { + return request({ + url: '/klp/otherIncome/' + otherIncomeId, + method: 'delete' + }) +} diff --git a/klp-ui/src/assets/styles/element-ui.scss b/klp-ui/src/assets/styles/element-ui.scss index 01ea83c6..228c7a7c 100644 --- a/klp-ui/src/assets/styles/element-ui.scss +++ b/klp-ui/src/assets/styles/element-ui.scss @@ -29,7 +29,7 @@ $background-light-base: lighten($background-base, 5%); $background-lighter-base: lighten($background-base, 10%); $--color-text-primary: #1a1a1a; $panel-bg-base: $--color-text-primary; -$table-bg-base: $--color-text-primary; +$table-bg-base: transparent; // 亮色边框色原始值 $border-color-base: #6E757D; diff --git a/klp-ui/src/views/finance/other/index.vue b/klp-ui/src/views/finance/other/index.vue new file mode 100644 index 00000000..798bceba --- /dev/null +++ b/klp-ui/src/views/finance/other/index.vue @@ -0,0 +1,275 @@ + + + \ No newline at end of file diff --git a/klp-ui/src/views/login.vue b/klp-ui/src/views/login.vue index 17b08ed0..812a7c68 100644 --- a/klp-ui/src/views/login.vue +++ b/klp-ui/src/views/login.vue @@ -30,7 +30,7 @@ 记住密码 - 登 录 登 录 中... @@ -154,12 +154,12 @@ export default {