From 25ebc714977470b5ed02b0ec7f30ea0615ebd89f Mon Sep 17 00:00:00 2001 From: zuoxiao <zuoxiao> Date: 星期五, 14 三月 2025 16:48:09 +0800 Subject: [PATCH] 更新应用配置,添加AppID并修改页面路由;优化取水口界面,增加定时开阀功能和相关参数设置;修复首页反馈图标及提示信息。 --- pages/home/home.wxml | 32 +++++++++++++++++++++++++++++--- 1 files changed, 29 insertions(+), 3 deletions(-) diff --git a/pages/home/home.wxml b/pages/home/home.wxml index 8120e82..923d87d 100644 --- a/pages/home/home.wxml +++ b/pages/home/home.wxml @@ -3,9 +3,9 @@ <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"> @@ -35,7 +35,7 @@ </view> <view class="center-view" bind:tap="feedBack"> <image src="/images/question.svg" /> - <text>闂鍙嶉</text> + <text>杞亴</text> </view> </view> @@ -75,4 +75,30 @@ <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> + </radio-group> + </view> + <view class="project-modal-footer"> + <button class="project-modal-btn" disabled="{{!selectedProject}}" bindtap="handleProjectConfirm">纭</button> + </view> + </view> + </view> + </view> \ No newline at end of file -- Gitblit v1.8.0