Commit ee4c5c19 authored by 13841799530's avatar 13841799530
Browse files

Merge branch 'develop' of http://git.censoft.com.cn/BCDH-HSE/bcdh-app into develop

parents b7efb945 a8042319
Loading
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -621,6 +621,18 @@ const routes = [{
  },
  component: () => import( /* webpackChunkName: "SaveWorkbench" */ '../views/danger/dangerPatrol/statistics'),
},
// 巡查审批
{
  path: '/approval-patrol',
  name: 'approval-patrol',
  meta: {
    title: '巡查审批',
    index: 1
  },
  component: () => import( /* webpackChunkName: "SaveWorkbench" */ '../views/danger/dangerPatrol/approvalPatrol'),
},





+210 −0
Original line number Diff line number Diff line
<template>
    <div>
        <van-sticky>
            <LHeader :text="text"></LHeader>
        </van-sticky>
        <!-- tab标签 -->
        <van-tabs
            v-model="active"
            @change="postList"
            color="#2980f7"
            animated
            :sticky="true"
            offset-top="1.5rem"
        >
            <van-tab v-for="(item, key) in tabs" :key="key" :title="item.title">
                <!-- 内容列表 -->
                <div class="con-list">
                    <!-- v-for="(item, index) in messageList" :key="index" -->
                    <van-cell-group inset>
                        <van-row gutter>
                            <van-col span="24">
                                <span class="con_title">申请人: 陆佰万</span>
                            </van-col>
                        </van-row>
                        <van-row gutter>
                            <van-col span="24">
                                <span class="con_time">申请时间: 2022-02-25 08:25</span>
                            </van-col>
                        </van-row>
                        <van-row gutter>
                            <van-col span="24">申请原因: 应建立地下有限空间作业安全生产责任制、安全生产规章制度和操作规程。</van-col>
                        </van-row>
                        <van-row gutter class="cont-operation">
                            <van-col span="24" class="con_right">
                                <van-button color="#aaaaaa" size="mini" @click="overRule">退回</van-button>
                                <van-button type="info" size="mini" @click="agree">同意</van-button>
                            </van-col>
                        </van-row>
                    </van-cell-group>
                </div>

                <!-- 暂无数据 -->
                <!-- <div
                    style="
                        width: 100%;
                        text-align: center;
                        font-size: 0.48rem;
                        position: fixed;
                        top: 30%;
                    "
                    v-if="messageList.length == 0"
                >暂无数据</div>-->
            </van-tab>
        </van-tabs>
        <van-dialog
            v-model="show"
            title="退回原因"
            show-cancel-button
            confirmButtonColor="#1989fa"
            :beforeClose="beforeClose"
        >
            <van-form> 
                <van-field
                    v-model="content"
                    rows="3"
                    label
                    name="content"
                    type="textarea"
                    placeholder="请输入退回原因"
                />
            </van-form>
        </van-dialog>
    </div>
</template>

<script>
import LHeader from "@/components/header.vue";
import { getFun, postFun } from "@/service/table.js";
export default {
    name: "approval-patrol",
    components: {
        LHeader
    },
    data() {
        return {
            text: "巡查审批",
            messageList: [],
            active: 0,
            radio: "1",
            show: false,
            content: "", // 退回原因
            tabs: [
                {
                    title: "待审批",
                    api: "/rectification/list1"
                },
                {
                    title: "已审批",
                    api: "/rectification/list2"
                },
                {
                    title: "已退回",
                    api: "/rectification/finishList"
                }
            ]
        };
    },
    created() {
        // this.postList();
    },
    methods: {
        postList(val) {
            console.log(this.active);
            // this.$toast.loading({
            //     message: "加载中...",
            //     forbidClick: true,
            //     loadingType: "spinner",
            //     duration: 0
            // });
            // let formdata = new FormData();
            // postFun(this.tabs[this.active]["api"], formdata)
            //     .then(res => {
            //         console.log(res);
            //         this.$toast.clear();
            //         this.messageList = res.rows || res.data;
            //     })
            //     .catch(err => {
            //         console.log(err);
            //         this.$toast.clear();
            //         this.$toast.fail("加载失败,请稍后再试");
            //     });
        },
        // 拒绝
        overRule() {
            this.content = "";
            this.show = true;
        },
        // 同意
        agree() {},
        beforeClose(action, done) {
            if (action === "confirm") {
                // 如果未填退回原因 禁止关闭
                if(this.content){
                    // 请求接口然后关闭弹窗 执行done方法
                    done()
                }else{
                    this.$toast('退回原因不能为空');
                    done(false)
                }
            } else {
                done();
            }
        }
    }
};
</script>
<style lang="less" scoped>
/* @import url(); 引入css类 */
#app {
    font-family: "";
    color: #2c3e50;
}
.con-list {
    padding: 0;
    background-color: #f0f1f5;
    .van-cell-group--inset {
        margin: 0;
        margin-bottom: 0.26667rem;
        padding: 0.25rem;
        font-size: 0.4rem;
        position: relative;
        border-radius: 4%;
        box-shadow: 0px 0px 10px 2px #f3f3f3;
        width: 90%;
        margin: 0.4rem auto;
        .van-row {
            font-size: 0.4rem;
            line-height: 0.8rem;
            margin-bottom: 0;
            .con_title {
                color: #05a7f0;
                font-weight: 600;
            }
            .con_time {
                color: #878787;
                font-size: 14px;
            }
        }
        .con_right {
            display: flex;
            justify-content: flex-end;
            button {
                padding: 0 10px;
                margin: 0 5px 0 10px;
            }
        }
        .cont-operation {
            display: flex;
            align-items: center;
            margin-top: 10px;
        }
    }
}
/deep/.van-tab__pane-wrapper {
    min-height: 8rem;
}
.van-tabs__track {
    min-height: 3rem;
}
</style>
+1 −1
Original line number Diff line number Diff line
@@ -83,7 +83,7 @@ export default {
                    key: "4",
                    imgUrl: require("@/assets/workbench/danger-rectification.png"),
                    text: "巡查审批",
                    path: "",
                    path: "/approval-patrol",
                },
                {
                    key: "4",