feat: 1调整部分命名 2新增发布公告页面UI

This commit is contained in:
“DaisyWu” 2025-01-08 17:50:29 +08:00
parent 4173f31944
commit d4635349a6
4 changed files with 38 additions and 16 deletions

View File

@ -81,6 +81,18 @@
},
"needLogin": false
},
{
"path": "pages/info-publish/announce-notice",
"type": "page",
"layout": "default",
"style": {
"navigationStyle": "custom"
}
},
{
"path": "pages/info-publish/basic-info",
"type": "page"
},
{
"path": "pages/info-publish/info-publish",
"type": "page"
@ -94,7 +106,7 @@
}
},
{
"path": "pages/info-publish/notice",
"path": "pages/info-publish/notice-manage",
"type": "page",
"layout": "default",
"style": {

View File

@ -41,9 +41,9 @@
</div>
<!-- 底部按钮 -->
<div class="bottom-button">
<button class="next-step" @click="handleNextStep">下一步</button>
</div>
<view class="bottom-btns">
<button class="nextstep-btn" @click="handlePublish">下一步</button>
</view>
</div>
</template>
@ -153,18 +153,28 @@
text-align: right;
}
.bottom-button {
padding: 15px;
background: #ff4d4f;
}
.bottom-btns {
position: fixed;
right: 0;
bottom: 0;
left: 0;
display: flex;
padding: 10px 15px;
background-color: #fff;
box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05);
.next-step {
width: 100%;
height: 44px;
font-size: 16px;
color: #fff;
background: #4080ff;
border: none;
border-radius: 16px;
.nextstep-btn {
flex: 1;
height: 40px;
font-size: 14px;
line-height: 40px;
text-align: center;
border-radius: 4px;
}
.nextstep-btn {
color: #fff;
background-color: #007aff;
}
}
</style>

View File