123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360 |
- <template>
- <view class="box">
- <view class="search-box">
- <view class="dropdown-wrapper">
- <picker
- @change="bindPickerChange"
- :value="selectValue"
- :range="option"
- >
- <view class="picker-content">
- <text>{{ option[selectValue] }}</text>
- </view>
- </picker>
- </view>
- <view class="search-input">
- <input
- type="text"
- placeholder="输入设备全称或简称"
- v-model="keyWord"
- placeholder-class="placeholder-style"
- />
- </view>
- <view class="search-btn" @click="queryList"> 搜索 </view>
- </view>
- <view class="cardList">
- <view class="card" v-for="item in devs" :key="item.clientId">
- <view class="deviceName" @click="gotoPath(item)">
- <text>{{ formatDevName(item.devName) }}</text>
- <image src="../../static/arrTwo.png" mode="" />
- </view>
- <view v-if="item.online == 1">
- <view class="online" v-if="item.judge">
- <view class="cardInfo">当前有人</view>
- <view class="wcTimes" v-if="item.wcTimes"
- >今日卫生间使用频率{{ item.wcTimes }}次</view
- >
- </view>
- <view class="cardTwo" v-else>
- <view class="cardError" v-if="item.lastTargetTime"
- >当前无人</view
- >
- <view class="endTime" v-if="item.lastTargetTime"
- >离开时间
- {{ forMateTime(item.lastTargetTime) }}</view
- >
- <view class="cardError" v-else>当前无人</view>
- </view>
- </view>
- <view v-else style="margin-top: 18rpx">
- <text style="color: #8b939f; font-size: 24rpx"
- >设备离线</text
- >
- </view>
- <view class="cardImage" v-if="item.online == 0">
- <image src="../../static/offline_small.png" mode="" />
- </view>
- <view class="cardImage" v-else>
- <image src="../../static/ln_small.png" mode="" />
- </view>
- </view>
- <alarModel v-if="isInitAlarm" />
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- keyWord: "",
- option: ["全部", "离线", "在线", "报警"],
- selectValue: 0,
- devs: [],
- isInitAlarm: false,
- };
- },
- methods: {
- onClickLeft() {
- uni.navigateBack({
- delta: 0,
- });
- },
- bindPickerChange(e) {
- this.selectValue = e.detail.value;
- this.queryList();
- },
- gotoPath(item) {
- uni.setStorageSync("devIdDetail", item.devId);
- uni.setStorageSync("clientIDetail", item.clientId);
- uni.navigateTo({
- url:
- "/pagesA/deviceDetail/deviceDetail?devItem=" +
- JSON.stringify(item),
- });
- },
- forMateTime(inputTime) {
- if (!inputTime) return "";
- const [datePart, timePart] = inputTime.split(" ");
- const [year, month, day] = datePart.split("-");
- const [hours, minutes] = timePart.split(":");
- return `${parseInt(month)}月${parseInt(day)}日${hours}:${minutes}`;
- },
- queryList() {
- uni.showLoading({
- title: "查询中...",
- });
- let now = new Date();
- let status = "";
- if (this.selectValue == 0) {
- status = null;
- } else if (this.selectValue == 1) {
- status = "0";
- } else if (this.selectValue == 2) {
- status = "1";
- } else if (this.selectValue == 3) {
- status = "2";
- }
- this.$http
- .post("wap/device/deviceList", {
- userId: uni.getStorageSync("userId"),
- keyWord: this.keyWord,
- status: status,
- })
- .then((res) => {
- console.log("设备列表", res);
- if (res.data.code == 200) {
- let devs = res.data.data;
- for (let i = 0; i < devs.length; i++) {
- if (
- devs[i].installPosition == "Toilet" &&
- devs[i].stayTimes?.length > 0
- ) {
- devs[i].wcTimes = devs[i].stayTimes.length;
- } else {
- devs[i].wcTimes = 0;
- }
- if (devs[i].lastTargetTime) {
- const signalTimeStr = devs[
- i
- ].lastTargetTime.replace(/-/g, "/");
- const signalTime = new Date(
- signalTimeStr
- ).getTime();
- if (isNaN(signalTime)) {
- devs[i].judge = false;
- } else {
- const currentTime = Date.now();
- const diff = Math.abs(
- currentTime - signalTime
- );
- devs[i].judge = diff <= 5000; // 10秒内为 true
- }
- }
- }
- this.devs = devs;
- }
- uni.hideLoading();
- });
- },
- formatDevName(name) {
- return typeof name === "string" && name.length > 6
- ? name.slice(0, 6) + "..."
- : name;
- },
- onPullDownRefresh() {
- uni.showLoading({
- title: "加载中...",
- });
- this.queryList();
- setTimeout(() => {
- uni.hideLoading();
- uni.stopPullDownRefresh();
- }, 2000);
- },
- },
- onLoad() {},
- onShow() {
- this.isInitAlarm = true;
- this.queryList();
- },
- onHide() {
- this.isInitAlarm = false;
- },
- onUnload() {
- // this.isInitAlarm = false;
- },
- onPullDownRefresh() {
- uni.showNavigationBarLoading();
- this.queryList();
- setTimeout(() => {
- uni.hideLoading();
- uni.hideNavigationBarLoading();
- uni.stopPullDownRefresh();
- }, 2000);
- },
- };
- </script>
- <style lang="less" scoped>
- .box {
- padding: 10rpx 18rpx;
- overflow: scroll;
- width: 100vw;
- height: 100vh;
- background: linear-gradient(180deg, #faede2 0%, #f4f4f4 100%);
- box-sizing: border-box;
- .search-box {
- display: flex;
- align-items: center;
- width: 100%;
- height: 80rpx;
- background: #fff;
- border-radius: 40rpx;
- padding: 0 20rpx;
- box-sizing: border-box;
- box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.05);
- .dropdown-wrapper {
- padding: 0 10rpx;
- width: 160rpx;
- height: 100%;
- display: flex;
- align-items: center;
- .picker-content {
- display: flex;
- align-items: center;
- font-size: 28rpx;
- color: #333;
- }
- }
- .search-input {
- flex: 1;
- height: 100%;
- padding: 0 20rpx;
- input {
- width: 100%;
- height: 100%;
- font-size: 28rpx;
- }
- .placeholder-style {
- color: #999;
- font-size: 28rpx;
- }
- }
- .search-btn {
- width: 120rpx;
- height: 60rpx;
- background: chocolate;
- color: white;
- border-radius: 30rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 28rpx;
- margin-left: 10rpx;
- }
- }
- .list-box {
- margin-top: 30rpx;
- }
- .cardList {
- display: flex;
- flex-wrap: wrap;
- align-items: center;
- justify-content: space-between;
- .card {
- position: relative;
- width: 350rpx;
- height: 305rpx;
- margin-top: 18rpx;
- background: #ffffff;
- border: 2.5rpx solid;
- border-color: #ffffff;
- border-radius: 37rpx;
- padding: 37rpx 25rpx;
- box-shadow: 0rpx 2.34rpx 14.06rpx rgba(12, 26, 52, 0.03);
- box-sizing: border-box;
- .deviceName {
- width: 300rpx;
- display: flex;
- align-items: center;
- overflow: hidden;
- text {
- width: 300rpx;
- color: #111111;
- font-size: 32rpx;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- image {
- width: 10rpx;
- height: 20rpx;
- margin-left: 15rpx;
- }
- }
- .cardInfo {
- margin-top: 18rpx;
- color: #0db886;
- font-size: 24rpx;
- }
- .wcTimes {
- margin-top: 18rpx;
- color: chocolate;
- font-size: 24rpx;
- }
- .cardTwo {
- margin-top: 18rpx;
- .cardError {
- color: #8b939f;
- font-size: 24rpx;
- }
- .endTime {
- margin-top: 18rpx;
- color: chocolate;
- font-size: 24rpx;
- }
- }
- .cardTime {
- margin-top: 18rpx;
- color: #999999;
- font-size: 24rpx;
- }
- .cardImage {
- position: absolute;
- bottom: 10rpx;
- left: 20rpx;
- image {
- width: 86rpx;
- height: 88rpx;
- }
- }
- }
- }
- }
- </style>
|