mirror of
https://gitee.com/java110/WechatOwnerService.git
synced 2026-02-23 21:36:38 +08:00
137 lines
3.0 KiB
Vue
137 lines
3.0 KiB
Vue
<template>
|
|
<view>
|
|
<view class="block__title">基础信息</view>
|
|
<view class="cu-form-group">
|
|
<view class="title">放行类型</view>
|
|
<view>{{order.typeName}}</view>
|
|
</view>
|
|
<view class="cu-form-group">
|
|
<view class="title">申请单位</view>
|
|
<view>{{order.applyCompany}}</view>
|
|
</view>
|
|
<view class="cu-form-group">
|
|
<view class="title">申请人</view>
|
|
<view>{{order.applyPerson}}</view>
|
|
</view>
|
|
<view class="cu-form-group">
|
|
<view class="title">手机号</view>
|
|
<view>{{order.applyTel}}</view>
|
|
</view>
|
|
<view class="cu-form-group">
|
|
<view class="title">身份证</view>
|
|
<view>{{order.idCard}}</view>
|
|
</view>
|
|
<view class="cu-form-group">
|
|
<view class="title">车牌号</view>
|
|
<view>{{order.carNum}}</view>
|
|
</view>
|
|
<view class="cu-form-group arrow">
|
|
<view class="title">通行时间</view>
|
|
<view>{{order.passTime}}</view>
|
|
</view>
|
|
<view class="cu-form-group arrow">
|
|
<view class="title">备注</view>
|
|
<view>{{order.remark}}</view>
|
|
</view>
|
|
|
|
<view class="block__title">物品信息</view>
|
|
<view class="cu-form-group arrow" v-for="(item,index) in resNames">
|
|
<view class="title">{{item.resName}}</view>
|
|
<view class="">{{item.amount}}</view>
|
|
</view>
|
|
|
|
<view class="block__title">审批流程</view>
|
|
<view class="cu-form-group arrow" v-for="(item,index) in comments">
|
|
<view class="title">{{item.staffName}}</view>
|
|
<view class="">
|
|
<text v-if="item.endTime">处理完成</text>
|
|
<text v-else>正在处理</text>
|
|
<text v-if="item.context">({{item.context}})</text>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="button_up_blank"></view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
getMyItemRelease,
|
|
getItemReleaseRes,
|
|
queryOaWorkflowUser
|
|
} from '../../api/itemRelease/itemReleaseApi.js';
|
|
import {
|
|
getCommunityId
|
|
} from '@/api/community/communityApi.js';
|
|
export default {
|
|
data() {
|
|
return {
|
|
order: {
|
|
|
|
},
|
|
resNames: [],
|
|
irId: '',
|
|
comments: []
|
|
|
|
}
|
|
},
|
|
onLoad(options) {
|
|
this.irId = options.irId;
|
|
this._loadDetail();
|
|
this._loadDetailResNames();
|
|
},
|
|
methods: {
|
|
_loadDetail: function() {
|
|
let _that = this;
|
|
getMyItemRelease({
|
|
page: 1,
|
|
row: 1,
|
|
irId: this.irId,
|
|
communityId: getCommunityId()
|
|
}).then(_data => {
|
|
_that.order = _data[0];
|
|
_that._loadComment();
|
|
})
|
|
},
|
|
_loadDetailResNames: function() {
|
|
let _that = this;
|
|
getItemReleaseRes({
|
|
page: 1,
|
|
row: 100,
|
|
irId: this.irId,
|
|
communityId: getCommunityId()
|
|
}).then(_data => {
|
|
_that.resNames = _data;
|
|
})
|
|
},
|
|
_loadComment: function() {
|
|
let _that = this;
|
|
queryOaWorkflowUser({
|
|
page: 1,
|
|
row: 100,
|
|
id: this.irId,
|
|
communityId: getCommunityId(),
|
|
flowId: this.order.flowId
|
|
}).then(_data => {
|
|
_that.comments = _data;
|
|
})
|
|
}
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.block__title {
|
|
margin: 0;
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
color: rgba(69, 90, 100, .6);
|
|
padding: 40rpx 30rpx 20rpx;
|
|
}
|
|
|
|
.button_up_blank {
|
|
height: 40rpx;
|
|
}
|
|
</style>
|