123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- <template>
- <view class="index">
- <view class="search">
- <view class="item">
- <text class="icon"></text>
- <input type="text" v-model="map.keywords" confirm-type="search" @confirm="search" placeholder="输入您想要找寻的文章" placeholder-class="inupt_p" />
- </view>
- <text class="icon" @tap="navigateTo('/pages/forum/addForum')"></text>
- </view>
- <view class="new" v-for="(v, i) in info.data" :key="i">
- <view class="title">
- <text @tap="navigateTo('/pages/forum/articleDetails?message_id=' + v.id)">{{ v.title }}</text>
- <text class="delete" @tap="del(v.id)">删除</text>
- </view>
- <view class="user" @tap="navigateTo('/pages/forum/articleDetails?message_id=' + v.id)">
- <image :src="v.user.avatar" mode=""></image>
- <text class="t1">{{ v.user.nickname }}</text>
- <text class="t2">{{ v.createtime | date }}</text>
- </view>
- <view class="info" v-html="v.content"></view>
- </view>
- </view>
- </template>
- <script>
- import helper from '../../common/helper.js';
- import api from '../../common/api.js';
- export default {
- data() {
- return {
- map: {
- keywords: '',
- page: 1
- },
- info: {
- data: []
- }
- };
- },
- filters: {
- date: value => {
- let date = new Date(value * 1000);
- let y = date.getFullYear();
- let m = date.getMonth() + 1;
- let d = date.getDate();
- return y + '-' + (m > 9 ? m : '0' + m) + '-' + (d > 9 ? d : '0' + d);
- }
- },
- onShow() {
- this.getList();
- },
- methods: {
- search() {
- this.map.page = 1;
- this.getList();
- },
- async getList() {
- let res = await api.getMyMessageList(this.map);
- this.info = res.data;
- uni.stopPullDownRefresh();
- },
- async del(id) {
- uni.showModal({
- title: '操作提示',
- content: '确认要删除该话题吗?',
- success: async res => {
- if (res.confirm) {
- let res = await api.deleteMessage(id);
- helper.toast(res.msg);
- if (res.code == 1) {
- this.getList();
- }
- }
- }
- });
- },
- onPullDownRefresh() {
- this.map.page = 1;
- this.getList();
- },
- onReachBottom() {
- if (this.info.last_page > this.info.current_page) {
- this.getList();
- }
- },
- navigateTo(url) {
- uni.navigateTo({
- url: url
- });
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .icon {
- font-size: 32upx;
- }
- .index {
- background-color: #f6f6f6;
- }
- .search {
- width: 100%;
- padding: 0 5%;
- background-color: #ffffff;
- display: flex;
- padding: 30upx 0;
- align-items: center;
- justify-content: center;
- .item {
- display: flex;
- width: 76%;
- align-items: center;
- background-color: #f7f7f7;
- border: 1px solid #e8e8e8;
- border-radius: 40upx;
- padding: 10upx;
- padding-left: 20upx;
- .icon {
- margin-right: 10upx;
- }
- .inupt_p {
- color: #101010;
- font-size: 28upx;
- }
- }
- text {
- width: 10%;
- text-align: center;
- }
- }
- .new {
- padding: 30upx 5%;
- background-color: #ffffff;
- margin-bottom: 20upx;
- .title {
- font-size: 32upx;
- font-weight: 800;
- line-height: 2;
- .delete {
- float: right;
- color: #999999;
- font-size: 28upx;
- }
- }
- .user {
- display: flex;
- padding: 22upx 0;
- align-items: center;
- image {
- width: 60upx;
- height: 60upx;
- border-radius: 50%;
- }
- .t1 {
- margin-left: 20upx;
- font-size: 24upx;
- color: #666666;
- }
- .t2 {
- margin-left: 20upx;
- font-size: 24upx;
- color: #999999;
- }
- }
- .info {
- font-size: 28upx;
- color: #555555;
- line-height: 48upx;
- display: -webkit-box;
- -webkit-line-clamp: 3;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-box-orient: vertical;
- }
- }
- </style>
|