outbackpeopledetail.wxml 5.6 KB
<view class="backtop">

  <view class="useboxitem flextwo">
    <view class="itemname commonone topname">出行信息</view>
  </view>
  <view class="useboxitem backitem flextwo">
    <view class="itemname commonone">出行方式</view>


    <view class="itemright flexone">
      <view class="commontwo commonenter">
        {{basic.travel}}
      </view>

    </view>



  </view>

  <view class="useboxitem backitem flextwo">
    <view class="itemname commonone" wx:if="{{basic.travel == '飞机'}}">航班号</view>
    <view class="itemname commonone" wx:elif="{{basic.travel == '自驾' || basic.travel == '大巴'}}">车牌号</view>
    <view class="itemname commonone" wx:elif="{{basic.travel == '火车'}}">车次</view>
    <view class="itemname commonone" wx:else>有效证件号</view>


    <view class="itemright flexone time">
      <view class="commontwo commonenter">
        {{basic.number}}
      </view>

    </view>



  </view>


</view>


<view class="backtop peopleitem">

  <view class="useboxitem flextwo">
    <view class="itemname commonone topname">人员信息</view>

  </view>

  <view class="useboxitem backitem flextwo">
    <view class="itemname commonone">姓名</view>


    <view class="itemright flexone">
      <view class="commontwo commonenter">
        {{first.name}}
      </view>

    </view>



  </view>


  <view class="useboxitem backitem flextwo">
    <view class="itemname commonone">国籍</view>


    <view class="itemright flexone">
      <view class="commontwo commonenter">
        <text wx:if="{{first.nation==1}}">中国</text>
        <text wx:if="{{first.nation==2}}">港澳台</text>
        <text wx:if="{{first.nation==3}}">外籍</text>

      </view>

    </view>



  </view>
  <!-- wx:if="{{first.credentials_type==1}}" -->
  <view class="useboxitem backitem flextwo">
    <view class="itemname commonone">证件类型</view>


    <view class="itemright flexone">
      <view class="commontwo commonenter" wx:if="{{first.credentials_type==1}}">
        身份证
      </view>
      <view class="commontwo commonenter" wx:if="{{first.credentials_type==2}}">
        港澳台通行证
      </view>
      <view class="commontwo commonenter" wx:if="{{first.credentials_type==3}}">
        护照
      </view>

    </view>



  </view>
  <view class="useboxitem backitem flextwo">
    <view class="itemname commonone">证件号码</view>


    <view class="itemright flexone">
      <view class="commontwo commonenter">
        {{first.identity}}
      </view>


    </view>



  </view>


  <view class="useboxitem backitem flextwo">
    <view class="itemname commonone">联系电话</view>


    <view class="itemright flexone">
      <view class="commontwo commonenter">
        {{first.mobile}}
      </view>

    </view>



  </view>
  <view class="useboxitem backitem flextwo">
    <view class="itemname commonone">从何国返静</view>


    <view class="itemright flexone">
      <view class="commontwo commonenter">
        {{first.from_province}}
      </view>

    </view>



  </view>

  <view class="useboxitem backitem flextwo">
    <view class="itemname commonone">途经国家或城市</view>


    <view class="itemright flexone">
      <view class="commontwo commonenter">
        {{first.arrivecity}}
      </view>

    </view>



  </view>

  <view class="useboxitem backitem flextwo">
    <view class="itemname commonone">到静海时间(计划)</view>


    <view class="itemright flexone time">
      <view class="commontwo commonenter">
        {{first.arrivetime}}
      </view>

    </view>



  </view>


  <view class="useboxitem backitem flextwo">
    <view class="itemname commonone">目的地</view>


    <view class="itemright flexone">
      <view class="commontwo commonenter">
        {{first.town_p_name}}{{first.town_name}}
      </view>

    </view>



  </view>

  <view class="useboxitem backitem flextwo">
    <view class="itemname commonone">详细地址(具体到门牌号)</view>


    <view class="itemright flexone">
      <view class="commontwo  men">
        {{first.add}}
      </view>

    </view>



  </view>

  <view class="useboxitem backitem flextwo">
    <view class="itemname commonone">是否有相应症状(发热、呕吐)</view>


    <view class="itemright flexone istouch">
      <view class="commontwo commonenter" wx:if="{{first.is_symptom==1}}">

      </view>
      <view class="commontwo commonenter" wx:else>

      </view>

    </view>



  </view>

 

  <view class="useboxitem backitem flextwo">
    <view class="itemname commonone">两周内有无重度疫情区来往接触史</view>


    <view class="itemright flexone istouch">
      <view class="commontwo commonenter" wx:if="{{first.is_epidemic==1}}">

      </view>
      <view class="commontwo commonenter" wx:else>

      </view>

    </view>



  </view>



</view>


<view class="code flextwo">
  <view class="codeleft">
    二维码
  </view>
  <view class="coderight flexone" bindtap="dian">
    <view class="commontwo">点击查看/保存</view>
    <view class="codeimg">
      <image src="{{codeurl}}"></image>
    </view>
  </view>
</view>

<view class="bot" bindtap="edit">

  <view class="subtwo">编辑</view>
</view>


<view class="registerk" wx:if="{{showcode}}">
  <view class="codewrap">
    <view class="codetop">
      <image src="/img/codetopimg.png"></image>
      <view class="codename">我的二维码</view>
    </view>
    <view class="codekimg" bindlongpress="baocun">
      <image src="{{codeurl}}"></image>
    </view>
    <view class="ansave">长按保存二维码</view>

  </view>
  <view class="closeimg" bindtap="closecode">
    <image src="/img/closecode.png"></image>
  </view>
</view>