1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <view>
- <container title="小程序-应用通信{{number || ''}}">
- <view slot="headerRight">
- <icon onTap="reset" type="RedoOutline" style="font-size: 25px; margin-right: 15px" />
- <icon onTap="close" type="CloseCircleOutline" style="font-size: 25px; margin-right: 15px" />
- </view>
- <view class="content">
- <view class="container-btn" onTap="doEvent">
- <view class="container-btn-text">
- {{name || "调用事件"}}
- </view>
- <view class="container-btn-tips">
- {{tips || ""}}
- </view>
- <view class="container-btn-subtext">
- HHCommunication
- </view>
- </view>
- <!-- <ant-button type="primary" subText="HHCommunication" onTap="doEvent">
- {{name || "调用事件"}}
- </ant-button> -->
- <view class="result">
- <view style="font-size: 0.18rem;line-height: 0.5rem;height: 0.5rem;">入参:</view>
- <textarea
- placeholder="请编辑入参"
- class="form-textarea"
- value="{{params}}"
- auto-height
- style="width:100%"
- onInput="handleChange"
- maxlength="-1"
- >
- </textarea>
- </view>
- <view a:if="{{ eventResult }}" class="result" style="font-size: 0.18rem;">
- <view style="font-size: 0.18rem;line-height: 0.5rem;height: 0.5rem;">结果:</view>
- {{eventResult}}
- </view>
- </view>
- </container>
- </view>
|