企微bug
This commit is contained in:
@@ -113,7 +113,9 @@
|
|||||||
.order-item {
|
.order-item {
|
||||||
display: flex;
|
display: flex;
|
||||||
padding: 28rpx 30rpx 44rpx;
|
padding: 28rpx 30rpx 44rpx;
|
||||||
|
.order-item__right{
|
||||||
|
width: calc(100% - 230rpx);
|
||||||
|
}
|
||||||
.order-item__right--info {
|
.order-item__right--info {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: baseline;
|
align-items: baseline;
|
||||||
|
|||||||
@@ -113,8 +113,10 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
onLoad(opt) {
|
onLoad(opt) {
|
||||||
this.$dict.load("officialDocumentName", "documentEmergencyLevel", "documentStatus", "readingStatus", "documentFlowStatus")
|
|
||||||
this.id = opt.id
|
this.id = opt.id
|
||||||
|
this.$dict.load("officialDocumentName", "documentEmergencyLevel", "documentStatus", "readingStatus", "documentFlowStatus").then(() => {
|
||||||
|
this.read()
|
||||||
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
|||||||
@@ -88,7 +88,7 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
toDetailPeople(item) {
|
toDetailPeople(item) {
|
||||||
uni.navigateTo({ url: `./DetailPeople?id=${item.id}` })
|
uni.navigateTo({ url: `./DetailPeople?id=${item.id}&type=0` })
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -105,8 +105,8 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="pad-b112" v-if="!data.resident.auditStatus == 0"></div>
|
<div class="pad-b112" v-if="!data.resident.auditStatus == 0 && type == 1"></div>
|
||||||
<div class="footer" v-if="!data.resident.auditStatus == 0">
|
<div class="footer" v-if="!data.resident.auditStatus == 0 && type == 1">
|
||||||
<div @click="toContent">不通过</div>
|
<div @click="toContent">不通过</div>
|
||||||
<div class="pass" @click="examine(1)">通过</div>
|
<div class="pass" @click="examine(1)">通过</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -122,12 +122,14 @@ export default {
|
|||||||
return {
|
return {
|
||||||
id: '',
|
id: '',
|
||||||
data: [],
|
data: [],
|
||||||
|
type: 0, //0查看详情 1审核详情
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {},
|
computed: {},
|
||||||
watch: {},
|
watch: {},
|
||||||
onLoad(o) {
|
onLoad(o) {
|
||||||
this.id = o.id
|
this.id = o.id
|
||||||
|
this.type = o.type
|
||||||
this.$dict.load('householdRelation', 'nation', 'education', 'maritalStatus', 'politicsStatus', 'militaryStatus', 'faithType', 'job').then(() => {
|
this.$dict.load('householdRelation', 'nation', 'education', 'maritalStatus', 'politicsStatus', 'militaryStatus', 'faithType', 'job').then(() => {
|
||||||
this.getDetail()
|
this.getDetail()
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -121,7 +121,7 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
toDetailPeople(item) {
|
toDetailPeople(item) {
|
||||||
uni.navigateTo({ url: `./DetailPeople?id=${item.id}` })
|
uni.navigateTo({ url: `./DetailPeople?id=${item.id}&type=1` })
|
||||||
},
|
},
|
||||||
|
|
||||||
seachObj(e) {
|
seachObj(e) {
|
||||||
|
|||||||
Reference in New Issue
Block a user