diff --git a/.env.production b/.env.production
index 6c242d9..67cbc17 100644
--- a/.env.production
+++ b/.env.production
@@ -2,6 +2,8 @@
ENV = 'production'
# base api
-VUE_APP_BASE_API = http://book-sqhj.ali251.langye.net
-VUE_APP_UPLOAD_API = http://book-sqhj.ali251.langye.net/api/admin/upload-file
+#VUE_APP_BASE_API = http://book-sqhj.ali251.langye.net
+#VUE_APP_UPLOAD_API = http://book-sqhj.ali251.langye.net/api/admin/upload-file
VUE_APP_PUBLIC='/admin/'
+VUE_APP_BASE_API = https://book.jssqhjjczx.com
+VUE_APP_UPLOAD_API = https://book.jssqhjjczx.com/api/admin/upload-file
diff --git a/public/江苏省宿迁环境监测中心图书管理规定.docx b/public/江苏省宿迁环境监测中心图书管理规定.docx
new file mode 100644
index 0000000..2768482
Binary files /dev/null and b/public/江苏省宿迁环境监测中心图书管理规定.docx differ
diff --git a/src/views/bookStore/storeList.vue b/src/views/bookStore/storeList.vue
index a144dee..1c0e0f7 100644
--- a/src/views/bookStore/storeList.vue
+++ b/src/views/bookStore/storeList.vue
@@ -28,7 +28,7 @@
-
@@ -93,16 +93,16 @@
width: 180,
fixed: 'left',
customFn: (row) => {
- return ( < div style = {
+ return (
< img src = {
+ } >

< /img>
)
+ style = 'width:120px;height:90px'> )
}
}, {
@@ -112,13 +112,13 @@
align: 'left',
customFn: (row) => {
if (row.bookshelf && row.line && row.rows)
- return ( < div > {
+ return ( {
"书架:" + row.bookshelf
- } < br / > {
+ }
{
"位于:第" + row.line + "列 "
} {
"第" + row.rows + "行"
- } < /div> )
+ }
)
}
},
{
@@ -224,4 +224,4 @@
margin-bottom: 6px;
}
}
-
\ No newline at end of file
+
diff --git a/src/views/dashboard/components/PanelGroup.vue b/src/views/dashboard/components/PanelGroup.vue
index 21cfa70..49d7bb4 100644
--- a/src/views/dashboard/components/PanelGroup.vue
+++ b/src/views/dashboard/components/PanelGroup.vue
@@ -18,7 +18,7 @@
- {{totaldata.borrow.rate+'%'}}
+ {{totaldata.borrow.rate.toFixed(2)+'%'}}
借出量
@@ -46,7 +46,7 @@
未归还
- {{totaldata.book.rate+'%'}}
+ {{totaldata.book.rate.toFixed(2)+'%'}}
{{(totaldata.book.rate>0?'上升':(totaldata.book.rate==0?'-':'下降'))}}
@@ -71,7 +71,7 @@
- {{totaldata.person.rate+'%'}}
+ {{totaldata.person.rate.toFixed(2)+'%'}}
{{(totaldata.person.rate>0?'上升':(totaldata.person.rate==0?'-':'下降'))}}
diff --git a/src/views/dashboard/index.vue b/src/views/dashboard/index.vue
index 3f839e1..d9e304f 100644
--- a/src/views/dashboard/index.vue
+++ b/src/views/dashboard/index.vue
@@ -2,7 +2,11 @@