You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
874 B
23 lines
874 B
<!--miniprogram/pages/mine/mine.wxml-->
|
|
<view class="userinfo-avatar">
|
|
<open-data type="userAvatarUrl"></open-data>
|
|
</view>
|
|
<open-data type="userNickName" lang="zh_CN"></open-data>
|
|
<text>我的配音作品:</text>
|
|
<view style="height:30px;">
|
|
<text style="font-weight:bold;font-size:15px;padding-left:10px">视频配音</text>
|
|
</view>
|
|
<view>
|
|
<block wx:for="{{video}}" data-item="item">
|
|
<image bindtap="bindlookmyvedio" data-src="{{item}}" src="{{item}}" style="width: 200rpx; height: 80px;"></image>
|
|
</block>
|
|
</view>
|
|
<view style="height:30px;">
|
|
<text style="font-weight:bold;font-size:15px;padding-left:10px">文本配音</text>
|
|
</view>
|
|
<view>
|
|
<block wx:for="{{txt}}" data-item="item">
|
|
<image bindtap="bindlookmytxt" data-src="{{item}}" src="{{item}}" style="width: 200rpx; height: 80px;"></image>
|
|
</block>
|
|
</view>
|