锦水居民端小程序
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.
 

69 lines
4.8 KiB

<!--subpages/heart/pages/myApply/myApply.wxml-->
<view class="apply">
<view class="apply-list">
<view class="apply-img" bindtap="toApplyList" wx:if="{{!dataForm.id}}">
<image src="../../images/shangbaojilu.png" />
</view>
<view class="apply-item">
<view class="item-title"><text class="must">*</text>所属网格</view>
<select-cascader cascaderList='{{treeList}}' choosedValue="{{treeChoosedValue}}" value='{{treeVlaue}}' bind:chooseId='chooseTreeId'></select-cascader>
</view>
<view class="apply-item text-item">
<view class="item-title"><text class="must">*</text>所属年度</view>
<view class="item-content" bindtap="onShowYearPicker">
<view class="select">{{yearChoosedValue.label||'请选择年度'}}</view>
<view class="trigger"></view>
</view>
<wux-picker bind:visibleChange="onCancelYearPicker" value="{{yearValue}}" options="{{ yearsList }}" controlled visible="{{yearPickerVisible}}" bind:cancel="onCancelYearPicker" bind:confirm="onConfirmYearPicker"></wux-picker>
</view>
<view class="apply-item">
<view class="item-title"><text class="must">*</text>所属季度</view>
<view class="item-content" bindtap="onShowQuarterPicker">
<view class="select">{{quarterChoosedValue.label||'请选择季度'}}</view>
<view class="trigger"></view>
</view>
<wux-picker bind:visibleChange="onCancelQuarterPicker" value="{{quarterValue}}" options="{{ quarterList }}" controlled visible="{{quarterPickerVisible}}" bind:cancel="onCancelQuarterPicker" bind:confirm="onConfirmQuarterPicker"></wux-picker>
</view>
<view class="apply-item">
<view class="item-title"><text class="must">*</text>公司名称</view>
<input type="text" class="item-content" placeholder="请输入公司名称" value="{{dataForm.enterpriseName}}" data-code="enterpriseName" bindinput="onInputValue"></input>
</view>
<view class="apply-item">
<view class="item-title"><text class="must">*</text>法人或联络人</view>
<input type="text" class="item-content" placeholder="请输入法人或联络人" value="{{dataForm.legalPerson}}" data-code="legalPerson" bindinput="onInputValue"></input>
</view>
<view class="apply-item">
<view class="item-title"><text class="must">*</text>联系电话</view>
<input type="text" class="item-content" placeholder="请输入联系电话" value="{{dataForm.concat}}" data-code="concat" bindinput="onInputValue"></input>
</view>
<view class="apply-item">
<view class="item-title"><text class="must">*</text>公司状态</view>
<view class="item-content" bindtap="onShowCompanyPicker">
<view class="select">{{companyChoosedValue.label||'请选择公司状态'}}</view>
<view class="trigger"></view>
</view>
<wux-picker bind:visibleChange="onCancelCompanyPicker" value="{{companyValue}}" options="{{ companyList }}" controlled visible="{{companyPickerVisible}}" bind:cancel="onCancelCompanyPicker" bind:confirm="onConfirmCompanyPicker"></wux-picker>
</view>
<view class="apply-item">
<view class="item-title">1-本季度营业收入(万元)</view>
<input type="digit" class="item-content" placeholder="请输入1-本季度营业收入(万元)" value="{{dataForm.enterpriseIncome}}" data-code="enterpriseIncome" bindinput="onInputValue" placeholder-style="width: 600rpx;"></input>
</view>
<view class="apply-item">
<view class="item-title">用工人数</view>
<input type="number" class="item-content" placeholder="请输入用工人数" value="{{dataForm.enterprisePeopleNum}}" data-code="enterprisePeopleNum" bindinput="onInputValue"></input>
</view>
<view class="apply-item text-item">
<view class="item-title">存在的困难或需要上级协调解决的问题</view>
<textarea class="item-content text-content" placeholder="请输入内容..." maxlength="500" value="{{dataForm.question}}" data-code="question" bindinput="onInputValue"></textarea>
</view>
</view>
<view class="submit" bindtap="submitApply">
<image class="submit-bk" src="../../images/submitbk.png" />
<view class="submit-text">提交</view>
</view>
</view>
<view wx:if="{{showPicker}}">
<date-time-picker bind:cancel="pickerCancel" bind:confirm="pickerConfirm" init-time="{{dataForm.actStartTime}}"></date-time-picker>
</view>
<notice bind:close="closeDialog" bind:confirm="confirmDialog" dialogVisible="{{dialogVisible}}" title="提交成功" confirmText="知道了"></notice>