businessdetail.wxml 5.3 KB
<view class="box">

  <view class="title">登记中</view>
  <!--基本信息-->
  <view class="topbox">
    <view class="topboxitem flextwo">
      <view class="boxitemleft">名称</view>
      <view class="boxitemleft itemright">{{office.name}}</view>
    </view>
    <view class="topboxitem flextwo">
      <view class="boxitemleft">地址</view>
      <view class="boxitemleft itemright" bindtap="enteraddress">
        <input placeholder='请输入地址' value="{{address}}" bindinput="enterplace" />
      </view>
    </view>
    <view class="topboxitem flextwo">
      <view class="boxitemleft">所属行业</view>
      <view class="boxitemleft itemright">{{office.industry}}</view>
    </view>
    <view class="topboxitem flextwo">
      <view class="boxitemleft">所属乡镇</view>
      <view class="boxitemleft itemright">{{office.town_pname}}</view>
    </view>


  </view>

  <!-- 表单 -->
  <view class="topbox formbox">
    <view class="useboxitem flextwo" bindtap="selectcompany">
      <view class="itemname commonone">负责人</view>
      <view class="flexone">
        <view class="commontwo seltype">

          <input placeholder="请填写负责人姓名" placeholder-class="commontwo" bindinput="entername" />
        </view>

      </view>
    </view>
    <view class="useboxitem flextwo" bindtap="selectcompany">
      <view class="itemname commonone">联系电话</view>
      <view class="flexone">
        <view class="commontwo seltype">

          <input placeholder="请填写联系电话" placeholder-class="commontwo" bindinput="enterphone" />
        </view>


      </view>
    </view>
    <view class="useboxitem flextwo" bindtap="selectcompany">
      <view class="itemname commonone">所属社区</view>

      <picker bindchange="bindtownrChange" value="{{townindex}}" range="{{town}}" range-key='name'>
   
      <view class="flexone">
        <view class="commontwo seltype">

        {{townname}}
 
          
          <!-- <input placeholder="请填写工作单位" placeholder-class="commontwo" bindinput="entercompany" value="{{companyname}}" /> -->
        </view>

        <view class="yourow you">
          <image src="/img/yourow.png"></image>
        </view>
      </view>

       </picker>
    </view>

    <view class="useboxitem flextwo">
      <view class="itemname commonone">是否营业中</view>
      <view class=" flexone">
        <view class="selleft flexone">
          <view class="selleftitem selzuo flexone" bindtap="selsy">
            <view class="sellefitemimg">
              <image src="/img/sel.png" wx:if="{{is_business==1}}"></image>
              <image src="/img/nosel.png" wx:else></image>
            </view>
            <view class="selname">是</view>
          </view>
          <view class="selleftitem flexone " bindtap="selsn">
            <view class="sellefitemimg">
              <image src="/img/sel.png" wx:if="{{is_business==2}}"></image>
              <image src="/img/nosel.png" wx:else></image>
            </view>
            <view class="selname">否</view>
          </view>
        </view>
      </view>
    </view>

    <view class="useboxitem flextwo" bindtap="selectcompany">
      <view class="itemname commonone yingye">营业时间(预计)</view>
      <view class="flexone">
        <view class="commontwo">
         
          <picker mode="time" value="{{time}}" start="00:00" end="24:59" bindchange="bindTimeChange">
            <view class="picker">
              {{time}}
            </view>
          </picker>
          <!-- <input placeholder="请填写工作单位" placeholder-class="commontwo" bindinput="entercompany" value="{{companyname}}" /> -->
        </view>

        <view class="yourow you">
          <image src="/img/yourow.png"></image>
        </view>
      </view>
    </view>

    <view class="useboxitem ">
      <view class="itemname commonone have">是否有以下防疫物资?(多选)</view>
      <view class=" flexone protect">
        <view class="protectitem {{item.sel==true?'protectactive':''}}" wx:for="{{protectarr}}" wx:key="" bindtap="selprotect" data-index="{{index}}" data-id="{{item.id}}">{{item.name}}</view>

      </view>
    </view>
    <view class="useboxitem flextwo">
      <view class="itemname commonone yiiqng">是否收到疫情防控指南</view>
      <view class=" flexone">
        <view class="selleft flexone">
          <view class="selleftitem selzuo flexone" bindtap="selsyk">
            <view class="sellefitemimg">
              <image src="/img/sel.png" wx:if="{{ishandbook==1}}"></image>
              <image src="/img/nosel.png" wx:else></image>
            </view>
            <view class="selname">是</view>
          </view>
          <view class="selleftitem flexone " bindtap="selsnk">
            <view class="sellefitemimg">
              <image src="/img/sel.png" wx:if="{{ishandbook==2}}"></image>
              <image src="/img/nosel.png" wx:else></image>
            </view>
            <view class="selname">否</view>
          </view>
        </view>
      </view>
    </view>

    <view class="useboxitem ">
      <view class="itemname commonone have">存在的困难</view>
      <view class="flexone difficult">
        <textarea placeholder='请输入存在的困难' bindinput="entertext"/>
      </view>
    </view>


  </view>

  <view class="finish flexthree">
    <view class="finishbtn" bindtap="finish">完成</view>
  </view>
</view>