搜索:判断某个成员是不是禁言

This commit is contained in:
cbb
2026-02-12 17:51:42 +08:00
parent a040b56c74
commit 2191f46317
16 changed files with 388 additions and 212 deletions

View File

@@ -2,6 +2,7 @@
import { navigateTo } from '@/utils/router'
import { ref } from 'vue'
import { useUI } from '@/utils/use-ui'
import { getLiveRoomList } from '../../api/tui-kit'
const { showDialog } = useUI()
@@ -51,6 +52,12 @@
return
}
if (item === 'liveStream') {
getLiveRoomList({
pageNum: 1,
pageSize: 15
})
return
let url = ''
// #ifdef APP-PLUS
url = '/pages/discover/livelist/index'

View File

@@ -60,13 +60,13 @@
>
第三方客服
</button>
<button
<!-- <button
v-if="customerData?.imUserId"
class="btn"
@click="handleSwitchConversation"
>
APP客服
</button>
</button> -->
</view>
</view>
</template>

View File

@@ -21,7 +21,7 @@
{ name: '拼单获得', id: '1', state: '+', color: '#2ecc71' },
{ name: '消费', id: '2', state: '-', color: '#e74c3c' },
{ name: '退款', id: '3', state: '-', color: '#f39c12' },
{ name: '系统赠送', id: '4', state: '+', color: '#2ecc71' },
{ name: '推荐奖励', id: '4', state: '+', color: '#2ecc71' },
{ name: '系统扣除', id: '5', state: '-', color: '#e74c3c' },
{ name: '签到', id: '6', state: '+', color: '#2ecc71' },
{ name: '提现', id: '7', state: '-', color: '#e74c3c' },

View File

@@ -58,7 +58,11 @@
{{
viewData.status === 1
? viewData.commissionAmount
: (viewData.commissionRate / 100) * viewData.groupPrice
: Math.trunc(
(viewData.commissionRate / 100) *
viewData.groupPrice *
100
) / 100
}}
</text>
<text>积分</text>