49 lines
1.7 KiB
Plaintext
49 lines
1.7 KiB
Plaintext
|
<!--pages/c-dispatch/c-dispatch.wxml-->
|
||
|
<t-navbar title="反馈" leftIcon="chevron-left" t-class-left-icon="left-icon-back" t-class-title="nav-title" />
|
||
|
<view class="container">
|
||
|
<view class="t-list">
|
||
|
<view class="t-item">
|
||
|
<view class="dispatch-head">
|
||
|
<text>{{taskData.name}}</text>
|
||
|
<t-tag variant="light" theme="danger">{{taskData.taskLevel}}</t-tag>
|
||
|
</view>
|
||
|
<text class="time">{{taskData.time}}</text>
|
||
|
<text class="content">告警内容:{{taskData.content}}</text>
|
||
|
<view class="dispatch-deal">
|
||
|
<text>处理人:{{taskData.handname}}</text>
|
||
|
</view>
|
||
|
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="c-list">
|
||
|
<text class="c-list-head">派工信息填写</text>
|
||
|
<view class="c-item">
|
||
|
<text>处理状态</text>
|
||
|
<view class="c-r-item">
|
||
|
<t-radio-group bindchange="changeAbnormal" default-value="0" borderless t-class="box">
|
||
|
<t-radio wx:for="{{statusData}}" block="{{false}}" label="{{item.label}}" value="{{item.value}}" />
|
||
|
</t-radio-group>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="text-item">
|
||
|
<text>反馈内容</text>
|
||
|
<t-textarea bind:change="getContent" placeholder="请输入文字" maxlength="200" indicator />
|
||
|
</view>
|
||
|
<view class="text-item">
|
||
|
<text>反馈图片</text>
|
||
|
<t-upload
|
||
|
media-type="{{['image']}}"
|
||
|
files="{{fileList}}"
|
||
|
gridConfig="{{gridConfig}}"
|
||
|
bind:add="handleAdd"
|
||
|
bind:success="handleSuccess"
|
||
|
data-filed="feedbackImg"
|
||
|
bind:remove="handleRemove"
|
||
|
/>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="null"></view>
|
||
|
<view class="foot">
|
||
|
<t-button theme="primary" size="large" bindtap="dispatch">反 馈</t-button>
|
||
|
</view>
|
||
|
</view>
|