需求变更-1

This commit is contained in:
aixianling
2024-10-22 10:54:10 +08:00
parent fcb2fe3b47
commit 7bd7174966
2 changed files with 119 additions and 118 deletions

View File

@@ -214,14 +214,15 @@ a, .green {
.AppSubTitle { .AppSubTitle {
height: 48px; height: 48px;
padding: 8px 0 8px 38px; padding: 8px 0 8px 38px;
margin-bottom: 24px; margin-bottom: 12px;
box-sizing: border-box; box-sizing: border-box;
line-height: 32px; line-height: 32px;
background-image: url("http://10.0.97.209/img/kengee/kengee4.png"); background-image: url("http://10.0.97.209/img/kengee/kengee4.png");
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: 100% 100%; background-size: 400px 100%;
color: #fff; color: #fff;
max-width: 400px; max-width: 100%;
min-width: 400px;
display: flex; display: flex;
align-items: center; align-items: center;
gap: 16px; gap: 16px;
@@ -235,7 +236,7 @@ a, .green {
.AppSubTitle > .right { .AppSubTitle > .right {
position: absolute; position: absolute;
right: -30px; right: 0;
top: 50%; top: 50%;
transform: translateY(-50%); transform: translateY(-50%);
} }

View File

@@ -1,9 +1,6 @@
<script> <script>
import AppSubTitle from "@/views/AppSubTitle.vue";
export default { export default {
name: "AppKeyGoods", name: "AppKeyGoods",
components: {AppSubTitle},
label: "市场看板-重点单品", label: "市场看板-重点单品",
data() { data() {
return { return {
@@ -37,7 +34,7 @@ export default {
getTableData() { getTableData() {
const {$http, $waitFor} = window const {$http, $waitFor} = window
const {goodsCategoryId} = this const {goodsCategoryId} = this
$waitFor($http).then(() => $http.post("/data-boot/ca/screen/scStoreKeyGoods/list", { $waitFor($http).then(() => $http.post("/data-boot/la/screen/marketBoard/marketKeyGoods", {
...this.search, limit: 999, goodsCategoryId ...this.search, limit: 999, goodsCategoryId
})).then(res => { })).then(res => {
if (res?.data) { if (res?.data) {
@@ -75,4 +72,7 @@ export default {
color: #fff; color: #fff;
box-sizing: border-box; box-sizing: border-box;
} }
.AppKeyGoods .dv-scroll-board, .AppKeyGoods .scrollTable {
height: calc(100% - 60px) !important;
}
</style> </style>