YZProjectCloud/yanzhu-ui-app/miniprogram/pageage/project_checked/add/index.wxml

87 lines
3.6 KiB
Plaintext
Raw Normal View History

2025-08-02 15:44:20 +08:00
<wxs module="format" src="/utils/format.wxs"></wxs>
<view class="project-checked-add">
2025-08-03 18:18:48 +08:00
<view class="header_title">
2025-08-02 15:44:20 +08:00
<view class="header_title_row">
<van-row>
<van-col span="4">
<view class="header_img" bindtap="returnToPage">
<image src="/images/left.png"></image>
</view>
</van-col>
<van-col span="15">
<view class="header_name">增加项目举牌验收</view>
</van-col>
</van-row>
</view>
</view>
2025-08-04 17:50:25 +08:00
<scroll-view class="max_content_scroll" type="list" scroll-y style="padding: 30rpx">
<project-select init="{{ initData }}" bindchange="onProjectSelect" id="projectSel"></project-select>
2025-08-02 15:44:20 +08:00
<view class="mt40">分包单位</view>
2025-08-03 18:18:48 +08:00
<view class="add-info">{{ projectUserInfo.subDeptName }}</view>
2025-08-02 15:44:20 +08:00
<view class="mt40 markers inspect_info_title">工程部位</view>
<view class="inspect_info_content">
2025-08-04 17:50:25 +08:00
<textarea class="add_textarea" placeholder="请填写选择工程计划" placeholder-style="color:#6777aa;" bindtap="openPicker"
disabled model:value="{{ form.taskName }}" />
2025-08-02 15:44:20 +08:00
<van-popup show="{{ picker }}" bind:close="closePicker" position="bottom">
<view class="rectifier_max">
<view class="rectifier_title">
<view class="rectifier_text">选择工程计划</view>
<view class="rectifier_close" bindtap="closePicker">
<van-icon name="cross" />
</view>
</view>
<view class="rectifier_list">
<view class="rectifier_list_height">
2025-08-04 17:50:25 +08:00
<select-group-plan dataTree="{{ planOptions }}" isOpenAll="{{ fales }}" showCheckBox="{{ fales }}"
multiple="{{ false }}" bind:clickItem="handleClick" />
2025-08-02 15:44:20 +08:00
</view>
</view>
</view>
</van-popup>
</view>
2025-08-04 17:50:25 +08:00
2025-08-02 15:44:20 +08:00
<view class="inspect_info_content">
2025-08-04 17:50:25 +08:00
<view class="markers inspect_info_title">技术专员</view>
<voucher-select columns="{{technicianUserOptions}}" placeholder="请选择技术专员" bindchange="onTechnicianUserSelect"
selectValue="{{form.technician}}">
</voucher-select>
2025-08-02 15:44:20 +08:00
</view>
<view class="inspect_info_content">
2025-08-04 17:50:25 +08:00
<view class="markers inspect_info_title">监理员</view>
<voucher-select columns="{{superviseUserOptions}}" placeholder="请选择监理员" bindchange="onSuperviseUserSelect"
selectValue="{{form.supervise}}"></voucher-select>
2025-08-02 15:44:20 +08:00
</view>
<view class="mt40 markers inspect_info_title">结果描述</view>
<view class="inspect_info_content">
2025-08-04 17:50:25 +08:00
<textarea class="add_textarea" placeholder="请填写结果描述" placeholder-style="color:#6777aa;"
model:value="{{ form.intro }}" maxlength="200" bindinput="onIntroInput" />
2025-08-02 15:44:20 +08:00
</view>
<view class="mt40 markers inspect_info_title">验收时间</view>
<view class="inspect_info_content">
2025-08-04 17:50:25 +08:00
<voucher-date counts="5" placeholder="请选择完成时间" minDate="{{ minDate }}" maxDate="{{ maxDate }}"
model:value="{{ form.checkingDate }}" bindchange="onInputTime"
currentDate="{{ form.checkingDate }}"></voucher-date>
2025-08-02 15:44:20 +08:00
</view>
<view class="mt40 markers inspect_info_title">验收照片</view>
<view class="inspect_info_content">
2025-08-03 18:18:48 +08:00
<view class="inspect_info_content" style="margin-left: 10px">
2025-08-04 17:50:25 +08:00
<file-uploader bindimages="onImagesArr" fileUrlArray="{{imageInfoData}}"></file-uploader>
2025-08-02 15:44:20 +08:00
</view>
</view>
<view class="problem_submit_to">
<view class="problem_submit_to_btn" bindtap="returnToPage">取消</view>
2025-08-04 17:50:25 +08:00
<view class="problem_submit_to_btn problem_submit_to_save" bindtap="submitSave">确认</view>
2025-08-02 15:44:20 +08:00
</view>
</scroll-view>
2025-08-04 17:50:25 +08:00
</view>