This commit is contained in:
liuye
2023-02-03 17:22:28 +08:00
parent 18eb71220c
commit 70f405ffc1

View File

@@ -175,9 +175,7 @@ export default {
this.getAwardedList() this.getAwardedList()
}, },
onShow() { onShow() {
this.injectJWeixin('showOptionMenu').then(() => { wx.hideOptionMenu();
wx.showOptionMenu();
})
}, },
methods: { methods: {
...mapActions(['injectJWeixin', 'wxInvoke', 'agentSign']), ...mapActions(['injectJWeixin', 'wxInvoke', 'agentSign']),
@@ -430,8 +428,9 @@ export default {
} }
} }
.flex-img { .flex-img {
display: flex;
padding: 0 0 20px; padding: 0 0 20px;
height: 88px;
position: relative;
.flex-img-item { .flex-img-item {
div { div {
display: inline-block; display: inline-block;
@@ -451,25 +450,29 @@ export default {
} }
} }
.flex-img-item:nth-of-type(1) { .flex-img-item:nth-of-type(1) {
flex: 1; position: absolute;
// width: 110px; top: 0;
text-align: left; left: 0;
} }
.flex-img-item:nth-of-type(2) { .flex-img-item:nth-of-type(2) {
flex: 5; position: absolute;
text-align: right; top: 0;
left: calc(25% - 64px);
} }
.flex-img-item:nth-of-type(3) { .flex-img-item:nth-of-type(3) {
flex: 10; position: absolute;
text-align: right; top: 0;
left: calc(50% - 64px);
} }
.flex-img-item:nth-of-type(4) { .flex-img-item:nth-of-type(4) {
flex: 15; position: absolute;
text-align: right; top: 0;
left: calc(75% - 64px);
} }
.flex-img-item:nth-of-type(5) { .flex-img-item:nth-of-type(5) {
flex: 20; position: absolute;
text-align: right; top: 0;
right: 0;
} }
} }
.count-line { .count-line {
@@ -492,35 +495,40 @@ export default {
} }
} }
.flex-day { .flex-day {
display: flex; position: relative;
justify-content: space-between;
padding: 0 16px; padding: 0 16px;
div { div {
width: 140px; width: 140px;
text-align: center;
line-height: 36px; line-height: 36px;
font-family: PingFangSC-Regular; font-family: PingFangSC-Regular;
font-size: 26px; font-size: 26px;
color: #E55500; color: #E55500;
} }
div:nth-of-type(1) { div:nth-of-type(1) {
// flex: 1; position: absolute;
// width: 110px; top: 0;
text-align: left; left: 0;
} }
div:nth-of-type(2) { div:nth-of-type(2) {
flex: 1.5; position: absolute;
top: 0;
left: calc(25% - 64px);
} }
div:nth-of-type(3) { div:nth-of-type(3) {
flex: 3.5; position: absolute;
text-align: right; top: 0;
left: calc(50% - 64px);
} }
div:nth-of-type(4) { div:nth-of-type(4) {
flex: 4.5; position: absolute;
text-align: right; top: 0;
left: calc(75% - 64px);
} }
div:nth-of-type(5) { div:nth-of-type(5) {
flex: 3.5; position: absolute;
top: 0;
right: 0;
text-align: right; text-align: right;
} }
} }