123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- <template>
- <view>
- <view class="white">
- <view class="title">
- <text class="param">参数修正</text>
- <view class="tiao"></view>
- </view>
- <view class="setmenu">
- <view class="setItem">
- <view class="text">
- <text>排风温度修正</text>
- </view>
- <view class="input">
- <input style="margin-left: 20rpx;" placeholder="请输入" />
- <view class="danwei">
- <text style="margin-left: 10rpx;">℃</text>
- </view>
- </view>
- </view>
- <view class="setItem">
- <view class="text">
- <text>排风湿度修正</text>
- </view>
- <view class="input">
- <input style="margin-left: 20rpx;" placeholder="请输入" />
- <view class="danwei"> <text style="margin-left: 14rpx;">%</text></view>
- </view>
- </view>
- <view class="setItem">
- <view class="text">
- <text>加热比例</text>
- </view>
- <view class="input">
- <input style="margin-left: 20rpx;" placeholder="请输入" />
- </view>
- </view>
- <view class="setItem">
- <view class="text">
- <text>加热积分</text>
- </view>
- <view class="input">
- <input style="margin-left: 20rpx;" placeholder="请输入" />
- </view>
- </view>
- <view class="setItem">
- <view class="text">
- <text>降温比例</text>
- </view>
- <view class="input">
- <input style="margin-left: 20rpx;" placeholder="请输入" />
- </view>
- </view>
- <view class="setItem">
- <view class="text">
- <text>降温积分</text>
- </view>
- <view class="input">
- <input style="margin-left: 20rpx;" placeholder="请输入" />
- </view>
- </view>
- <view class="setItem">
- <view class="text">
- <text>加湿比例</text>
- </view>
- <view class="input">
- <input style="margin-left: 20rpx;" placeholder="请输入" />
- </view>
- </view>
- <view class="setItem">
- <view class="text">
- <text>加湿积分</text>
- </view>
- <view class="input">
- <input style="margin-left: 20rpx;" placeholder="请输入" />
- </view>
- </view>
- <view class="setItem">
- <view class="text">
- <text>除湿比例</text>
- </view>
- <view class="input">
- <input style="margin-left: 20rpx;" placeholder="请输入" />
- </view>
- </view>
- <view class="setItem">
- <view class="text">
- <text>除湿积分</text>
- </view>
- <view class="input">
- <input style="margin-left: 20rpx;" placeholder="请输入" />
- </view>
- </view>
- </view>
- <view class="anniu">
- <image class="anniu" src="../../static/设备菜单/前往列表@2x.png" @tap="back"></image>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- methods: {
- back() {
- uni.navigateTo({
- url: '/pages/device/deviceInfo/deviceInfo'
- })
- }
- }
- }
- </script>
- <style>
- .text {
- margin-top: 40rpx;
- margin-bottom: 16rpx;
- color: #444546;
- font-size: 26rpx;
- }
- .input {
- width: 320rpx;
- height: 98rpx;
- background-color: #eaeaea;
- display: flex;
- flex-direction: row;
- align-items: center;
- border-radius: 6rpx;
- border: 1px solid #eaeaea;
- }
- .danwei {
- width: 78rpx;
- height: 98rpx;
- background-color: white;
- display: flex;
- align-items: center;
- }
- .setmenu {
- display: flex;
- flex-wrap: wrap;
- }
- .setItem {
- margin-left: 20rpx;
- }
- .white {
- width: 702rpx;
- height: 1200rpx;
- margin-left: 24rpx;
- margin-top: 24rpx;
- border-radius: 10rpx;
- background-color: white;
- }
- .title {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .tiao {
- width: 60px;
- height: 3px;
- margin-top: 20rpx;
- background: #007AFF;
- }
- .param {
- font-size: 38rpx;
- font-weight: 550;
- margin-top: 40rpx;
- }
- .anniu {
- width: 116rpx;
- height: 116rpx;
- float: right;
- margin-top: 20rpx;
- }
- </style>
|