123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 |
- <template>
- <view class="warp">
- <view class="topInfo">
- <view class="topInfo-item">
- <view class="flex info">
- <view class="logo">
- <image src="../../../static/img/reject.png" mode=""
- v-if="dataList.status == '已驳回'" style="height: 40rpx;">
- </image><!-- 驳回 -->
- <image src="../../../static/img/tongguo.png" mode=""
- v-else-if="dataList.status == '已通过'"
- style="height: 40rpx;"></image><!-- 通过 -->
- <image src="../../../static/img/daishenhe.png" mode=""
- v-else-if="dataList.approveStatus == '待人事审核' || dataList.approveStatus == '待主管审核'"
- style="height: 40rpx;"></image><!-- 待审核 -->
- </view>
- <view class="infoText" v-if="dataList.approveStatus">{{dataList.approveStatus}}</view>
- <view class="infoText" v-else>{{dataList.status}}</view>
- </view>
- <view class="infoData" v-if="dataList.updateDate">{{dataList.updateDate}}</view>
- </view>
- </view>
- <view class="content1">
- <!-- :model="OutList" -->
- <u-form ref="uForm">
- <u-form-item label="请假类型" prop="leaveType" label-width="140" class="uForm_item">
- <u-input v-model="dataList.leaveType" input-align="right" disabled v-if="dataList.leaveType"/>
- </u-form-item>
- <view class="uForm_item">
- <view class='row'>
- <view class="left">开始时间</view>
- <view class="right">{{dataList.startDate}}</view>
- </view>
- <view class='row'>
- <view class="left">结束时间</view>
- <view class="right">{{dataList.endDate}}</view>
- </view>
- <view class='row'>
- <view class="left">请假时长</view>
- <view class="right">{{dataList.leaveDuration}}</view>
- </view>
- <u-form-item label="请假事由" prop="reasonForLeave" label-width="160" label-position="top">
- <u-input v-model="dataList.reasonForLeave" input-align="left" placeholder="请输入请假事由"
- type="textarea" class="textarea" maxlength="150" />
- </u-form-item>
- </view>
- </u-form>
- </view>
- <view style='padding:10px;' class='flex bottom-btn'>
- <u-button @click='fanHui' type="success" class="btn1" hover-class='none'>返回</u-button>
- </view>
- </view>
- </template>
- <script>
- import {
- mapState
- } from 'vuex';
- export default {
- data() {
- return {
- id: "",
- show: false,
- show1: false,
- border: false,
- rejectInfo: "", //驳回原因
- leaveType:'',
- reasonForLeave:'',
- startDate:'',
- endDate:'',
- leaveDuration:'',
- leaveType:'',
- approveStatus:'',
- status:'',
- updateDate:'',
- dataList:{},
- }
- },
- // onReady() {
- // this.$refs.uForm.setRules(this.rules);
- // },
- onLoad(options) {
- this.id = options.id
- this.getList()
- },
- computed: {
- ...mapState(['hasLogin', 'userInfo']),
- },
- methods: {
- getList() {
- this.$api.doRequest('get', '/leaveInfo/getLeaveInfo', {
- id: this.id
- }).then(res => {
- if (res.data.code == 200) {
- this.dataList = res.data.data
-
- }
- })
- },
- fanHui() {
- uni.navigateBack()
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .content1 {
- margin: 10rpx;
- padding-bottom: 120rpx;
- .title {
- height: 70rpx;
- line-height: 60rpx;
- font-size: 32rpx;
- font-weight: 600;
- color: #333333;
- border-bottom: 2rpx solid #EEEEEE;
- }
- }
- .uForm {
- padding: 0 40rpx;
- }
- .u-form-item {
- padding: 0;
- }
- .bottom-btn {
- width: 100%;
- position: fixed;
- bottom: 0;
- display: flex;
- z-index: 2;
- left: 0;
- background-color: #f8f8f8;
- flex-direction: column;
- .btn1,
- .btn2 {
- width: 100%;
- margin-bottom: 26rpx;
- border-radius: 90rpx;
- }
- .btn1 {
- background: white;
- color: #00C265;
- }
- }
- .submit {
- width: 50%;
- background: #22C572;
- border-radius: 10rpx;
- }
- .part2 {
- margin-top: 20rpx;
- }
- .textarea {
- border: 1px solid #ccc;
- border-radius: 10rpx;
- background-color: #F9F9FA;
- height: 100px;
- }
- .row {
- display: flex;
- justify-content: space-between;
- // border-bottom: 1px solid #EEEEEE;
- padding: 21rpx 0;
- .right,
- input {
- font-size: 28rpx;
- color: #333333;
- }
- }
- //弹出框
- // .popup {
- // padding: 30rpx;
- // border-radius: 20rpx;
- // }
- .rejectInfoCss {
- border: 1px solid #ccc;
- border-radius: 10rpx;
- background-color: #F9F9FA;
- height: 100px;
- margin: 30rpx;
- }
- .uForm_item {
- padding: 20rpx;
- background-color: #FFFFFF;
- margin: 20rpx;
- border-radius: 20rpx;
- }
- .rejectText {
- text-align: center;
- }
- .topInfo {
- height: 210rpx;
- background: linear-gradient(270deg, #22C572 0%, #34DE8A 100%);
- padding: 30rpx;
- .topInfo-item {
- height: 150rpx;
- background-color: #FFFFFF;
- border-radius: 20rpx;
- padding: 40rpx;
- .logo {
- width: 40rpx;
- height: 40rpx;
- margin-top: 8rpx;
- }
- .infoText {
- font-size: 36rpx;
- font-weight: 600;
- margin-left: 20rpx;
- }
- .infoData {
- color: #878C9C;
- font-size: 26rpx;
- margin-top: 10rpx;
- }
- }
- }
- .deleteText {
- text-align: center;
- color: #AFB3BF;
- }
- </style>
|