| | |
| | | </view> |
| | | <view class="center-content__two center-margin"> |
| | | <view> |
| | | <text>发起人:{{ item.actBusiness.createByName }}</text> |
| | | <text>发起人:{{ item.actBusiness.createByName || '' }}</text> |
| | | </view> |
| | | <view> |
| | | <text>审批操作:{{ item.deleteReason }}</text> |
| | |
| | | </view> |
| | | <view class="center-content__three center-margin"> |
| | | <view class=""> |
| | | <text>审批意见:{{ item.comment }}</text> |
| | | <text>审批意见:{{ item.comment == 'undefined' ? '未填写' : item.comment || '未填写' }}</text> |
| | | </view> |
| | | <view class=""> |
| | | <text> |
| | |
| | | <view class="bottom-container"> |
| | | <!-- 已办按钮 --> |
| | | <view class="bottom-content__item"> |
| | | <view @click="theFormDataClick(item.tableId)" v-if="item.procDefId == 'WAY_BILL:4:87504'"> |
| | | <view @click="() => theFormDataClick(item)" v-if="item.actBusiness.actType == 'Offsetting' || item.actBusiness.actType == 'XsWaybill'"> |
| | | <image src="@/static/home/biaodan.png" mode=""></image> |
| | | <view>申请详情</view> |
| | | </view> |
| | | <view @click="approvalHistoryClick(item.procInstId)"> |
| | | <view @click="() => approvalHistoryClick(item.procInstId)"> |
| | | <image src="@/static/home/history.png" mode=""></image> |
| | | <view>审批历史</view> |
| | | </view> |
| | | <view @click="deleteApplicationClick(item.id)"> |
| | | <view @click="() => deleteApplicationClick(item.id)"> |
| | | <image src="@/static/home/delete.png" mode=""></image> |
| | | <view>删除</view> |
| | | </view> |
| | |
| | | </template> |
| | | </combination-card> |
| | | </u-checkbox-group> |
| | | </view> |
| | | |
| | | <view class="empty-placeH"> |
| | | |
| | | </view> |
| | | <!-- 底部全选 --> |
| | | <view class="bottomTabbar"> |
| | |
| | | <!-- <u-picker @cancel="statusSeletShow = false" @confirm="statusConfirm" :show="statusSeletShow" :columns="statusList"></u-picker> --> |
| | | |
| | | <!--返回顶部--> |
| | | <view class="back-top-container"> |
| | | <u-back-top :scroll-top="scrollTop"></u-back-top> |
| | | </view> |
| | | <view class="back-top-container"><u-back-top :scroll-top="scrollTop"></u-back-top></view> |
| | | |
| | | <!-- 菜单栏 --> |
| | | <popup-menu @menuShow="menushow" ref="menuRef"></popup-menu> |
| | |
| | | // console.log(a) |
| | | // }, |
| | | // 表单数据 |
| | | theFormDataClick(v) { |
| | | uni.navigateTo({ |
| | | url: `/pages/the-form-data/the-form-data?index=${v}` |
| | | }); |
| | | theFormDataClick(item) { |
| | | if(item?.actBusiness?.actType == 'Offsetting') { //收款 actType = ‘Offsetting’ |
| | | uni.navigateTo({ |
| | | url: `/pages/payment-form-data/payment-form-data?id=${item.tableId}`, |
| | | |
| | | }) |
| | | }else if(item?.actBusiness?.actType == 'XsWaybill') { |
| | | uni.navigateTo({ |
| | | url: `/pages/new-application-form-data/new-application-form-data?id=${item.tableId}` |
| | | }) |
| | | } |
| | | }, |
| | | // 审批历史 |
| | | approvalHistoryClick(v) { |
| | | uni.navigateTo({ |
| | | url: `/pages/approval-history/approval-history?index=${v}` |
| | | //url: `/pages/approval-history/approval-history?index=${v}` |
| | | url: `/pages/check-the-schedule/check-the-schedule?index=${v}` |
| | | }); |
| | | } |
| | | } |
| | |
| | | |
| | | <style lang="scss" scoped> |
| | | ::v-deep.my-have-todo { |
| | | width: 100%; |
| | | height: 100%; |
| | | // 搜索区域 |
| | | .searchContainer { |
| | | width: 94%; |
| | |
| | | } |
| | | } |
| | | |
| | | // 返回顶部 |
| | | .back-top-container{ |
| | | .u-transition{ |
| | | position:fixed; |
| | | bottom:vww(80)!important; |
| | | right:vww(20)!important; |
| | | } |
| | | } |
| | | // 返回顶部 |
| | | .back-top-container { |
| | | .u-transition { |
| | | position: fixed; |
| | | bottom: vww(80) !important; |
| | | right: vww(20) !important; |
| | | } |
| | | } |
| | | |
| | | // 底部站位 |
| | | .empty-placeH{ |
| | | height:vww(5); |
| | | } |
| | | |
| | | // 底部 |
| | | .bottomTabbar { |