123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483 |
- <template>
- <view class="situationsCenter-page">
- <view class="calender-remind" @click="toMessagePage">
- <image
- :src="`/static/message-${messageType ? 'unread' : 'read'}.png`"
- ></image>
- </view>
- <view class="situation-list">
- <view class="search-box">
- <view
- class="search-model"
- @click="openSearchBar"
- v-show="isSearchBoxShow"
- >
- <image class="search-pic" src="/static/search.png"></image>
- </view>
- <view class="search-bar" v-show="isSearchBarShow">
- <view class="search-item">
- <image class="search-pic" src="/static/search.png"></image>
- <image
- class="text-clear"
- @click="valueEmpty"
- src="/static/text-clear.png"
- ></image>
- <input
- class="searh-input"
- v-model="inputValue"
- @confirm="searchByKeywords($event)"
- placeholder="搜索项目"
- placeholder-style="font-weight: 400,color: #A1A7B3"
- />
- </view>
- <text class="cancel-text" @click="closeSearchBar">取消</text>
- </view>
- </view>
- <scroll-view
- class="scroll-box"
- scroll-y="true"
- @scrolltolower="toLower"
- lower-threshold="184"
- >
- <view class="content" :style="{height: situationList.length === 0 ? '100%' : 'auto'}">
- <view
- class="situation"
- v-for="(item, index) in situationList"
- :key="item.id"
- @click="gotoDetail(item.situationID)"
- >
- <image
- class="situation-topic"
- :src="`/static/${
- item.topic ? 'situation-case' : 'situation-system'
- }.png`"
- ></image>
- <view class="title">
- <text class="title-name">{{ item.name }}</text>
- </view>
- <view class="check-group">
- <text class="group-text">
- {{
- nowPermission == 2
- ? "剩余" + (item.toDistributeCount || 0) + "个待分配"
- : item.checkGroupName
- }}</text
- >
- </view>
- <view class="row">
- <image
- class="situation-check"
- src="/static/situation-check.png"
- ></image>
- <text class="text">{{ item.checkStatus }}</text>
- </view>
- <view class="row">
- <image
- class="situation-time"
- src="/static/situation-time.png"
- ></image>
- <text class="text">{{ item.nextCheckTime }}</text>
- </view>
- </view>
- <tm-no-data v-if="situationList.length === 0"
- :textArr="['还没有情境', '快点击右下方按钮新建一个吧']" />
- </view>
- </scroll-view>
- </view>
- <view v-if="nowPermission == 1" class="situaions-add" @click="gotoCreate">
- <image class="add-pic" src="/static/situation-add.png"></image>
- </view>
- <tm-tabbar :permission="nowPermission" />
- </view>
- </template>
- /**
- * 情境中心
- */
- <script>
- import websocket from "../../utils/ws.js"; //引入websocket
- import {wsURL} from "../../utils/requestUrl.js";
- export default {
- data() {
- return {
- page: 1, //页数
- inputValue: "",
- nowPermission: "",
- isSearchBarShow: false, //搜索栏是否可见
- isSearchBoxShow: true, //搜索图标是否可见
- situationList: [], //情境卡片列表
- totalCount: "", //返回数据的总条数
- refTimer: null,
- isInitWs: null,
- messageType: null,
- num: 1,
- timer: null,
- // ws接口参数
- initParams: {}
- };
- },
- created: function () {
- this.nowPermission = uni.getStorageSync("nowPermission");
- this.init(true);
- this.refTimer = setInterval(() => {
- this.isInitWs = websocket.ws ? false : true;
- const {hiId, user, permission} = this.initParams;
- this.isInitWs && this.initWebsocket(hiId, user, permission);
- }, 3 * 60 * 1000);
- // this.messStatus();
- },
- beforeDestroy() {
- // 关闭ws连接
- websocket.close();
- clearInterval(this.refTimer);
- clearTimeout(this.timer);
- },
- // watch:{
- // "$route":{
- // handler(route){
- // this.messStatus();
- // }
- // }
- // },
- methods: {
- openSearchBar() {
- this.isSearchBarShow = true;
- this.isSearchBoxShow = false;
- },
- closeSearchBar() {
- this.isSearchBarShow = false;
- this.isSearchBoxShow = true;
- },
- valueEmpty() {
- this.inputValue = "";
- },
- gotoCreate() {
- uni.navigateTo({
- url: "/pages/creatingSituations/creatingSituations",
- });
- },
- gotoDetail(id) {
- uni.navigateTo({
- url: `/pages/situationDetail/situationDetail?situationId=${id}`,
- });
- },
- getSituationList(data, callback) {
- this.$store
- .dispatch({
- type: "situationsCenter/commActions",
- payload: {
- data,
- key: "situationList",
- },
- })
- .then((data) => {
- if (data) callback(data);
- });
- },
- searchByKeywords(event) {
- let data = {
- pageNum: 1,
- pageSize: 10,
- keyword: event.target.value,
- };
- this.getSituationList(data, (data) => {
- this.situationList = [];
- this.createSituationList(data.list);
- });
- },
- createSituationList(list = []) {
- list.map((item, index) => {
- this.situationList.push({
- name: item.name,
- checkStatus: item.checkStatus,
- nextCheckTime: item.nextCheckTime,
- checkGroupName: item.checkGroupName,
- topic: item.topic == 0 ? true : false,
- situationID: item.id,
- toDistributeCount: item.toDistributeCount,
- });
- });
- },
- toLower() {
- uni.showToast({
- title: "加载中....",
- icon: "loading",
- duration: 2000,
- });
- let count = this.situationList.length;
- if (this.totalCount != count) {
- this.page++;
- let data = {
- pageNum: this.page,
- pageSize: 10,
- };
- this.getSituationList(data, (data) => {
- this.createSituationList(data.list);
- let hiId = uni.getStorageSync("hiId");
- let user = uni.getStorageSync("id");
- let permission = uni.getStorageSync("nowPermission");
- this.initParams = {
- hiId,
- user,
- permission
- };
- this.isInitWs && this.initWebsocket(hiId, user, permission);
- });
- } else {
- uni.showToast({
- title: "没有更多数据了",
- icon: "none",
- duration: 1000,
- });
- }
- },
- toMessagePage() {
- // this.messageType = false;
- uni.navigateTo({
- url: `/pages/messages/messages`,
- });
- },
- init(isInitWs) {
- this.isInitWs = isInitWs;
- this.initSituationList();
- },
- initWebsocket(hiId, user, permission) {
- websocket.url = wsURL(hiId, user, permission);
- websocket.createWebSocket(this.resolverWsData.bind(this));
- },
- // 解析websocket返回数据
- resolverWsData(type) {
- let types = JSON.parse(type);
- switch (types.type) {
- case "TO_READ":
- this.messageType = true;
- break;
- default:
- this.messageType = false;
- break;
- }
- },
- initSituationList() {
- let data = {
- pageNum: 1,
- pageSize: 10,
- };
- this.getSituationList(data, (data) => {
- this.totalCount = data.totalCount;
- this.createSituationList(data.list);
- let hiId = uni.getStorageSync("hiId");
- let user = uni.getStorageSync("id");
- let permission = uni.getStorageSync("nowPermission");
- this.initParams = {
- hiId,
- user,
- permission
- };
- this.isInitWs && this.initWebsocket(hiId, user, permission);
- });
- },
- // messStatus(){
- // let num = 1;
- // let timer = setInterval(()=>{
- // this.$store.dispatch({
- // type: "calendar/commActions",
- // payload: {
- // key: "messagesList",
- // data: {
- // pageNum: num,
- // pageSize: 100,
- // },
- // },
- // }).then((res)=>{
- // if(res && res.list.length == 0){
- // clearInterval(timer)
- // }else if(res && res.list.length != 0){
- // res.list.map((item)=>{
- // if(!item.readStatus){
- // this.messageType = true;
- // return;
- // }
- // })
- // }
- // })
- // num++;
- // },200)
- // }
- },
- };
- </script>
- <style lang="less">
- .situationsCenter-page {
- height: 100%;
- .calender-remind {
- width: 62.5rpx;
- height: 62.5rpx;
- position: fixed;
- right: 25rpx;
- background: rgba(255, 255, 255, 0.95);
- border-radius: 50%;
- z-index: 2;
- image {
- margin-left: 17.5rpx;
- margin-top: 16.87rpx;
- width: 27.5rpx;
- height: 28.75rpx;
- }
- }
- .situation-list {
- position: relative;
- height: 100%;
- .search-box {
- position: fixed;
- left: 25rpx;
- top: 0rpx;
- z-index: 2;
- .search-model {
- height: 62.5rpx;
- width: 62.5rpx;
- background-color: #ffffff;
- text-align: center;
- border-radius: 50%;
- box-shadow: 0px 10px 10px 0px rgba(217, 221, 228, 0.5);
- border: 1px solid #e6eaf2;
- opacity: 0.85;
- .search-pic {
- width: 27.5rpx;
- height: 27.5rpx;
- margin-top: 17.5rpx;
- }
- }
- .search-bar {
- background-color: #ffffff;
- width: 700rpx;
- height: 62.5rpx;
- top: 31.25rpx;
- position: absolute;
- z-index: 2;
- .search-item {
- background-color: #ffffff;
- width: 593.75rpx;
- height: 62.5rpx;
- float: left;
- border-radius: 6.25rpx;
- border: 1.25rpx solid #f0f2f7;
- .search-pic {
- width: 21.87rpx;
- height: 21.87rpx;
- margin-left: 12.5rpx;
- margin-top: 20.62rpx;
- float: left;
- }
- .searh-input {
- background-color: #ffffff;
- width: 525rpx;
- height: 55rpx;
- font-size: 22.5rpx;
- float: right;
- margin-top: 3.75rpx;
- margin-left: 3.12rpx;
- }
- .text-clear {
- width: 21.87rpx;
- height: 21.87rpx;
- float: right;
- margin-top: 20.62rpx;
- margin-right: 6.25rpx;
- }
- }
- .cancel-text {
- font-size: 22.5rpx;
- line-height: 62.5rpx;
- color: #a1a7b3;
- margin-right: 31.25rpx;
- float: right;
- }
- }
- }
- .scroll-box {
- width: 100%;
- height: calc(100% - 87.5rpx);
- .content {
- display: flex;
- flex-flow: row wrap;
- padding-bottom: 25rpx;
- .situation {
- height: 187.5rpx;
- width: 337.5rpx;
- background: #ffffff;
- box-shadow: 0px 6px 20px 0px rgba(0, 13, 51, 0.1);
- border-radius: 8px;
- margin-left: 25rpx;
- margin-top: 25rpx;
- .situation-topic {
- width: 62.5rpx;
- height: 25rpx;
- float: right;
- }
- .title {
- height: 22.5rpx;
- margin-left: 20rpx;
- margin-top: 25rpx;
- display: flex;
- align-items: center;
- .title-name {
- font-size: 22.5rpx;
- font-family: SourceHanSansCN-Bold, SourceHanSansCN;
- font-weight: bold;
- color: #292c33;
- }
- }
- .check-group {
- margin-left: 20rpx;
- margin-top: 15rpx;
- margin-bottom: 25rpx;
- height: 17.5rpx;
- display: flex;
- align-items: center;
- .group-text {
- font-size: 17.5rpx;
- font-family: SourceHanSansCN-Normal, SourceHanSansCN;
- font-weight: 400;
- color: #666e80;
- }
- }
- .row {
- margin-left: 20rpx;
- margin-bottom: 17.5rpx;
- display: flex;
- align-items: center;
- height: 20rpx;
- .situation-check {
- width: 20rpx;
- height: 20rpx;
- }
- .situation-time {
- width: 20rpx;
- height: 20rpx;
- }
- .text {
- font-size: 20rpx;
- font-family: SourceHanSansCN-Normal, SourceHanSansCN;
- font-weight: 400;
- color: #292c33;
- margin-left: 11.25rpx;
- }
- }
- }
- }
- }
- }
- .situaions-add {
- position: fixed;
- right: 25rpx;
- bottom: 130rpx;
- .add-pic {
- width: 75rpx;
- height: 75rpx;
- }
- }
- }
- </style>
|