123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- <!--StepPage/pages/first/first.wxml-->
- <van-dialog id="van-dialog" />
- <van-dialog
- use-slot
- title="原因"
- show="{{ show_m }}"
- show-cancel-button
- bind:close="onClose"
- bind:confirm="onSure"
- >
- <van-cell-group>
- <van-field
- value="{{ oa_remark }}"
- placeholder="请输入"
- clearable
- type='textarea'
- autosize='true'
- bind:change="handleChangeRemark"
- >
- </van-field>
- </van-cell-group>
- </van-dialog>
- <image src="../../../images/head.png" style="width:100%;height: 250rpx;z-index:-1"></image>
- <view wx:if="{{formData.is_check>0?true:false}}">
- <view wx:if="{{status<=0}}" style="text-align: right;padding: 0 15rpx;"><van-button type='primary' bind:tap="handleCheck">审核</van-button></view>
- <view wx:if='{{status==1&&oa_state==1}}'>
- <van-button style="margin-right: 10px" type="priamry" bind:tap="handlePassModal" data-item="1">通过</van-button>
- <van-button style="margin-right: 10px" type="warning" bind:tap="handlePassModal" data-item="0">驳回</van-button>
- </view>
- </view>
- <view class="item_content">
- <van-cell-group style="width: 100%;">
- <van-field
- label='4s门店'
- title-width='4.8rem'
- value="{{ formData.four_shop_title }}"
- required
- readonly
- >
- </van-field>
- <van-field
- label='关联仓库'
- title-width='4.8rem'
- value="{{ formData.storehouse_title }}"
- placeholder="默认带出"
- clearable
- required
- readonly
- >
- </van-field>
- <van-field
- label='退料类型'
- title-width='4.8rem'
- value="{{ formData.basic_type_name }}"
- required
- readonly
- >
- </van-field>
- <van-field
- label='物流公司'
- title-width='4.8rem'
- value="{{ formData.logistics_company }}"
- clearable
- required
- readonly
- >
- </van-field>
- <van-field
- label='物流单号'
- title-width='4.8rem'
- value="{{ formData.logistics_number }}"
- required
- readonly
- >
- </van-field>
- </van-cell-group>
- <view style='border:2rpx solid; padding:4rpx !important;width: 100%;border-radius: 20rpx;padding: 2rpx;margin-bottom: 20rpx;' wx:for="{{formData.sub}}" wx:for-item="item" wx:for-index='index' wx:key="index">
- <van-cell-group>
- <van-field
- label='卷膜分类'
- value="{{ item.b_r_f_name }}"
- readonly
- >
- </van-field>
- <van-field
- label='卷膜型号'
- value="{{ item.title }}"
- readonly
- >
- </van-field>
- <van-field
- label='卷膜编码'
- value="{{ item.roll_film_number }}"
- readonly
- >
- </van-field>
- <van-field
- label='退料数量'
- value="{{ item.number }}"
- readonly
- >
- </van-field>
- <van-field
- label='退料原因'
- value="{{ item.reason }}"
- readonly
- >
- </van-field>
- <text style="padding: 26rpx;color: blue;" bind:tap="handleShowPic" data-item='{{item}}'>查看图片</text>
- </van-cell-group>
- </view>
- <van-cell-group>
- <van-field
- label='备注'
- title-width='4.8rem'
- value="{{ formData.mark }}"
- readonly
- clearable
- >
- </van-field>
- </van-cell-group>
- </view>
- <button style="position: fixed;bottom: 0;width: 100%;z-index: 10;" bindtap="handleReturn">
- 返回
- </button>
|