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.
83 lines
3.6 KiB
83 lines
3.6 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-content2">
|
|
<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 class="checkbox">
|
|
<!-- <view class="label">自动通知服务方:</view>-->
|
|
<view class="value">
|
|
<wux-checkbox-group
|
|
name="noticeApproches"
|
|
value="{{ form.noticeApproches }}"
|
|
title="自动通知服务方:"
|
|
bind:change="onChange1"
|
|
>
|
|
<wux-checkbox color="positive" title="短信通知" value="1" />
|
|
<wux-checkbox color="positive" title="微信公众号通知" value="2" />
|
|
</wux-checkbox-group>
|
|
</view>
|
|
</view>
|
|
<view class="items">
|
|
<view class="label">服务范围:</view>
|
|
<view class="value" bind:tap="onOpen2">
|
|
{{orgName?orgName:'请选择'}}
|
|
<!-- <wux-cascader-picker-view
|
|
value="{{ value2 }}"
|
|
options="{{ orgOptions }}"
|
|
bind:valueChange="onValueChange2"
|
|
/>-->
|
|
</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-cascader
|
|
visible="{{ visible2 }}"
|
|
default-value="{{ value2 }}"
|
|
title="处理部门"
|
|
options="{{ orgOptions }}"
|
|
bind:change="change1"
|
|
bind:close="onClose2"
|
|
bind:confirm="onConfirm2"
|
|
defaultFieldNames="{{orgField}}"
|
|
/>
|
|
|
|
|