You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

404 lines
9.2 KiB

4 years ago
<template>
4 years ago
<view class="boxContent">
<view class="box-header">
<view class="search-wrap">
<!-- 如果使用u-search组件必须要给v-model绑定一个变量 -->
<u-search v-model="keyword" placeholder="地址/河道等" @change="tosearch()" @search="tosearch()" height="56"
:action-style="{color: '#fff'}">
</u-search>
</view>
4 years ago
4 years ago
</view>
<view :class="mask?'list listfixed':'list'" style="padding-top: 100rpx;">
4 years ago
<u-dropdown ref="uDropdown" @open="openmask" @close="closemask" :class="mask?'':'overflowmask'" >
<u-dropdown-item title="问题类型">
<view class="slot-content">
<view class="item-box">
<view class="item" :class="[item.active ? 'active' : '']" @tap="tagClick(index)"
v-for="(item, index) in options1" :key="index">
{{item.label}}
</view>
</view>
<u-button type="primary" @click="tosearch"></u-button>
</view>
</u-dropdown-item>
<u-dropdown-item v-model="value3" :title="value3==''?'工单状态':value3" @change="toChangeStatus()"
:options="options3">
</u-dropdown-item>
</u-dropdown>
4 years ago
<block v-for="(item, index) in dataList">
4 years ago
<u-card :title="item.created_at" padding="20" margin="20rpx" :border="true"
:sub-title="item.statusName" :thumb="thumb" thumb-width="36">
<view class="" slot="body" @click="todetail(item.id)">
4 years ago
<u-row gutter="16">
<u-col span="3">
<view class="demo-layout bg-purple">问题类别</view>
</u-col>
<u-col span="3">
4 years ago
<view class="demo-layout bg-purple-light">{{item.ask_type_detail.value}}</view>
4 years ago
</u-col>
<u-col span="3">
<view class="demo-layout bg-purple">问题内容</view>
</u-col>
<u-col span="3">
4 years ago
<view class="demo-layout bg-purple-light">{{item.ask_content_detail.value}}</view>
4 years ago
</u-col>
</u-row>
<u-row gutter="16">
<u-col span="3">
<view class="demo-layout bg-purple">反馈科室</view>
</u-col>
<u-col span="3">
<view class="demo-layout bg-purple-light">{{item.feedback_department.name}}</view>
</u-col>
4 years ago
<!-- <u-col span="3">
4 years ago
<view class="demo-layout bg-purple">提交日期</view>
</u-col>
<u-col span="3">
<view class="demo-layout bg-purple-light">{{item.created_at}}</view>
4 years ago
</u-col> -->
4 years ago
</u-row>
<u-row gutter="16">
<u-col span="3">
<view class="demo-layout bg-purple">描述</view>
</u-col>
4 years ago
<u-col span="12">
4 years ago
<view class="demo-layout bg-purple-light">{{item.content}}</view>
</u-col>
</u-row>
</view>
4 years ago
<view class="footer" slot="foot">
<block >
<u-button :custom-style="editStyle" type="primary" size="medium"
@click="toedit(item.id)" :ripple="true">编辑
</u-button>
</block>
<block >
<u-button type="error" size="medium" @click="del(item.id)"
:custom-style="customStyle" :ripple="true">删除
</u-button>
</block>
4 years ago
</view>
</u-card>
</block>
4 years ago
<u-loadmore class="loadmore" :status="loadStatus" :load-text="loadText"/>
4 years ago
<u-empty text="暂无数据" margin-top="200" v-if="dataList.length==0" mode="list"></u-empty>
</view>
4 years ago
</view>
4 years ago
4 years ago
</template>
<script>
export default {
data() {
return {
4 years ago
background: {
backgroundColor: '#007AFF'
},
4 years ago
mask: false,
loadStatus:"loadmore",
loadText:{
loadmore:"加载更多",
nomore:"已经到底了"
},
4 years ago
dataList: [],
thumb: "/static/img/location.png",
4 years ago
currentPage: 0,
lastPage:0,
editStyle:{
fontSize:'30rpx'
},
customStyle: {
marginLeft: '20px',
fontSize:'30rpx'
4 years ago
},
currentRole: "inspector", //前端用户角色inspector巡查员manager管理员operator现场处置人员
value1Arr: [],
value1: "",
value2: '',
value3: '',
value3v: '',
keyword: "",
title: "",
stat: [],
options1: [],
options2: [],
options3: [{
label: "所有",
value: "所有",
v: ""
}, {
label: "待处理",
value: "待处理",
v: "save"
}, {
label: "处理中",
value: "处理中",
v: "ongong"
}, {
label: "已处理",
value: "已处理",
v: "finashed"
}]
4 years ago
}
},
4 years ago
onReachBottom: function(e) {
4 years ago
if(this.currentPage>=this.lastPage){
this.loadStatus = "nomore"
return;
}
4 years ago
this.loadPage(this.currentPage + 1);
},
onPullDownRefresh: function(e) {
this.loadPage(1);
},
onShow: function() {
var that = this;
},
onLoad(options) {
this.loadPage(1);
},
4 years ago
methods: {
openmask(){
this.mask=true
// this.isPullDown(false);
},
closemask(){
this.mask=false
// this.isPullDown(true);
},
4 years ago
toChangeStatus: function(value) {
var jsonSearch = this.options3.filter(function(e) {
return e.value == value;
});
this.value3v = jsonSearch[0].v;
console.log(jsonSearch)
this.loadPage(1)
this.$refs.uDropdown.close();
},
tosearch() {
this.value1Arr = [];
for (var m of this.options1) {
if (m.active) {
this.value1Arr.push(m.value);
}
4 years ago
}
4 years ago
this.loadPage(1)
this.$refs.uDropdown.close();
},
tagClick(index) {
this.options1[index].active = !this.options1[index].active;
},
4 years ago
4 years ago
toedit(id){
uni.navigateTo({
url:"../generalPatrol/generalPatrol?id="+id
})
4 years ago
},
4 years ago
4 years ago
todetail: function(id) {
uni.navigateTo({
4 years ago
url: "../generalPatrol/viewPatrol?id=" + id
4 years ago
})
4 years ago
},
4 years ago
loadPage: function(page) {
uni.hideKeyboard()
var that = this;
this.util.request({
bindThis: that,
api: '/api/mobile/common-inspection/index',
customLoading: false,
data: {
page: page,
4 years ago
page_size: 4,
4 years ago
keyword: that.keyword
},
utilSuccess: function(r) {
var res = r.data;
4 years ago
that.lastPage = r.last_page;
4 years ago
uni.stopPullDownRefresh(); // 服务器总条数 < 每页条数, 会将第一页的条数重新返回
4 years ago
if(r.total<5){
that.loadStatus = "nomore";
}
var hasNoMore = that.dataList.length < 4 && page > 1;
4 years ago
if (hasNoMore || res.length == 0 && page > 1) {
4 years ago
// 已加载到最后一页
that.loadStatus = "nomore";
4 years ago
uni.showToast({
title: '已加载到最后一页',
icon: 'none'
});
return;
}
var dataList = that.dataList;
4 years ago
4 years ago
if (page == 1) {
dataList = res;
} else {
dataList.push(...res);
}
for (var m of dataList) {
4 years ago
m.created_at = m.created_at.split("T")[0]
switch(m.status){
case 1:
m.statusName = "已提交"
break
case 2:
m.statusName = "已复核"
break
case 3:
m.statusName = "已处理"
break
case 4:
m.statusName = "已办结"
break
default:
break;
}
4 years ago
}
console.log(dataList)
4 years ago
4 years ago
that.currentPage = page;
that.dataList = dataList;
},
utilFail: function(res) {
uni.stopPullDownRefresh();
4 years ago
4 years ago
if (page == 1) {
4 years ago
4 years ago
that.currentPage = page;
4 years ago
}
4 years ago
this.util.alert(res);
}
});
4 years ago
},
del(id){
var that = this;
uni.showModal({
title: '提示',
content: '是否确定删除?',
success(res) {
if(res.confirm){
that.util.request({
api: '/api/mobile/common-inspection/destroy',
customLoading: false,
method:"get",
data: {
id:id
},
utilSuccess: function(r) {
uni.showToast({
icon: "none",
title: "提交成功",
complete() {
that.loadPage(1)
},
duration: 2000
})
},
utilFail:function(r) {
this.util.alert(res);
},
})
}else if(res.cancel){
}
}
})
4 years ago
}
4 years ago
4 years ago
}
4 years ago
4 years ago
}
</script>
<style>
4 years ago
.boxContent {
background: #f3f4f6;
min-height: 100vh;
4 years ago
}
4 years ago
.footer {
display: flex;
justify-content: flex-end;
}
.box-header {
position: fixed;
top: 0;
width: 100%;
z-index: 99;
}
.u-row {
margin: 10rpx 0;
font-size: 28rpx;
}
.u-card{
z-index: 1;
}
</style>
<style scoped lang="scss">
.search-wrap {
background: #007AFF;
padding: 20rpx;
4 years ago
}
.overflowmask{
overflow: hidden;
}
.loadmore{
padding:24rpx!important
4 years ago
}
.listfixed{
position: fixed;
width:100%;
}
4 years ago
.u-config-wrap {
padding: 30rpx;
}
.bg-purple {
font-weight: bold;
}
.slot-content {
background-color: #FFFFFF;
padding: 24rpx;
.item-box {
margin-bottom: 50rpx;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
.item {
border: 1px solid $u-type-primary;
color: $u-type-primary;
padding: 8rpx 40rpx;
border-radius: 100rpx;
margin-top: 30rpx;
}
.active {
color: #FFFFFF;
background-color: $u-type-primary;
}
}
4 years ago
}
4 years ago
</style>