Browse Source

2025-12-03

生产派工单列表鼠标样式优化
master
fengyuan_yang 1 month ago
parent
commit
5cbd007f08
  1. 12
      src/views/modules/shopOrder/productionOrderScheduling/searchProductionDispatchList.vue

12
src/views/modules/shopOrder/productionOrderScheduling/searchProductionDispatchList.vue

@ -1,5 +1,5 @@
<template>
<div class="mod-config">
<div class="mod-config dispatch-list-page">
<el-form :inline="true" label-position="top" label-width="100px" style="margin-top: -5px;">
<el-form-item :label="'录入日期:'">
<el-date-picker
@ -1528,7 +1528,7 @@ export default {
}
</script>
<style>
<style scoped>
.el-textarea__inner {
padding: 5px 5px;
}
@ -1538,13 +1538,15 @@ export default {
opacity: 0.4;
background: #e8f4ff !important;
}
</style>
/* 鼠标悬停时显示可拖拽的提示 */
.el-table__body-wrapper tbody tr {
<style>
/* 鼠标悬停时显示可拖拽的提示 - 仅限当前页面(使用唯一类名限定) */
.dispatch-list-page .el-table__body-wrapper tbody tr {
cursor: move;
}
.el-table__body-wrapper tbody tr:hover {
.dispatch-list-page .el-table__body-wrapper tbody tr:hover {
background-color: #f5f7fa;
}
</style>
Loading…
Cancel
Save