| | |
| | | <!--pages/home/home.wxml--> |
| | | <view class="base-wrapper"> |
| | | |
| | | <view class="head-wrapper"> |
| | | <view class="head-top"> |
| | | <t-avatar class="avatar-example" image="{{image}}" size="120rpx" /> |
| | | <t-avatar class="avatar-example" image="{{image}}" size="120rpx" bind:tap="handleAvatarTap" /> |
| | | <view class="head-text-wrapper"> |
| | | <text>{{userName}}</text> |
| | | <text bind:tap="wxLogin">{{userName}}</text> |
| | | <text class="head-bottom">{{userPhone}}</text> |
| | | </view> |
| | | <view class="head-button-wrapper"> |
| | | <text class="unbind">解绑</text> |
| | | <text class="head-bottom">联系客服</text> |
| | | <text class="unbind" bind:tap="unbind">解绑</text> |
| | | <text class="head-bottom" bind:tap="feedBack">联系客服</text> |
| | | </view> |
| | | <view class="scen-view" bind:tap="scenCode"> |
| | | <image class="scen-code" src="/images/scen_code.svg" /> |
| | | <text>扫码开阀</text> |
| | | </view> |
| | | |
| | | </view> |
| | | </view> |
| | | |
| | |
| | | <image src="/images/record.svg" /> |
| | | <text>开关阀记录</text> |
| | | </view> |
| | | <view class="center-view" bind:tap="feedBack"> |
| | | <image src="/images/question.svg" /> |
| | | <text>问题反馈</text> |
| | | <view class="center-view" bind:tap="irrigation"> |
| | | <image src="/images/irrigation.svg" /> |
| | | <text>轮灌</text> |
| | | </view> |
| | | </view> |
| | | |
| | |
| | | <text class="bottom-title-text">快速关阀</text> |
| | | <text class="refresh-button" bind:tap="startPullDownRefresh">刷新</text> |
| | | </view> |
| | | <view class="divider"></view> |
| | | <!-- refresher-enabled="true" refresher-threshold="50" --> |
| | | <scroll-view class="scroll-view" scroll-x="false" scroll-y="true" refresher-enabled="{{isRefreshing==false?true:false}}" refresher-threshold="50" bindrefresherrefresh="onPullDownRefresh" refresher-triggered="{{isWXRefreshing}}"> |
| | | <view wx:if="{{isRefreshing}}" class="refresh-view"> |
| | |
| | | <view class="dot"></view> |
| | | </view> |
| | | <view class="scroll-bg"> |
| | | <view wx:if="{{listData.length > 0}}" class="list-item" wx:for="{{listData}}" wx:for-item="item" wx:for-index="index"> |
| | | <view wx:if="{{listData.length > 0}}" class="list-item" wx:for="{{listData}}" wx:key="index"> |
| | | <view class="item-left"> |
| | | <!-- <image class="item-img" src="/images/pipeline.svg" /> --> |
| | | <text>{{item.intakeNum}}</text> |
| | | <image class="item-img" src="{{item.isOnLine ? '/images/wifi_no.svg' : '/images/wifi_off.svg'}}" /> |
| | | </view> |
| | | <view> |
| | | <t-switch wx:if="{{item.isOnLine }}" class="switch" data-item="{{item}}" bindchange="handleChange" value="{{true}}" label="{{['开', '关']}}" slot="note" /> |
| | | <!-- <t-switch class="switch" data-item="{{item}}" bindchange="handleChange" value="{{true}}" label="{{['开', '关']}}" slot="note" /> --> |
| | | <text class="item-button" bind:tap="handleChange" data-item="{{item}}">关阀</text> |
| | | </view> |
| | | </view> |
| | | </view> |
| | | <view wx:if="{{listData.length === 0}}" class="noMore-View"> |
| | | <view wx:if="{{listData.length === 0}}" class="noMore-View-home"> |
| | | <image class="noMore-img" src="/images/no_more.svg" /> |
| | | <text class="noMore-text">没有数据</text> |
| | | <text class="noMore-text">没有开泵记录</text> |
| | | </view> |
| | | </scroll-view> |
| | | <t-dialog class="t-dialog" visible="{{showConfirm}}" content="确认关闭{{waterIntakeName}}吗?" confirm-btn="{{ { content: '确认', variant: 'base', theme: 'danger' } }}" close-on-overlay-click="false" cancel-btn="取消" bind:confirm="confirmDialog" bind:cancel="closeDialog" /> |
| | | |
| | | <t-dialog class="dialog" visible="{{showConfirm}}" content="确认关闭{{waterIntakeName}}吗?" confirm-btn="{{ { content: '确认', variant: 'base', theme: 'danger' } }}" close-on-overlay-click="false" cancel-btn="取消" bind:confirm="confirmDialog" bind:cancel="cancelDialog" /> |
| | | <t-dialog class="error-dialog" title="{{errorDialogTitle}}" visible="{{showErrorDialog}}" content="{{errorData}}" confirm-btn="{{ confirmBtn }}" bind:confirm="closeDialog" /> |
| | | <t-dialog visible="{{showForceConfirm}}" content="当前虚拟卡被占用,是否强制开阀?" confirm-btn="{{ { content: '强制开阀', variant: 'base', theme: 'danger' } }}" cancel-btn="取消" bind:confirm="confirmForceDialog" bind:cancel="cancelDialog" /> |
| | | |
| | | <!-- 使用微信原生弹窗组件 --> |
| | | <view class="project-modal" wx:if="{{showProjectDialog}}"> |
| | | <view class="project-modal-mask"></view> |
| | | <view class="project-modal-content"> |
| | | <view class="project-modal-header"> |
| | | <text class="project-modal-title">请选择项目</text> |
| | | </view> |
| | | <view class="project-modal-body"> |
| | | |
| | | <radio-group class="project-radio-group" bindchange="onProjectChange"> |
| | | <label class="project-radio {{selectedProject === 'JYG' ? 'project-radio-selected' : ''}}"> |
| | | <radio value="JYG" checked="{{selectedProject === 'JYG'}}" color="#1890FF" /> |
| | | <text>嘉峪关项目</text> |
| | | </label> |
| | | <label class="project-radio {{selectedProject === 'MQ' ? 'project-radio-selected' : ''}}"> |
| | | <radio value="MQ" checked="{{selectedProject === 'MQ'}}" color="#1890FF" /> |
| | | <text>民勤项目</text> |
| | | </label> |
| | | <label class="project-radio {{selectedProject === 'TEST' ? 'project-radio-selected' : ''}}"> |
| | | <radio value="TEST" checked="{{selectedProject === 'TEST'}}" color="#1890FF" /> |
| | | <text>测试项目</text> |
| | | </label> |
| | | </radio-group> |
| | | </view> |
| | | <view class="project-modal-footer"> |
| | | <button class="project-modal-btn" disabled="{{!selectedProject}}" bindtap="handleProjectConfirm">确认</button> |
| | | </view> |
| | | </view> |
| | | </view> |
| | | <t-dialog class="dialog" title="通知结果" visible="{{showTipDialog}}" content="{{tipData}}" confirm-btn="{{ confirmBtn }}" bind:confirm="cancelDialog" /> |
| | | </view> |