63 lines
2.1 KiB
Plaintext
63 lines
2.1 KiB
Plaintext
<!--pages/voucherManagementAddto/index.wxml-->
|
|
<!-- <view class="header_title">
|
|
<view class="header_title_row">
|
|
<van-row>
|
|
|
|
<van-col span="7">
|
|
<view class="header_img" bindtap="goGCLB">
|
|
<image src="/images/left.png"></image>
|
|
<text class="header_fh">返回</text>
|
|
</view>
|
|
</van-col>
|
|
<van-col span="10">
|
|
<view class="header_name">新增凭证</view>
|
|
</van-col>
|
|
</van-row>
|
|
</view>
|
|
</view> -->
|
|
|
|
|
|
<view class="max_new_content">
|
|
<view class="add_max">
|
|
<view class="add_title">项目名称</view>
|
|
<voucher-select columns="{{projectNameList}}" placeholder="请选择项目名称" bindchange="onSelectProjectName"></voucher-select>
|
|
</view>
|
|
|
|
<view class="add_max">
|
|
<view class="add_title">凭证类型</view>
|
|
<voucher-select columns="{{voucherTypeList}}" placeholder="请选择凭证类型" bindchange="onSelectVoucherType"></voucher-select>
|
|
</view>
|
|
|
|
<view class="add_max">
|
|
<view class="add_title">发生时间</view>
|
|
<voucher-date counts="5" placeholder="请选择发生时间" bindchange="onOccurrenceTime"></voucher-date>
|
|
</view>
|
|
|
|
<view class="add_max">
|
|
<view class="add_title">上传时间</view>
|
|
<voucher-date counts="5" placeholder="请选择上传时间" bindchange="onUploadTime"></voucher-date>
|
|
</view>
|
|
|
|
<view class="add_max">
|
|
<view class="add_title">备注</view>
|
|
<textarea class="add_textarea" placeholder="请填写备注" placeholder-style="color:#6777aa;" bindinput="remarks" />
|
|
</view>
|
|
|
|
<view class="add_max">
|
|
<view class="add_title">上传凭证</view>
|
|
<file-uploader bindimages="onImagesArr"></file-uploader>
|
|
</view>
|
|
|
|
<view class="add_btn">
|
|
<view class="add_btn_qx" bindtap="goGCLB">取消</view>
|
|
<view class="add_btn_bc" bindtap="add">保存</view>
|
|
</view>
|
|
</view>
|
|
|
|
<van-overlay show="{{loadShow}}">
|
|
<view class="gif">
|
|
<image src="../../images/loding2.gif"></image>
|
|
<view>数据加载中!请稍后...</view>
|
|
</view>
|
|
</van-overlay>
|