You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bocai_supplyChain/subPage/chat/index.wxml

36 lines
1.3 KiB
Plaintext

<view class="p-home-chat g_h_all g_flex_column_between">
<view class="chat-content g_flex_column_end g_flex_1">
具体内容
</view>
<view class="chat-operate g_flex_none">
<view class="m-input g_flex_row_between">
<!-- 左 -->
<view class="g_flex_none g_flex_column_center"
data-type="{{eventType}}"
bindtap="handleEvent"
>
<view class="i-box g_flex_row_end" wx:if="{{eventType == 'input'}}">
<i class="iconfont icon-huatongyuyin icon"></i>
</view>
<view class="i-box g_flex_row_end" wx:if="{{eventType == 'voice'}}">
<i class="iconfont icon-weixinjianpan2 icon"
style="font-size:28px;"
></i>
</view>
</view>
<!-- 中 -->
<view class="g_flex_1 g_flex_column_center">
<view class="input-box" wx:if="{{eventType == 'input'}}">
<input type="text" placeholder="请输入内容" style="width: 100%;" />
</view>
<view class="voice-box" wx:if="{{eventType == 'voice'}}">
按住 说话
</view>
</view>
<!-- 右 -->
<view class="g_flex_none g_flex_column_center right-box g_text_l">
<i class="iconfont icon-fasong1 icon"></i>
</view>
</view>
</view>
</view>