123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318 |
- <!-- 预警记录 -->
- <template>
- <view class="earlyWarning">
- <scroll-view scroll-y @scrolltolower="scrollGet" class="info-max-box">
- <viw class="list" v-for="(item,index) in dataList" :key="index">
- <view class="list_t">{{item.appCreateTime}}</view>
- <view class="list_li" v-for="(item2,index2) in item.list" :key="index2" @click="handleClick(item2)">
- <view class="list_li_t">
- <view class="list_li_t_l"></view>
- <view class="list_li_t_c orange_color" v-if="item2.warnType==1">化学品</view>
- <view class="list_li_t_c yellow_color_one" v-if="item2.warnType==2">气瓶</view>
- <view class="list_li_t_c yellow_color" v-if="item2.warnType==3">算法识别</view>
- <view class="list_li_t_c red_color" v-if="item2.warnType==4">预案</view>
- <view class="list_li_t_c2" v-if="item2.warnType == 1">
- {{item2.chemicalWarnType == 1?'化学品违规带离':
- (item2.chemicalWarnType == 2?'化学品超时未归还':
- (item2.chemicalWarnType == 3?'化学品过期':
- (item2.chemicalWarnType == 4?'化学品即将过期':
- (item2.chemicalWarnType == 5?'化学品超期未入库':
- (item2.chemicalWarnType == 6?'化学品业务操作超时':
- '')))))}}
- </view>
- <view class="list_li_t_c2" v-else>{{item2.warnContent}}</view>
- <view class="list_li_t_r"></view>
- </view>
- <view class="list_li_b">
- <view class="list_li_b_t">
- <text>{{item2.subName}}</text>
- <text>{{item2.appTimeDivision}}</text>
- </view>
- <view class="list_li_b_b">
- <img src="@/pages_basics/images/icon_wtzg_xx.png" />
- <text>{{item2.buildName}}-{{item2.floorName}}{{item2.roomNum}}</text>
- </view>
- </view>
- </view>
- </viw>
- <view class="get-data-null-p" v-if="getDataType">- 没有更多数据 -</view>
- </scroll-view>
- </view>
- </template>
- <script>
- import {
- systemMineWarningNoticeList
- } from '@/pages_basics/api/index.js'
- export default {
- name: "rectifyList",
- components: {
- },
- data() {
- return {
- // 查询参数
- queryParams: {
- page: 1,
- pageSize: 4,
- },
- dataList: [],
- dataArr: [], //临时存储
- total: 0,
- timeStatus: false, //判断是否超过当前时间30分钟
- getDataType: false,
- }
- },
- onLoad(option) {
- },
- onShow() {
- },
- mounted() {
- this.getList();
- },
- methods: {
- //滚动加载事件
- scrollGet() {
- if (this.total / this.queryParams.pageSize <= this.queryParams.page) {
- this.$set(this, 'getDataType', true);
- } else {
- this.queryParams.page += 1;
- this.$nextTick(() => {
- this.getList();
- })
- }
- },
- handleClick(item) {
- if(item.warnType != 4){
- uni.navigateTo({
- url: '/pages_basics/views/earlyWarningManage/earlyWarningDetail?noticeId='+item.noticeId, //安全警报
- });
- }else{
- uni.navigateTo({
- url: '/pages_basics/views/earlyWarningManage/earlyWarningDetail?eventId='+item.chemicalWarnInfo, //安全警报
- });
- }
- },
- //排序
- sortClass(sortData) {
- const groupBy = (array, f) => {
- let groups = {};
- array.forEach((o) => {
- let group = JSON.stringify(f(o));
- groups[group] = groups[group] || [];
- groups[group].push(o);
- });
- return Object.keys(groups).map((group) => {
- return groups[group];
- });
- };
- const sorted = groupBy(sortData, (item) => {
- return item.createDate; // 返回需要分组的对象
- });
- return sorted;
- },
- async getList() {
- const {
- data
- } = await systemMineWarningNoticeList(this.queryParams);
- if (data.code == 200) {
- let list = JSON.parse(JSON.stringify(this.dataList));
- data.data.records.forEach((item) => {
- let num = 0;
- list.forEach((minItem) => {
- if (item.appCreateTime == minItem.appCreateTime) {
- num++
- minItem.list.push(item)
- }
- })
- if (num == 0) {
- list.push({
- appCreateTime: item.appCreateTime,
- list: [item]
- })
- }
- })
- this.$set(this, 'dataList', list);
- this.$set(this, 'total', data.data.total);
- if (data.data.total / this.queryParams.pageSize <= this.queryParams.page) {
- this.$set(this, 'getDataType', true);
- }
- }
- },
- }
- }
- </script>
- <style lang="stylus" scoped>
- .earlyWarning {
- height: 100%;
- display flex;
- flex-direction column;
- padding: 0 30rpx 30rpx;
- box-sizing: border-box;
- .red_color {
- color: #D40000;
- border: 1rpx solid #D40000;
- }
- .orange_color {
- color: #FF4800;
- border: 1rpx solid #FF4800;
- }
- .yellow_color {
- color: #FFA34E;
- border: 1rpx solid #FFA34E;
- }
- .yellow_color_one {
- color: #bc8f8f;
- border: 1rpx solid #bc8f8f;
- }
- .get-data-null-p {
- text-align: center;
- line-height: 40rpx;
- padding-bottom: 40px;
- color: #999;
- }
- .list {
- .list_t {
- height: 80rpx;
- font-size: 30rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 400;
- color: #666666;
- line-height: 80rpx;
- }
- .list_li {
- width: 690rpx;
- height: auto;
- background: #FFFFFF;
- border-radius: 10rpx;
- padding-bottom: 52rpx;
- box-sizing: border-box;
- margin-bottom: 20rpx;
- .list_li_t {
- position: relative;
- height: 110rpx;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- .list_li_t_l {
- position: absolute;
- left: -15rpx;
- top: 76rpx;
- width: 30rpx;
- height: 30rpx;
- background: #F5F5F5;
- border-radius: 15rpx;
- }
- .list_li_t_c {
- height: 40rpx;
- font-size: 30rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 400;
- line-height: 36rpx;
- margin-left: 30rpx;
- margin-right: 20rpx;
- border-radius: 20rpx;
- padding: 0 20rpx;
- box-sizing: border-box;
- }
- .list_li_t_c2 {
- font-size: 30rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 400;
- color: #333333;
- line-height: 30rpx;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- flex: 1;
- }
- .list_li_t_r {
- position: absolute;
- right: -15rpx;
- top: 76rpx;
- width: 30rpx;
- height: 30rpx;
- background: #F5F5F5;
- border-radius: 15rpx;
- }
- }
- .list_li_b {
- margin: 0 30rpx;
- border-top: 1rpx dotted #D8D8D8;
- .list_li_b_t {
- display: flex;
- justify-content: space-between;
- margin-top: 28rpx;
- >text:nth-of-type(1) {
- font-size: 30rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 400;
- color: #333333;
- line-height: 30rpx;
- }
- >text:nth-of-type(2) {
- font-size: 30rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 400;
- color: #666666;
- line-height: 30rpx;
- }
- }
- .list_li_b_b {
- display: flex;
- justify-content: flex-start;
- margin-top: 30rpx;
- >img {
- width: 30rpx;
- height: 30rpx;
- margin-right: 22rpx;
- }
- >text {
- font-size: 28rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 400;
- color: #666666;
- line-height: 28rpx;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- flex: 1;
- }
- }
- }
- }
- }
- .info-max-box {
- flex: 1;
- overflow-y scroll;
- }
- }
- </style>
|