From 60586a25d530cff887950a3c88ed6b5d98445e7a Mon Sep 17 00:00:00 2001
From: xuhuajiao <13476289682@163.com>
Date: Tue, 21 Jan 2025 16:07:30 +0800
Subject: [PATCH] =?UTF-8?q?=E6=9F=A5=E6=BC=8F=E8=A1=A5=E7=BC=BA/=E4=BC=98?=
=?UTF-8?q?=E5=8C=96?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/book/index.js | 10 +-
src/api/system/new.js | 6 +-
src/assets/styles/index.scss | 20 +++
src/assets/styles/manage.scss | 7 +-
src/layout/components/Navbar.vue | 4 +-
src/main.js | 19 ++-
src/utils/index.js | 44 +++++
src/views/components/bookSwiper.vue | 13 +-
src/views/components/canvasPreview.vue | 6 +-
src/views/components/checkSwiper.vue | 6 +-
src/views/home.vue | 4 +-
src/views/login.vue | 116 ++++++++++++-
src/views/system/log/search.vue | 7 +-
src/views/system/notify/index.vue | 10 +-
.../visualCheck/bookstore/book/index.vue | 143 +++++++++++++++-
.../bookstore/collection/index.vue | 6 +-
.../checkManage/bookSearch/index.vue | 15 +-
.../checkManage/bookshelfSearch/index.vue | 11 +-
.../checkManage/checkLog/index.vue | 20 ++-
.../checkManage/dataScreening/girdList.vue | 158 +++++++++++-------
.../checkManage/dataScreening/shelfList.vue | 6 +-
.../checkManage/positionMixins/index.js | 10 +-
.../statistic/reverseShelf/index.vue | 4 +-
.../checkManage/statistic/seqShelf/index.vue | 6 +-
.../checkManage/upDownLog/index.vue | 6 +-
.../venueDevice/bookshelfPosition/index.vue | 6 +-
26 files changed, 534 insertions(+), 129 deletions(-)
diff --git a/src/api/book/index.js b/src/api/book/index.js
index b952bce..650dc11 100644
--- a/src/api/book/index.js
+++ b/src/api/book/index.js
@@ -57,4 +57,12 @@ export function FetchInitBookDetailsSearchInto(params) {
})
}
-export default { add, edit, del, FetchInitBookBasiceList, FetchBookBasiceByISBN, FetchFastDownShelf, FetchInitBookDetailsSearchInto }
+// 图书基本信息总数
+export function FetchInitBookBasiceCount(params) {
+ return request({
+ url: 'api/bookBasice/initBookBasiceCount' + '?' + qs.stringify(params, { indices: false }),
+ method: 'get'
+ })
+}
+
+export default { add, edit, del, FetchInitBookBasiceList, FetchBookBasiceByISBN, FetchFastDownShelf, FetchInitBookDetailsSearchInto, FetchInitBookBasiceCount }
diff --git a/src/api/system/new.js b/src/api/system/new.js
index f4d018c..ca1f462 100644
--- a/src/api/system/new.js
+++ b/src/api/system/new.js
@@ -3,7 +3,7 @@ import request from '@/utils/request'
// 我的系统通知
export function FetchMySystemNotice(params) {
return request({
- url: 'api/news/mySystemNotice',
+ url: 'api/notice/mySystemNotice',
method: 'get',
params
})
@@ -12,7 +12,7 @@ export function FetchMySystemNotice(params) {
// 通知详情
export function FetchInitNoticeDetails(data) {
return request({
- url: 'api/news/initNoticeDetails',
+ url: 'api/notice/initNoticeDetails',
method: 'post',
data
})
@@ -21,7 +21,7 @@ export function FetchInitNoticeDetails(data) {
// 全部已读
export function FetchReadedAll(data) {
return request({
- url: 'api/news/readedAll',
+ url: 'api/notice/readedAll',
method: 'post',
data
})
diff --git a/src/assets/styles/index.scss b/src/assets/styles/index.scss
index 2b2beca..85dd5f9 100644
--- a/src/assets/styles/index.scss
+++ b/src/assets/styles/index.scss
@@ -323,4 +323,24 @@ ul{
left: 0 !important;
margin-top: 0 !important;
margin-right: 30px !important;
+}
+
+.login-info{
+ .el-dialog__body{
+ padding: 10px 20px 30px 20px;
+ line-height: 30px;
+ color:#0C0E1E;
+ h4{
+ font-size: 18px;
+ }
+ .text-item{
+ margin-bottom: 10px;
+ h5{
+ font-size: 14px;
+ }
+ p{
+ text-indent: 2em;
+ }
+ }
+ }
}
\ No newline at end of file
diff --git a/src/assets/styles/manage.scss b/src/assets/styles/manage.scss
index cb1c517..584cc79 100644
--- a/src/assets/styles/manage.scss
+++ b/src/assets/styles/manage.scss
@@ -52,7 +52,7 @@
}
.double-click-btn{
position: inherit;
- margin-left: 20px;
+ margin: 0 0 0 20px !important;
font-weight: normal;
border: 1px solid #545b65;
border-radius: 13px;
@@ -640,6 +640,11 @@
}
}
}
+.tip-bottom{
+ font-size: 12px;
+ padding: 5px 0 10px 0;
+ text-align: center;
+}
.positionDialog{
diff --git a/src/layout/components/Navbar.vue b/src/layout/components/Navbar.vue
index e6bebe4..259c12b 100644
--- a/src/layout/components/Navbar.vue
+++ b/src/layout/components/Navbar.vue
@@ -3,7 +3,7 @@