1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <!--pages/qiyexqtable/qiyexqtanle.wxml-->
- <!-- 企业编辑页面 -->
- <view class="container">
- <view class="page-section">
- <view class="input_vi input_vic">
- <view class="input_title">坐标</view>
- <view class="flex_c">
- <input class="inp_txt2" value="{{enterpriseDetails.longitude}}" disabled="true" maxlength="20"/>
- <text>,</text><input class="inp_txt2" value="{{enterpriseDetails.latitude}}" disabled="true" maxlength="20"/>
- <image style="margin-left: 5rpx;" src="../images/icon_hq.png" class="icon" bindtap="getLocation" />
- </view>
-
- </view>
-
- <!-- <view class="input_vi">
- <view class="input_title">纬度</view>
- <input class="inp_txt" value="{{enterpriseDetails.latitude}}" disabled="true" maxlength="100"/>
- </view> -->
- <view class="input_vi">
- <view class="input_title">企业名称</view>
- <input class="inp_txt" bindinput="get_businessName" value="{{enterpriseDetails.businessName}}" maxlength="100" />
- </view>
- <view class="input_vi">
- <view class="input_title">机构代码</view>
- <input class="inp_txt" value="{{enterpriseDetails.orgCode}}" disabled="true" maxlength="100"/>
- </view>
- <view class="input_vi">
- <view class="input_title">办公地址</view>
- <input class="inp_txt" bindinput="get_officeAddress" value="{{enterpriseDetails.officeAddress}}" maxlength="100"/>
- </view>
- <view class="input_vi">
- <view class="input_title">经营地址</view>
- <input class="inp_txt" bindinput="get_businessAddress" value="{{enterpriseDetails.businessAddress}}" maxlength="100"/>
- </view>
- <view class="input_vi">
- <view class="input_title">监管人员</view>
- <input class="inp_txt" bindinput="get_supervisor" value="{{enterpriseDetails.supervisor}}" maxlength="100"/>
- </view>
- <view class="input_vi">
- <view class="input_title">主管部门</view>
- <input class="inp_txt" bindinput="get_tradeDept" value="{{enterpriseDetails.tradeDept}}" maxlength="100"/>
- </view>
- <view class="input_vi">
- <view class="input_title">所属部门</view>
- <input class="inp_txt" value="{{enterpriseDetails.deptName}}" disabled="true" maxlength="100"/>
- </view>
- <view class="input_vi">
- <view class="input_title">主要负责人</view>
- <input class="inp_txt" bindinput="get_mainPerson" value="{{enterpriseDetails.mainPerson}}" maxlength="100"/>
- </view>
- <view class="input_vi">
- <view class="input_title">负责人电话</view>
- <input type="number" maxlength="13" bindinput="get_mainPersonPhone" value="{{enterpriseDetails.mainPersonPhone}}" maxlength="100"/>
- </view>
- <view class="input_vi">
- <view class="input_title">安全负责人</view>
- <input class="inp_txt" bindinput="get_headSecurity" value="{{enterpriseDetails.headSecurity}}" maxlength="100"/>
- </view>
- <view class="input_vi">
- <view class="input_title">负责人电话</view>
- <input type="number" maxlength="13" bindinput="headSecurityPhone" value="{{enterpriseDetails.headSecurityPhone}}" maxlength="100"/>
- </view>
- </view>
- <view class="table_btn">
- <!-- <button type="warn" class="sc_btn" bindtap="deleteEnterprise">删除</button> -->
- <button type="primary" class="tj_btn" bindtap="updateEnterprise">提交</button>
- </view>
- </view>
|