123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- <!-- pages/Calculation/Calculation.wxml -->
- <view class="page-body">
- <view class="white-box">
- <view class="input-row">
- <view class="page-section-title">土壤有机质(g/kg) OM:</view>
- <input
- class="input-field"
- type="text"
- placeholder="0~30"
- value="{{OM}}"
- bindinput="onOMChange"
- />
- </view>
- </view>
- </view>
- <view class="page-body">
- <view class="white-box">
- <view class="input-row">
- <view class="page-section-title">土壤粘粒(g/kg) CL:</view>
- <input
- class="input-field"
- type="text"
- placeholder="50~400"
- value="{{CL}}"
- bindinput="onCLChange"
- />
- </view>
- </view>
- </view>
- <view class="page-body">
- <view class="white-box">
- <view class="input-row">
- <view class="page-section-title">阳离子交换量(cmol/kg) CEC:</view>
- <input
- class="input-field"
- type="text"
- placeholder="0~15"
- value="{{CEC}}"
- bindinput="onCECChange"
- />
- </view>
- </view>
- </view>
- <view class="page-body">
- <view class="white-box">
- <view class="input-row">
- <view class="page-section-title">交换性氢(cmol/kg) H+:</view>
- <input
- class="input-field"
- type="text"
- placeholder="0~1"
- value="{{H}}"
- bindinput="onHChange"
- />
- </view>
- </view>
- </view>
- <view class="page-body">
- <view class="white-box">
- <view class="input-row">
- <view class="page-section-title">水解氮(g/kg) N:</view>
- <input
- class="input-field"
- type="text"
- placeholder="0~0.2"
- value="{{HN}}"
- bindinput="onHNChange"
- />
- </view>
- </view>
- </view>
- <view class="page-body">
- <view class="white-box">
- <view class="input-row">
- <view class="page-section-title">交换性铝(cmol/kg) Al3+:</view>
- <input
- class="input-field"
- type="text"
- placeholder="0~6"
- value="{{Al}}"
- bindinput="onAlChange"
- />
- </view>
- </view>
- </view>
- <!-- 弹窗部分 -->
- <view wx:if="{{showResultPopup}}" class="modal-overlay">
- <view class="modal">
- <view class="modal-header">
- <text>ΔPH值</text>
- <button class="close-btn" bindtap="closePopup">×</button>
- </view>
- <view class="modal-body">
- <text>{{result}}</text>
- </view>
- </view>
- </view>
- <view class="green-btn">
- <button class="btn" bindtap="calculate">计算</button>
- </view>
|