1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <!--index.wxml-->
- <view class="order-details">
- <token-show title="{{'订单详情'}}" wx:if="{{ token==='' }}" />
- <van-row wx:if="{{loading}}">
- <van-col span="24" custom-class="asd">
- <van-skeleton title row="3" />
- </van-col>
- <van-col span="24" custom-class="asd">
- <van-skeleton title row="3" />
- </van-col>
- <van-col span="24" custom-class="asd">
- <van-skeleton title row="3" />
- </van-col>
- <van-col span="24" custom-class="asd">
- <van-skeleton title row="3" />
- </van-col>
- <van-col span="24">
- <van-skeleton row="3" />
- </van-col>
- </van-row>
- <view class="order-details-header" wx:if="{{!loading&&token!==''}}">
- {{items.flow_stage}}:{{items.status_name}}
- </view>
- <view class="order-details-main" wx:if="{{!loading&&token!==''}}">
- <van-cell title="订单号:" title-width="70px" value="{{items.reqCode}}" />
- <van-cell title="公司名称:" title-width="70px" value="{{items.companyName}}" custom-class="item-nth" />
- <van-cell title="活动类型:" title-width="70px" value="{{items.require_item_name}}" />
- <van-cell title="活动时间:" title-width="70px" value="{{items.act_time_day}}~{{items.act_time_end_day}},共{{items.act_day_count}}天" custom-class="item-nth" />
- <van-cell title="意向位置:" title-width="70px" value="{{items.shortname}}" />
- <van-cell title="活动人数:" title-width="70px" value="{{items.participant_min}}{{items.participant_max===0?'+人':'~'+items.participant_max+'人'}}" custom-class="item-nth" />
- <van-cell title="活动预算:" title-width="70px" value="{{items.budget_name}}" />
- <van-cell title="会议项目:" title-width="70px" value="{{items.req_demand_name_label}}" custom-class="item-nth" />
- <van-cell title="联系电话:" title-width="70px" value="{{items.req_tel}}" />
- <van-cell title="创建时间:" title-width="70px" value="{{items.create_time}}" custom-class="item-nth" />
- </view>
- <view class="order-details-footer" wx:if="{{!loading&&token!==''}}">
- <van-icon name="manager" color="#FFFFFF" custom-style="float: left;background:#DCDFE6;padding:6px;border-radius:50%" size="28px" />
- <view class="footer-title">会议顾问</view>
- <van-button round type="primary" icon="phone" custom-style="float: right;height:40px;padding:0 20px " bind:click="phoneOpen">联系顾问</van-button>
- </view>
- </view>
|