jinhui.wang

接口增加,反填逻辑增加

......@@ -59,3 +59,11 @@ export function searchMockReceiptSummary(data) {
method: "get",
});
}
//获取清单模拟回执信息
export function getListInfoByLogisticsNo(data) {
return request({
url: `/bus-customer/mockReceipt/getListInfo/${data.logisticsNo}`,
method: "get",
});
}
......
......@@ -166,12 +166,12 @@
>
清单总分单撤销
</el-dropdown-item>
<el-dropdown-item
<!-- <el-dropdown-item
:command="{ code: 'totalScore', name: '清单总分单变更' }"
class="dropdown-other-menu-button"
>
清单总分单变更
</el-dropdown-item>
</el-dropdown-item> -->
</el-dropdown-menu>
</el-dropdown>
</div>
......@@ -1041,4 +1041,48 @@ export default {
transform: translate(0, -50%);
z-index: 10;
}
.dropdown-other-button {
border-color: #ff0000 !important;
::v-deep {
.el-button-group {
.el-button:last-child {
border-right-color: #409eff !important;
border-left: 1px solid #409eff !important;
border-top-color: #409eff !important;
border-bottom-color: #409eff !important;
.el-dropdown__icon {
color: #409eff;
}
}
.el-button:first-child {
height: 100%;
border-left-color: #409eff !important;
border-top-color: #409eff !important;
border-bottom-color: #409eff !important;
span {
color: #409eff;
}
}
}
}
}
.el-dropdown-menu {
border: 1px solid #409eff !important;
.dropdown-other-menu-button:not(.is-disabled):hover,
.dropdown-other-menu-button:focus {
background-color: #409eff !important;
}
}
.dropdown-other-button:hover {
::v-deep {
.el-button-group .el-button:first-child span {
color: #409eff !important;
}
.el-button-group .el-button:last-child .el-dropdown__icon {
color: #409eff !important;
}
}
}
</style>
......
This diff is collapsed. Click to expand it.