test
wj 1 year ago
parent d8ec4d195f
commit 9c038ccc3e

@ -19,19 +19,28 @@ export default {
} }
</script> </script>
<style> <style>
/* 自定义滚动条样式 */
/* 滚动条样式 */
::-webkit-scrollbar { ::-webkit-scrollbar {
width: 8px; width: 10px; /* 滚动条宽度 */
height: 8px; height: 10px; /* 滚动条高度 */
} }
/* 滚动条轨道 */
::-webkit-scrollbar-track {
background-color: #f5f5f5; /* 滚动条轨道颜色 */
border-radius: 25px; /* 滚动条轨道圆角 */
}
/* 滚动条滑块 */
::-webkit-scrollbar-thumb { ::-webkit-scrollbar-thumb {
background-color: #909399; background-color: #888; /* 滚动条滑块颜色 */
border-radius: 4px; border-radius: 25px; /* 滚动条轨道圆角 */
} }
::-webkit-scrollbar-track { /* 鼠标悬停时滚动条滑块颜色 */
border-radius: 4px; ::-webkit-scrollbar-thumb:hover {
background-color: #555; /* 鼠标悬停时滚动条滑块颜色 */
} }
.width-full{ .width-full{
@ -60,7 +69,6 @@ export default {
padding: 0; padding: 0;
} }
.el-table__body-wrapper{ .el-table__body-wrapper{
height:inherit;
} }
.d-block{ .d-block{
display: block; display: block;

@ -74,7 +74,7 @@
<el-card class="grid-item" body-style="padding:0px;height:100%"> <el-card class="grid-item" body-style="padding:0px;height:100%">
<div slot="header" class="header"> <div slot="header" class="header">
<el-icon class="el-icon-s-management"/> <el-icon class="el-icon-s-management"/>
待办事项 待办事项{{ `(${todoCount}条)` }}
<div class="fr"> <div class="fr">
<el-button type="text" style="font-size: 15px;color: unset" @click="getSysMsgTodoList"> <el-button type="text" style="font-size: 15px;color: unset" @click="getSysMsgTodoList">
<el-icon class="el-icon-refresh"/> <el-icon class="el-icon-refresh"/>
@ -90,8 +90,9 @@
<el-table <el-table
v-loading="msgLoading" v-loading="msgLoading"
:data="msgList" :data="msgList"
height="calc(100% - 45px)"
stripe stripe
style="width: 100%;height:calc(100% - 50px);margin-top: 10px"> style="">
<el-table-column <el-table-column
type="index" type="index"
label="序号" label="序号"
@ -130,7 +131,7 @@
<el-card class="grid-item" body-style="padding:0px;height:100%"> <el-card class="grid-item" body-style="padding:0px;height:100%">
<div slot="header" class="header"> <div slot="header" class="header">
<el-icon class="el-icon-s-platform"/> <el-icon class="el-icon-s-platform"/>
审核送货单 审核送货单{{ `(${orderTotal}条)` }}
<div class="fr"> <div class="fr">
<el-button type="text" style="font-size: 15px;color: unset" @click="getOrderList"> <el-button type="text" style="font-size: 15px;color: unset" @click="getOrderList">
<el-icon class="el-icon-refresh"/> <el-icon class="el-icon-refresh"/>
@ -145,8 +146,8 @@
<el-table <el-table
v-loading="orderLoading" v-loading="orderLoading"
:data="orderList" :data="orderList"
stripe height="calc(100% - 45px)"
style="width: 100%;height:calc(100% - 50px);margin-top: 10px"> stripe>
<el-table-column <el-table-column
type="index" type="index"
label="序号" label="序号"
@ -217,21 +218,13 @@ export default {
certMsgCount: 0, certMsgCount: 0,
// ================================================== // ==================================================
msgLoading: false, msgLoading: false,
todoCount: 0,
msgList: [], msgList: [],
msgQuery: {
page: 1,
limit: 5
},
// ======================================================================= // =======================================================================
// ================================================== // ==================================================
orderLoading: false, orderLoading: false,
orderTotal: 0,
orderList: [], orderList: [],
orderQuery: {
page: 1,
limit: 5,
status: 10,
vueType: "supDelivery",
}
// ======================================================================= // =======================================================================
}; };
}, },
@ -243,14 +236,14 @@ export default {
this.getOrderList() this.getOrderList()
}, },
methods: { methods: {
getProductCount(){ getProductCount() {
let param = { let param = {
page: 1, page: 1,
limit: 1, limit: 1,
addType: 1, addType: 1,
filterType: 1 filterType: 1
} }
getUdiInfos(param).then(res=>{ getUdiInfos(param).then(res => {
this.productCount = res.data?.total || 0 this.productCount = res.data?.total || 0
}) })
}, },
@ -265,7 +258,7 @@ export default {
this.invMsgCount = res.data?.total || 0 this.invMsgCount = res.data?.total || 0
}) })
}, },
getCertMsgCount(){ getCertMsgCount() {
let param = { let param = {
page: 1, page: 1,
limit: 1, limit: 1,
@ -281,21 +274,34 @@ export default {
}, },
getSysMsgTodoList() { getSysMsgTodoList() {
this.msgLoading = true this.msgLoading = true
sysMsgTodoPage(this.msgQuery).then(res => { let msgQuery = {
page: 1,
limit: 5
}
sysMsgTodoPage(msgQuery).then(res => {
this.msgLoading = false this.msgLoading = false
if (res.code != 20000) { if (res.code != 20000) {
this.$message.error(res.message()) this.$message.error(res.message())
return return
} }
this.msgList = res.data.list || [] this.msgList = res.data.list || []
this.todoCount = res.data.total || 0
}).catch(e => { }).catch(e => {
this.$message.error(e.message)
this.msgLoading = false this.msgLoading = false
this.msgList = [] this.msgList = []
this.todoCount = 0
}) })
}, },
getOrderList() { getOrderList() {
this.orderLoading = true; this.orderLoading = true
getOrderList(this.orderQuery) let orderQuery = {
page: 1,
limit: 5,
status: 10,
vueType: "supDelivery",
}
getOrderList(orderQuery)
.then((res) => { .then((res) => {
this.orderLoading = false; this.orderLoading = false;
if (res.code === 20000) { if (res.code === 20000) {
@ -345,6 +351,11 @@ export default {
font-size: 20px; font-size: 20px;
font-weight: bolder; font-weight: bolder;
} }
.el-table {
margin-top: 10px;
width: 100%;
}
} }
.grid-container { .grid-container {

Loading…
Cancel
Save