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