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.
27 lines
1.1 KiB
27 lines
1.1 KiB
4 years ago
|
<!--pages/topics/activity/activitySign/index.wxml-->
|
||
|
<view class="container">
|
||
|
<view class="select-view">
|
||
|
<view class="select-con">
|
||
|
<text>姓名</text>
|
||
|
<input style="margin-right:20px;text-align: right;" type="text" bindinput='changeUsername' placeholder="请输入姓名"
|
||
|
placeholder-style='text-align:right;color:#ACACAE;' value="{{username}}"/>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="select-view">
|
||
|
<view class="select-con">
|
||
|
<text>工作单位</text>
|
||
|
<input style="margin-right:20px;text-align: right;" type="text" bindinput='changeCompany' placeholder="请输入工作单位"
|
||
|
placeholder-style='text-align:right;color:#ACACAE;' value="{{company}}"/>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="select-view">
|
||
|
<view class="select-con">
|
||
|
<text>联系电话</text>
|
||
|
<input style="margin-right:20px;text-align: right;" type="text" bindinput='changePhone' placeholder="请输入联系电话"
|
||
|
placeholder-style='text-align:right;color:#ACACAE;' value="{{phone}}"/>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="btnView">
|
||
|
<e-ibutton title="提交" bind:onTap="submit" />
|
||
|
</view>
|