epmet 工作端 小程序
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.

119 lines
5.1 KiB

<Head isBack text="详情"/>
<view class="statistics-container">
<view class="user-info">
<view class="name">
<text>{{detail.name}} {{detail.mobile}}</text>
<image src="../../../images/tel.png" class="tel-btn" mode="widthFix"></image>
</view>
<view class="address">
<view class="address-name">{{detail.agencyName?detail.agencyName:''}}</view>
<view class="date">{{detail.happenTime?detail.happenTime:''}}</view>
</view>
<view class="describe">
<view class="text">
{{detail.eventContent}}
</view>
<view class="time">上报渠道:{{detail.sourceTypeName}}</view>
<view class="time">事件类型:{{detail.parentCategoryName?detail.parentCategoryName:''}}-{{detail.categoryName?detail.categoryName:''}}</view>
<view class="time">详细地址:{{detail.address?detail.address:''}}</view>
<view class="time">办结时限:{{detail.latestOperatedTime?detail.latestOperatedTime:''}}</view>
<view class="time">满意度评价:{{detail.satisfactionName?detail.satisfactionName:''}}</view>
</view>
</view>
<view class="card">
<view class="title">处理进展</view>
<wux-steps wx:if="{{process.length > 0}}" direction="vertical" :current="0">
<wux-step wx:for="{{process}}" wx:key="index" icon="none">
<view slot="title">
<view class="step-title" wx:if="{{item.agencyId}}">【指派】</view>
<view class="step-title" wx:if="{{!item.timeLimit}}">【完成并回复】</view>
<view class="step-title" wx:if="{{!item.agencyId && item.timeLimit}}">【{{ item.processName }}】
</view>
</view>
<view slot="content">
<view class="step-time">{{ item.processTime }}</view>
<view wx:if="{{item.type === 'event'}}">
<view wx:if="{{item.agencyId}}">
<view class="content">
<view class="label">指派人:</view>
<view class="value">
{{ item.departmentName }}
</view>
</view>
<view class="content">
<view class="label">指派部门:</view>
<view class="value">
{{ item.agencyName }}
</view>
</view>
<view class="content">
<view class="label">转办意见:</view>
<view class="value">
{{ item.publicReply }}
</view>
</view>
<view class="content">
<view class="label">办结时限:</view>
<view class="value">
{{ item.timeLimit }}
</view>
</view>
</view>
<view wx:else>
<view class="content">
<view class="label">回复人:</view>
<view class="value">
{{ item.departmentName }}
</view>
</view>
<view class="content">
<view class="label">回复内容:</view>
<view class="value">
{{ item.publicReply }}
</view>
</view>
<view class="content" wx:if="{{item.timeLimit}}">
<view class="label">办结时限:</view>
<view class="value">
{{ item.timeLimit }}
</view>
</view>
</view>
</view>
</view>
</wux-step>
</wux-steps>
</view>
</view>
<ResourceScheduling
visible="{{isDispatch}}"
agencyId="{{detail.agencyId}}"
eventId="{{id}}"
bind:close="dispatchClose"
bind:dispatchOrder="handleDispatchOrder"
/>
<Supervision
visible="{{isSupervision}}"
detail="{{detail}}"
type="event"
id="{{id}}"
bind:close="supervisionClose"
/>
<DispatchOrder
is12345="{{is12345}}"
visible="{{isShowOrder}}"
eventId="{{id}}"
bind:close="orderClose"
/>
<view class="bottom-btn-block"></view>
<view class="bottom-btn">
<view class="btn btn-blue" bind:tap="dispatchOpen">资源调度</view>
<view class="btn btn-orange" bind:tap="supervisionOpen">督办催办</view>
</view>