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.
68 lines
2.7 KiB
68 lines
2.7 KiB
<wux-popup position="bottom" visible="{{ visible }}" bind:close="close" closable>
|
|
<view class="popup-container">
|
|
<view class="title">需求派单</view>
|
|
<scroll-view scroll-y class="popup-content">
|
|
<view class="card">
|
|
<view class="items">
|
|
<view class="label">需求类别:</view>
|
|
<view class="value">{{detail.categoryName}}</view>
|
|
</view>
|
|
<view class="items">
|
|
<view class="label">需求标题:</view>
|
|
<view class="value">{{detail.title}}</view>
|
|
</view>
|
|
<view class="items">
|
|
<view class="label">详细说明:</view>
|
|
<view class="value">
|
|
{{detail.content}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="card">
|
|
<view class="items">
|
|
<view class="label">服务方类型:</view>
|
|
<view class="value">
|
|
<picker range="{{serviceOptions}}" range-key="label" bind:change="getServiceuserList">
|
|
{{serviceIndex >= 0 ? serviceOptions[serviceIndex].label : '请选择服务方类型'}}
|
|
</picker>
|
|
</view>
|
|
</view>
|
|
<view class="items">
|
|
<view class="label">服务方:</view>
|
|
<view class="value">
|
|
<picker range="{{serviceOptiondList}}" bind:change="serviceOptiondListChange" range-key="label" >
|
|
{{serviceOptiondIndex >= 0 ? serviceOptiondList[serviceOptiondIndex].label : '请选择服务方'}}
|
|
</picker>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</scroll-view>
|
|
|
|
<view class="bottom-btn">
|
|
<view class="btn btn-gray" bind:tap="close">取消</view>
|
|
<view class="btn btn-blue" bind:tap="sure">确定</view>
|
|
</view>
|
|
</view>
|
|
</wux-popup>
|
|
<wux-calendar id="wux-calendar"/>
|
|
|
|
<wux-cascader
|
|
visible="{{ visible1 }}"
|
|
default-value="{{ value1 }}"
|
|
title="事件分类"
|
|
options="{{ casOptions }}"
|
|
bind:close="onClose1"
|
|
bind:change="onChange1"
|
|
bind:confirm="onConfirm1"
|
|
defaultFieldNames="{{catField}}"
|
|
/>
|
|
<wux-cascader
|
|
visible="{{ visible2 }}"
|
|
default-value="{{ value2 }}"
|
|
title="处理部门"
|
|
options="{{ orgOptions }}"
|
|
bind:close="onClose2"
|
|
bind:change="onChange2"
|
|
bind:confirm="onConfirm2"
|
|
defaultFieldNames="{{orgField}}"
|
|
/>
|
|
|