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

View File

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