7 Commits
dev ... master

Author SHA1 Message Date
唐明明
9619d8f84d 合并工作台 2023-07-06 10:46:00 +08:00
唐明明
cfb5ff334d 处理冲突 2023-07-06 10:43:14 +08:00
唐明明
be73fea618 解决冲突 2023-07-06 10:39:57 +08:00
唐明明
cf6df19182 Merge pull request '1.4.6' (#5) from dev into master
Reviewed-on: https://git.yuzhankeji.cn/TmOct5/dou_fire/pulls/5
2023-06-14 10:28:23 +08:00
84809068c9 .. 2023-05-24 16:29:05 +08:00
唐明明
67a2f91b36 同步 2023-04-26 13:44:35 +08:00
唐明明
ba89cc726f 调整团队卡片点击区域 2023-04-25 16:27:29 +08:00
2 changed files with 3 additions and 2 deletions

View File

@@ -61,6 +61,7 @@
this.$store.commit('setToken', res.token_type + ' ' + res.access_token);
this.onBack()
}).catch(err => {
console.log(err)
uni.showToast({
title: err.message,
icon : 'none'

View File

@@ -9,7 +9,7 @@
</view>
<block v-if="users.length > 0">
<view class="team-item" v-for="(item, index) in users" :key="index" @click="onCallPhone(item.real_username)">
<view class="team-item" v-for="(item, index) in users" :key="index">
<u-avatar :src="item.avatar" size="48"></u-avatar>
<view class="team-content">
<view class="nowrap name">{{item.nickname}}</view>
@@ -23,7 +23,7 @@
<view class="nowrap submit">联系电话{{item.username}}</view>
<view class="nowrap submit">注册时间{{item.created_at}}</view>
</view>
<view class="mobile">
<view class="mobile" @click="onCallPhone(item.real_username)">
<uni-icons class="mobile-icon" type="phone-filled" size="18" color="white"></uni-icons>
</view>
</view>