| 1234567891011121314151617181920212223242526272829303132333435 |
- <!-- <import src="../hot/stars.wxml" />
- <import src="../image/item-image.wxml" /> -->
- <template name="baseSettingTemplate">
- <view style="height:100%;width:100%; ">
- <view class="view-block">
- <view>RTU编码:</view>
- <view class="myinput">
- <input type='text' auto-focus value='{{baseSetting.newRtuCode}}' bindinput="bindNewRtuCodeInput"></input>
- </view>
- <view>中心站IP1:</view>
- <view class="myinput ip-group" style="margin-top:10rpx">
- <input class="ip" type='text' bindinput='bindIp1Input' value='{{baseSetting.ip1}}'></input>
- <input class="port" type='text' bindinput='bindIp1portInput' value='{{baseSetting.ip1port}}'></input>
- </view>
- <view>中心站IP2:</view>
- <view class="myinput ip-group" style="margin-top:10rpx">
- <input class="ip" type='text' bindinput='bindIp2Input' value='{{baseSetting.ip2}}'></input>
- <input class="port" type='text' bindinput='bindIp2portInput' value='{{baseSetting.ip2port}}'></input>
- </view>
- <view>中心站IP3:</view>
- <view class="myinput ip-group" style="margin-top:10rpx">
- <input class="ip" type='text' bindinput='bindIp3Input' value='{{baseSetting.ip3}}'></input>
- <input class="port" type='text' bindinput='bindIp3portInput' value='{{baseSetting.ip3port}}'></input>
- </view>
- <view>中心站IP4:</view>
- <view class="myinput ip-group" style="margin-top:10rpx">
- <input class="ip" type='text' bindinput='bindIp4Input' value='{{baseSetting.ip4}}'></input>
- <input class="port" type='text' bindinput='bindIp4portInput' value='{{baseSetting.ip4port}}'></input>
- </view>
- </view>
- <view class="submit-btn">
- <button type="primary" bindtap="submitBasesetting">提交</button>
- </view>
- </view>
- </template>
|