123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398 |
- <!-- 远程开门 -->
- <template>
- <view id="empowerOpen">
- <view class="header">
- <view class="header-n">
- <input class="header-l" type="text" @change="subNameChange()" v-model="getData.searchValue" placeholder="实验室名称">
- <view class="header-r" v-if="getData.searchValue" @click="clearSearch()">
- <img :src="imagesUrl('commonality/clear.png')">
- </view>
- </view>
- </view>
- <scroll-view scroll-y @scrolltolower="scrollGet" class="list">
- <view class="list-li" v-for="(item,index) in dataList">
- <view class="list-li-l">{{item.subName}}({{item.roomNum}})</view>
- <view class="list-li-r" @click="openButton(item)">
- <view class="null-p"></view>
- <view>开门</view>
- <view class="null-p"></view>
- </view>
- </view>
- <view class="get-data-null-p" v-if="getDataType">- 没有更多数据 -</view>
- <view class="get-data-null-p" v-else="getDataType">- 滑动加载更多 -</view>
- </scroll-view>
- <view class="success" v-if="successVisible">
- <view class="null-box" @click="closeTip()"></view>
- <view class="panel">
- <img class="panel-t" v-if="authorizeStatus==1||authorizeStatus==3" :src="imagesUrl('commonality/icon_kcxq_cg.png')"/>
- <img class="panel-t" v-if="authorizeStatus==2" :src="imagesUrl('commonality/icon_kcxq_sb.png')"/>
- <view class="panel-m">{{authorizeStatus==1?'开门成功':(authorizeStatus==2?'开门失败':(authorizeStatus==3?'开门中请稍后':''))}}
- </view>
- <view class="panel-b">({{count}}S)</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- config
- } from '@/api/request/config.js'
- import {
- systemSubjectGetAppSubject,
- laboratoryApplyRemoteOpenLock,
- applyRemoteOpenLockConfirm
- } from '@/pages_manage/api/index.js'
- export default {
- components: {
- },
- data() {
- return {
- pageType: 1,
- baseUrl: config.base_url,
- newData: {
- },
- addForm: {
- },
- dataList: [],
- authorizeStatus: 2, //1成功 2失败
- successVisible: false,
- timer: null,
- count: '',
- total: 0,
- getData: {
- page: 1,
- pageSize: 20,
- searchValue: '',
- adminId: uni.getStorageSync('userId'),
- },
- getDataType: false,
- msgId:'',
- }
- },
- onLoad(option) {
- },
- onShow() {
- },
- mounted() {
- this.systemSubjectGetAppSubject();
- },
- methods: {
- openButton(row) {
- let self = this;
- uni.showModal({
- content: '确定对 ' + row.subName + ' 进行远程开门操作?',
- cancelColor: "#999",
- confirmColor: "#0183FA",
- success: function(res) {
- if (res.confirm) {
- self.openClick(row);
- }
- }
- });
- },
- //开门
- async openClick(row) {
- let self = this;
- let obj = {
- labId: row.subId,
- }
- const {
- data
- } = await laboratoryApplyRemoteOpenLock(obj);
- if (data.code == 200) {
- if (data.data[0]) {
- this.$set(this, 'msgId', data.data[0])
- this.$set(this, 'authorizeStatus', 3)
- this.$set(this, 'successVisible', true)
- this.getMsg();
- }else{
- this.$set(this, 'authorizeStatus', 2)
- this.$set(this, 'successVisible', true)
- this.getCode();
- }
- }
- },
- async applyRemoteOpenLockConfirm() {
- let self = this;
- let obj = {
- messageId: this.msgId,
- }
- const {
- data
- } = await applyRemoteOpenLockConfirm(obj);
- if (data.code == 200) {
- if (data.data) {
- this.$set(this, 'authorizeStatus', 1)
- this.$set(this, 'successVisible', true)
- this.getCode();
- } else {
- this.$set(this, 'authorizeStatus', 2)
- this.$set(this, 'successVisible', true)
- this.getCode();
- }
- this.$set(this, 'msgId','')
- }
- },
- //滚动加载事件
- scrollGet() {
- let self = this;
- if (self.total / self.getData.pageSize <= self.getData.page) {
- this.$set(this, 'getDataType', true);
- } else {
- this.getData.page += 1;
- this.$nextTick(() => {
- this.systemSubjectGetAppSubject();
- })
- }
- },
- //获取实验室
- async systemSubjectGetAppSubject() {
- let self = this;
- const {
- data
- } = await systemSubjectGetAppSubject(this.getData);
- if (data.code == 200) {
- if (self.getData.page == 1) {
- this.dataList = data.data.records;
- this.total = data.data.total;
- if (data.data.total / self.getData.pageSize <= self.getData.page) {
- this.$set(this, 'getDataType', true);
- }
- } else {
- this.dataList = [...this.dataList, ...data.data.records]
- this.total = data.data.total;
- if (data.data.total / self.getData.pageSize <= self.getData.page) {
- this.$set(this, 'getDataType', true);
- }
- }
- }
- },
- //实验室搜索
- subNameChange() {
- this.$set(this, 'getDataType', false);
- this.$set(this, 'dataList', []);
- this.$set(this, 'total', 0);
- this.$set(this.getData, 'page', 1);
- this.systemSubjectGetAppSubject();
- },
- //实验室搜索框清除
- clearSearch() {
- this.$set(this, 'getDataType', false);
- this.$set(this, 'dataList', []);
- this.$set(this, 'total', 0);
- this.$set(this.getData, 'page', 1);
- this.$set(this.getData, 'searchValue', '');
- this.systemSubjectGetAppSubject();
- },
- //关闭弹框倒计时
- getMsg() {
- let self = this;
- const TIME_COUNT = 5;
- if (!self.timer) {
- self.count = TIME_COUNT;
- self.show = false;
- self.timer = setInterval(() => {
- if (self.count > 0 && self.count <= TIME_COUNT) {
- self.count -= 1;
- } else {
- self.successVisible = false;
- clearInterval(self.timer);
- self.timer = null;
- self.applyRemoteOpenLockConfirm();
- }
- }, 1000);
- }
- },
- //关闭弹框倒计时
- getCode() {
- let self = this;
- const TIME_COUNT = 3;
- if (!this.timer) {
- this.count = TIME_COUNT;
- this.show = false;
- this.timer = setInterval(() => {
- if (this.count > 0 && this.count <= TIME_COUNT) {
- this.count -= 1;
- } else {
- self.successVisible = false;
- clearInterval(this.timer);
- this.timer = null;
- }
- }, 1000);
- }
- },
- closeTip() {
- this.$set(this, 'successVisible', false)
- },
- }
- }
- </script>
- <style lang="stylus" scoped>
- #empowerOpen {
- height: 100%;
- display flex;
- flex-direction column;
- .header {
- width: 749rpx;
- height: 120rpx;
- background: #FFFFFF;
- padding: 20rpx 30rpx;
- box-sizing: border-box;
- border-bottom: 1rpx solid #D8D8D8;
- .header-n {
- position: relative;
- width: 690rpx;
- height: 80rpx;
- border-radius: 10rpx 10rpx 10rpx 10rpx;
- border: 1rpx solid #E0E0E0;
- padding-left: 20rpx;
- box-sizing: border-box;
- .header-l {
- width: 590rpx;
- height: 80rpx;
- }
- .header-r {
- position: absolute;
- top: 0rpx;
- right: 0rpx;
- width: 68rpx;
- height: 80rpx;
- >img {
- width: 24rpx;
- height: 24rpx;
- margin-top: 24rpx;
- margin-left: 24rpx;
- }
- }
- }
- }
- .list {
- flex: 1;
- overflow-y scroll;
- padding: 0 30rpx;
- box-sizing: border-box;
- background: #fff;
- .list-li {
- // height: 90rpx;
- display: flex;
- // justify-content: space-between;
- // align-items: center;
- border-bottom: 1rpx solid #D8D8D8;
- .list-li-l {
- flex: 1;
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- font-size: 30rpx;
- color: #333333;
- line-height: 40rpx;
- padding: 25rpx 25rpx 25rpx 0;
- }
- .list-li-r {
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- font-size: 28rpx;
- color: #0183FA;
- line-height: 90rpx;
- display: flex;
- flex-direction: column;
- text-align: right;
- width: 80rpx;
- .null-p {
- flex: 1;
- }
- }
- }
- .list-li:last-child {
- border-bottom: none;
- }
- }
- .null-img {
- display block;
- width: 276rpx;
- height: 321rpx;
- position absolute;
- top: 200rpx;
- left: 238rpx;
- }
- .get-data-null-p {
- text-align: center;
- line-height: 100rpx;
- padding-bottom: 80px;
- color: #999;
- }
- .success {
- height: 100%;
- width: 100%;
- position: fixed;
- top: 0;
- display: flex;
- flex-direction: column;
- z-index: 10;
- background: rgba(0, 0, 0, 0.2);
- .null-box {
- flex: 1;
- }
- .panel {
- width: 550rpx;
- height: 255rpx;
- background: #FFFFFF;
- border-radius: 20rpx 20rpx 20rpx 20rpx;
- position: absolute;
- top: 320rpx;
- left: 100rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- .panel-t {
- width: 80rpx;
- height: 80rpx;
- margin: 40rpx 0 18rpx 0;
- }
- .panel-m {
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- font-size: 30rpx;
- color: #3D3D3D;
- line-height: 42rpx;
- margin-bottom: 8rpx;
- }
- .panel-b {
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- font-size: 30rpx;
- color: #999999;
- line-height: 42rpx;
- }
- }
- }
- }
- </style>
|