bug
This commit is contained in:
@@ -141,7 +141,8 @@ export default {
|
|||||||
current: this.current,
|
current: this.current,
|
||||||
searchType: this.currentTabs == 1 ? '1' : '0',
|
searchType: this.currentTabs == 1 ? '1' : '0',
|
||||||
eventStatus: this.eventStatus,
|
eventStatus: this.eventStatus,
|
||||||
girdId: this.girdId
|
girdId: this.girdId,
|
||||||
|
openId:this.eventStatus== 4 ? this.user.openId : ""
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
@@ -171,9 +172,13 @@ export default {
|
|||||||
},
|
},
|
||||||
// 切换类型
|
// 切换类型
|
||||||
changeType(e) {
|
changeType(e) {
|
||||||
this.status = e[0].label
|
if(e[0].value!=1){
|
||||||
|
this.status = e[0].label
|
||||||
|
this.eventStatus = e[0].value
|
||||||
|
}else{
|
||||||
|
this.eventStatus = 4
|
||||||
|
}
|
||||||
this.datas = []
|
this.datas = []
|
||||||
this.eventStatus = e[0].value
|
|
||||||
this.getList()
|
this.getList()
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +1,9 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="SelectUser">
|
<div class="SelectUser">
|
||||||
<div class="header-middle">
|
<div class="header-middle">
|
||||||
<!-- 去掉网格名称 -->
|
<div class="hint">
|
||||||
<!-- <div class="hint">
|
|
||||||
<span v-for="(item, index) in slectList" :key="index"><span v-if="index" style="margin:0 4px;">/</span><span style="color:#3F8DF5" @click="girdNameClick(item, index)">{{item.girdName}}</span></span>
|
<span v-for="(item, index) in slectList" :key="index"><span v-if="index" style="margin:0 4px;">/</span><span style="color:#3F8DF5" @click="girdNameClick(item, index)">{{item.girdName}}</span></span>
|
||||||
</div> -->
|
</div>
|
||||||
|
|
||||||
<div class="showTypes" v-if="!userList.length">
|
<div class="showTypes" v-if="!userList.length">
|
||||||
<div v-if="treeList.length > 0">
|
<div v-if="treeList.length > 0">
|
||||||
@@ -37,7 +36,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="rights">
|
<div class="rights">
|
||||||
<div class="applicationNames">{{ e.name }}</div>
|
<div class="applicationNames"><AiOpenData v-if="e.name" type="userName" :openid="e.name" style="display: block;"/></div>
|
||||||
<div class="idNumbers">{{ e.phone }}</div>
|
<div class="idNumbers">{{ e.phone }}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -209,7 +208,10 @@ export default {
|
|||||||
box-shadow: 0px 1px 0px 0px #e4e5e6;
|
box-shadow: 0px 1px 0px 0px #e4e5e6;
|
||||||
font-size: 30px;
|
font-size: 30px;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
word-break: break-all;
|
// word-break: break-all;
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
.showTypes {
|
.showTypes {
|
||||||
@@ -223,13 +225,12 @@ export default {
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
height: 120px;
|
height: 120px;
|
||||||
line-height: 120px;
|
line-height: 120px;
|
||||||
// background: pink;
|
|
||||||
padding: 0 0 0 32px;
|
padding: 0 0 0 32px;
|
||||||
|
|
||||||
.imges {
|
.imges {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
// width: 200px;
|
|
||||||
.imgselect {
|
.imgselect {
|
||||||
width: 48px;
|
width: 48px;
|
||||||
height: 48px;
|
height: 48px;
|
||||||
@@ -249,16 +250,21 @@ export default {
|
|||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
}
|
}
|
||||||
.rightes {
|
.rightes {
|
||||||
width: 100%;
|
width: calc(100% - 160px);
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
margin-left: 32px;
|
margin-left: 32px;
|
||||||
border-bottom: 1px solid #e4e5e6;
|
border-bottom: 1px solid #e4e5e6;
|
||||||
|
|
||||||
.applicationNames {
|
.applicationNames {
|
||||||
|
max-width: calc(100% - 80px);
|
||||||
font-size: 36px;
|
font-size: 36px;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
color: #333333;
|
color: #333333;
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
.imgs {
|
.imgs {
|
||||||
width: 40px;
|
width: 40px;
|
||||||
@@ -275,7 +281,6 @@ export default {
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
height: 120px;
|
height: 120px;
|
||||||
line-height: 120px;
|
line-height: 120px;
|
||||||
// background: pink;
|
|
||||||
padding: 0 0 0 32px;
|
padding: 0 0 0 32px;
|
||||||
|
|
||||||
.imges {
|
.imges {
|
||||||
@@ -296,7 +301,7 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.rights {
|
.rights {
|
||||||
width: 100%;
|
width: 70%;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@@ -307,6 +312,9 @@ export default {
|
|||||||
font-size: 36px;
|
font-size: 36px;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
color: #333333;
|
color: #333333;
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
.idNumbers {
|
.idNumbers {
|
||||||
color: #666;
|
color: #666;
|
||||||
|
|||||||
@@ -90,7 +90,7 @@
|
|||||||
<h2>办理结果</h2>
|
<h2>办理结果</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-item__right">
|
<div class="form-item__right">
|
||||||
<textarea v-model="form.result" :maxlength="500" placeholder="请简要描述事件…"></textarea>
|
<textarea v-model="form.result" :maxlength="500" placeholder="请输入办理结果信息"></textarea>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -256,9 +256,7 @@
|
|||||||
if (res.code == 0) {
|
if (res.code == 0) {
|
||||||
uni.$emit('update')
|
uni.$emit('update')
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
uni.navigateTo({
|
uni.navigateBack()
|
||||||
url: './List'
|
|
||||||
})
|
|
||||||
}, 600)
|
}, 600)
|
||||||
}
|
}
|
||||||
this.$hideLoading()
|
this.$hideLoading()
|
||||||
|
|||||||
Reference in New Issue
Block a user