cyx-ament-wechat/miniprogram/pages/approvalWarning/approvalForm/approvalForm.wxml

35 lines
1.1 KiB
Plaintext
Raw Normal View History

2023-08-31 10:38:54 +08:00
<!--pages/approvalWarning/approvalForm/approvalForm.wxml-->
<view class="approval_form_wrap">
<view class="form_one">
<view>提交人:{{fData.head || '暂无'}}</view>
<view>提交时间:{{fData.updateTime || '暂无'}}</view>
<view>提交指标:{{fData.target || '暂无'}}</view>
</view>
2023-08-31 10:43:26 +08:00
<view class="public_content">
<view class="public_title">附件信息</view>
2023-08-31 10:38:54 +08:00
<view class="file_list">
<view
wx:for="{{fileList}}"
wx:key="id"
class="file_list_item"
data-url="{{item.url}}"
bindtap="handlePreView"
>
({{index+1}})、{{item.name}}
</view>
</view>
</view>
2023-08-31 10:43:26 +08:00
<view class="public_content">
<view class="public_title">审批</view>
<van-cell-group>
<van-field
label="1"
value="{{ value }}"
placeholder="请输入用户名"
border="{{ false }}"
bind:change="onChange"
/>
</van-cell-group>
</view>
2023-08-31 10:38:54 +08:00
</view>