搜索:判断某个成员是不是禁言
This commit is contained in:
@@ -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'
|
||||
|
||||
@@ -60,13 +60,13 @@
|
||||
>
|
||||
第三方客服
|
||||
</button>
|
||||
<button
|
||||
<!-- <button
|
||||
v-if="customerData?.imUserId"
|
||||
class="btn"
|
||||
@click="handleSwitchConversation"
|
||||
>
|
||||
APP客服
|
||||
</button>
|
||||
</button> -->
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
@@ -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' },
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user