27334
This commit is contained in:
@@ -23,12 +23,12 @@
|
||||
<div class="titles">{{ item.content }}</div>
|
||||
|
||||
<div class="types">
|
||||
<span>事件类型</span>
|
||||
<span class="label label1">事件类型</span>
|
||||
<span class="types-right">{{ item.groupName }}</span>
|
||||
</div>
|
||||
|
||||
<div class="gards gird">
|
||||
<div>所属网格</div>
|
||||
<div class="label">所属网格</div>
|
||||
<div class="gards-right">{{ item.girdName }}</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -45,8 +45,7 @@
|
||||
<AiEmpty v-if="!datas.length"></AiEmpty>
|
||||
</template>
|
||||
|
||||
<u-select v-model="showGird" :list="$dict.getDict('clapEventStatusAll')" label-name="dictName" value-name="dictValue"
|
||||
@confirm="changeType"/>
|
||||
<u-select v-model="showGird" :list="$dict.getDict('clapEventStatusAll')" label-name="dictName" value-name="dictValue" @confirm="changeType" />
|
||||
|
||||
<div class="pad-b120" v-if="datas.length"></div>
|
||||
</div>
|
||||
@@ -80,22 +79,22 @@ export default {
|
||||
staticName: [
|
||||
{
|
||||
label: '待处理',
|
||||
value: 0
|
||||
value: 0,
|
||||
},
|
||||
{
|
||||
label: '上报数',
|
||||
value: 0
|
||||
value: 0,
|
||||
},
|
||||
{
|
||||
label: '已办数',
|
||||
value: 0
|
||||
value: 0,
|
||||
},
|
||||
{
|
||||
label: '今日办结',
|
||||
value: 0
|
||||
}
|
||||
value: 0,
|
||||
},
|
||||
],
|
||||
statisticsList: []
|
||||
statisticsList: [],
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
@@ -117,7 +116,6 @@ export default {
|
||||
this.current = 1
|
||||
this.getList()
|
||||
})
|
||||
|
||||
},
|
||||
onShow() {
|
||||
document.title = '矛盾调解'
|
||||
@@ -142,7 +140,7 @@ export default {
|
||||
searchType: this.currentTabs == 1 ? '1' : '0',
|
||||
eventStatus: this.eventStatus,
|
||||
girdId: this.girdId,
|
||||
openId:this.eventStatus== 4 ? this.user.openId : ""
|
||||
openId: this.eventStatus == 4 ? this.user.openId : '',
|
||||
},
|
||||
})
|
||||
.then((res) => {
|
||||
@@ -188,7 +186,8 @@ export default {
|
||||
},
|
||||
|
||||
girdList() {
|
||||
this.$http.post(`/app/appgirdmemberinfo/queryMyGirdListWithOut01`, null, {
|
||||
this.$http
|
||||
.post(`/app/appgirdmemberinfo/queryMyGirdListWithOut01`, null, {
|
||||
params: {
|
||||
size: 9999,
|
||||
},
|
||||
@@ -198,7 +197,7 @@ export default {
|
||||
this.myGirdList = res.data
|
||||
var all = {
|
||||
id: '',
|
||||
girdName: '全部'
|
||||
girdName: '全部',
|
||||
}
|
||||
this.myGirdList.unshift(all)
|
||||
}
|
||||
@@ -259,7 +258,7 @@ uni-page-body {
|
||||
|
||||
.content-list {
|
||||
display: flex;
|
||||
background: #FFFFFF;
|
||||
background: #ffffff;
|
||||
border-radius: 16px;
|
||||
margin-bottom: 20px;
|
||||
width: 100%;
|
||||
@@ -274,7 +273,7 @@ uni-page-body {
|
||||
|
||||
h3 {
|
||||
font-size: 64px;
|
||||
color: #1E88E8;
|
||||
color: #1e88e8;
|
||||
}
|
||||
|
||||
p {
|
||||
@@ -339,6 +338,9 @@ uni-page-body {
|
||||
margin-left: 32px;
|
||||
color: #333333;
|
||||
}
|
||||
.label1 {
|
||||
margin-right: 12px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -386,6 +388,14 @@ uni-page-body {
|
||||
|
||||
.gird {
|
||||
display: flex;
|
||||
.label {
|
||||
width: 120px;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.gards-right {
|
||||
width: calc(100% - 120px);
|
||||
}
|
||||
}
|
||||
|
||||
.addbtn {
|
||||
@@ -396,9 +406,9 @@ uni-page-body {
|
||||
height: 120px;
|
||||
line-height: 120px;
|
||||
text-align: center;
|
||||
background-color: #3975C6;
|
||||
background-color: #3975c6;
|
||||
font-size: 32px;
|
||||
color: #FFFFFF;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.pad-b120 {
|
||||
|
||||
Reference in New Issue
Block a user