市北人才赋能平台 --小程序端
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.
 

34 lines
1.4 KiB

<!--pages/topics/activity/activitySign/index.wxml-->
<view class="container">
<view class="select-view required-star">
<view class="select-con">
<text>姓名</text>
<input style="text-align: right;" type="text" bindinput='changeUsername' placeholder="请输入真实姓名(仅用于报名统计)"
placeholder-style='text-align:right;color:#ACACAE;' value="{{username}}"/>
</view>
</view>
<view class="select-view required-star">
<view class="select-con">
<text>工作单位</text>
<input style="text-align: right;" type="text" bindinput='changeCompany' placeholder="请输入工作单位"
placeholder-style='text-align:right;color:#ACACAE;' value="{{company}}"/>
</view>
</view>
<view class="select-view required-star">
<view class="select-con">
<text>联系电话</text>
<input style="text-align: right;" type="text" bindinput='changePhone' placeholder="请输入联系电话"
placeholder-style='text-align:right;color:#ACACAE;' value="{{phone}}"/>
</view>
</view>
<view class="select-view required-star">
<view class="select-con" >
<text>备注</text>
<textarea style="text-align: right;width: 50%;" placeholder="请输入备注"
placeholder-style='text-align:right;color:#ACACAE' bindinput='changeRemark' value="{{remark}}"></textarea>
</view>
</view>
</view>
<view class="btnView">
<e-ibutton title="提交" bind:onTap="submit" />
</view>