Skip to content

Commit 165e9c5

Browse files
committed
...
1 parent 5cfdce9 commit 165e9c5

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/components/page/friends/FriendsInRow.vue

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
返回
99
</router-link>
1010
</P>
11-
<!--<el-button @click.native.prevent="handlePreStep" >返回</el-button>-->
1211
<!--列表-->
1312
<el-table :data="friendsRecords" highlight-current-row v-loading="listLoading"
1413
style="width: 100%;">
@@ -59,7 +58,6 @@
5958
// 时间处理
6059
import moment from 'moment';
6160
import config from '../../../config';
62-
// import {getFriendsInRow} from '../../../api';
6361
import {getFriendsInRow} from '../../../api/users';
6462
6563
export default {
@@ -90,7 +88,7 @@
9088
methods: {
9189
formatBeijingDate(row) {
9290
93-
let beijingDate = ''
91+
let beijingDate = '';
9492
if (row._created) {
9593
beijingDate = moment(row._created).add(8, 'hours').format('YYYY-MM-DD HH:mm:ss')
9694
}
@@ -134,12 +132,12 @@
134132
// 获取分组内的好友
135133
queryFriendsInRow() {
136134
137-
let ids = ''
135+
let ids = '';
138136
139137
if (this.friendIds) {
140138
141139
for (let i = 0; i < this.friendIds.length; i++) {
142-
ids += '"' + this.friendIds[i] + '"'
140+
ids += '"' + this.friendIds[i] + '"';
143141
144142
if (i < this.friendIds.length - 1) {
145143
ids += ","

0 commit comments

Comments
 (0)