| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- <template>
- <view class="content">
- <view class="input-box">
- <image src="/static/policy/u377.png" alt="" />
- <input type="text" placeholder="请输入政策关键词搜索" />
- </view>
- <view class="notices">
- <view
- class="notice-content-box"
- v-for="(item, index) in noticeList"
- :key="index"
- @click="goNoticeDeatil(item.id)"
- >
- <image
- :src="item.url"
- mode="aspectFit"
- style="width: 34px; height: 34px"
- ></image>
- <view class="notice-content display-around-column">
- <view class="notice-content-font">{{ item.title }}</view>
- <view class="notice-content-time">{{ item.time }}</view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- noticeList: [
- {
- url: "/static/navList/policy-icon.png",
- title: "政策速览 | 小微企业、个体工商户税费...",
- time: "2021-08-05",
- },
- {
- url: "/static/navList/activity-icon.png",
- title: "活动预告 | 想了解跨境电商?8月5日带...",
- time: "2021-08-04",
- },
- {
- url: "/static/navList/notice-icon.png",
- title: "通知公告 | 2022年首批次重点新材料扶...",
- time: "2021-08-03",
- },
- ],
- };
- },
- methods: {
- goNoticeDeatil(id) {
- uni.navigateTo({
- url: "/pages/notice/notice_deatil?id=" + id,
- });
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .content {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- width: 100%;
- .notices {
- display: flex;
- // justify-content: center;
- align-items: center;
- flex-direction: column;
- .notice-content-box {
- width: 100%;
- display: flex;
- padding: 30rpx;
- background-color: #ffffff;
- box-shadow: 0px 4rpx 32rpx rgba(0, 0, 0, 0.1);
- border-radius: 32rpx;
- margin-top: 20rpx;
- justify-content: space-between;
- .notice-content-font {
- font-size: 26rpx;
- color: #0d1937;
- font-weight: 600;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .attract-content {
- color: #697594;
- font-weight: 600;
- font-size: 20rpx;
- margin-top: 8rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .notice-content-time {
- font-size: 18rpx;
- letter-spacing: 0.02em;
- color: #cfcfcf;
- margin-right: 14rpx;
- }
- }
- }
- .input-box {
- width: 100%;
- height: 100rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- position: relative;
- image {
- position: absolute;
- left: 72rpx;
- width: 40rpx;
- height: 40rpx;
- }
- input {
- background-color: rgba($color: #000000, $alpha: 0.1);
- width: 90%;
- height: 70%;
- border-radius: 50rpx;
- padding: 3rpx;
- font-size: 26rpx;
- padding-left: 80rpx;
- box-sizing: border-box;
- }
- }
- }
- </style>
|