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.
		
		
		
		
		
			
		
			
				
					
					
						
							50 lines
						
					
					
						
							2.4 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							50 lines
						
					
					
						
							2.4 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.parentCategoryName}}-{{detail.categoryName}}</view>
							 | 
						|
								                </view>
							 | 
						|
								                <view class="items">
							 | 
						|
								                    <view class="label">上报时间:</view>
							 | 
						|
								                    <view class="value">{{detail.reportTime}}</view>
							 | 
						|
								                </view>
							 | 
						|
								                <view class="items">
							 | 
						|
								                    <view class="label">所属网格:</view>
							 | 
						|
								                    <view class="value">{{detail.gridName}}</view>
							 | 
						|
								                </view>
							 | 
						|
								                <view class="items">
							 | 
						|
								                    <view class="label">需求内容:</view>
							 | 
						|
								                    <view class="value">
							 | 
						|
								                        {{detail.content}}
							 | 
						|
								                    </view>
							 | 
						|
								                </view>
							 | 
						|
								            </view>
							 | 
						|
								            <view class="card">
							 | 
						|
								                <picker range="{{serviceOptions}}" range-key="label" bind:change="getServiceuserList">
							 | 
						|
								                    <view class="items">
							 | 
						|
								                        <view class="label label-width">服务方类型:</view>
							 | 
						|
								                        <view class="value flex {{serviceIndex >= 0 ? '' : 'gray'}}">
							 | 
						|
								                            {{serviceIndex >= 0 ? serviceOptions[serviceIndex].label : '请选择服务方类型'}}
							 | 
						|
								                        </view>
							 | 
						|
								                    </view>
							 | 
						|
								                </picker>
							 | 
						|
								                <picker range="{{serviceOptiondList}}" bind:change="serviceOptiondListChange" range-key="label">
							 | 
						|
								                    <view class="items">
							 | 
						|
								                        <view class="label label-width">服务方:</view>
							 | 
						|
								                        <view class="value  flex {{serviceOptiondIndex >= 0 ? '' : 'gray'}}">
							 | 
						|
								                            {{serviceOptiondIndex >= 0 ? serviceOptiondList[serviceOptiondIndex].label : '请选择服务方'}}
							 | 
						|
								                        </view>
							 | 
						|
								                    </view>
							 | 
						|
								                </picker>
							 | 
						|
								            </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>
							 | 
						|
								
							 |