This commit is contained in:
caoqianming 2021-03-17 09:46:37 +08:00
parent b012ae3a46
commit f175379237
1 changed files with 63 additions and 28 deletions

View File

@ -3,11 +3,24 @@
<div class="app-container"> <div class="app-container">
<el-card <div
style="margin-top: 10px" style="margin-top: 10px"
> >
<el-tabs v-model="activeName"> <el-tabs v-model="activeName">
<el-tab-pane label="待上报" name="first" lazy> <el-tab-pane label="待上报" name="first" lazy>
</el-tab-pane>
<el-tab-pane label="已上报" name="three" lazy>
</el-tab-pane>
<el-tab-pane label="待整改" name="secord" lazy>
</el-tab-pane>
<el-tab-pane label="已确认" name="fore" lazy>
</el-tab-pane>
</el-tabs>
</div>
<el-table <el-table
v-loading="listLoading" v-loading="listLoading"
:data="recordList" :data="recordList"
@ -30,43 +43,52 @@
</el-table-column> </el-table-column>
<el-table-column label="上报情况"> <el-table-column label="上报情况">
<template slot-scope="scope" <template slot-scope="scope"
>{{ scope.row.up_user }}/{{ scope.row.up_date }}</template v-if="scope.row.up_user_">{{ scope.row.up_user_.name }}/{{ scope.row.up_date }}</template
> >
</el-table-column> </el-table-column>
<el-table-column align="center" label="操作"> <el-table-column align="center" label="操作">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button
v-if="scope.row.state == '待上报'" v-if="scope.row.state == '待上报' && checkPermission(['record_update'])"
type="primary" type="primary"
:disabled="!checkPermission(['record_update'])"
size="small" size="small"
@click="handleUpdate(scope)" @click="handleUpdate(scope)"
>编辑</el-button >编辑</el-button
> >
<el-button <el-button
v-if="scope.row.state == '已提交'" v-if="scope.row.state == '待上报' && checkPermission(['record_up'])"
type="primary"
size="small"
@click="handleUp(scope)"
>上报</el-button
>
<el-button
v-if="scope.row.state == '已提交' && checkPermission(['record_confirm'])"
type="primary" type="primary"
:disabled="!checkPermission(['record_confirm'])"
size="small" size="small"
@click="handleConfirm(scope)" @click="handleConfirm(scope)"
>确认</el-button >确认</el-button
> >
<el-button <el-button
v-if="scope.state == '已提交'" v-if="scope.state == '已提交' && checkPermission(['record_reject'])"
:disabled="!checkPermission(['record_reject'])"
type="danger" type="danger"
size="small" size="small"
@click="handleReject(scope)" @click="handleReject(scope)"
>驳回</el-button >驳回</el-button
> >
<el-button
v-if="checkPermission(['record_view'])"
size="small"
@click="handleView(scope)"
>查看</el-button
>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<el-dialog
<el-dialog
:visible.sync="dialogVisible" :visible.sync="dialogVisible"
title="初始化任务" title="主动上报"
:close-on-click-modal="false" :close-on-click-modal="false"
> >
<taskinit ref="taskinit" @handleChose="chooseComplete"></taskinit> <taskinit ref="taskinit" @handleChose="chooseComplete"></taskinit>
@ -74,21 +96,6 @@
<el-drawer title="记录" :visible.sync="drawer" :with-header="false"> <el-drawer title="记录" :visible.sync="drawer" :with-header="false">
<recorddo ref="recorddo" :data="data" @handleDo="handleDo" v-if="drawer"></recorddo> <recorddo ref="recorddo" :data="data" @handleDo="handleDo" v-if="drawer"></recorddo>
</el-drawer> </el-drawer>
</el-tab-pane>
<el-tab-pane label="已上报" name="three" lazy>
</el-tab-pane>
<el-tab-pane label="待整改" name="secord" lazy>
</el-tab-pane>
<el-tab-pane label="已确认" name="fore" lazy>
</el-tab-pane>
</el-tabs>
</el-card>
</div> </div>
</template> </template>
<script> <script>
@ -132,10 +139,38 @@ export default {
}; };
this.drawer = true; this.drawer = true;
}, },
handleDo(data){ handleUp(scope) {
this.data = {
action: "up",
record: scope.row,
};
this.drawer = true;
},
handleDo(data){
this.drawer = false this.drawer = false
this.getRecordList() this.getRecordList()
} },
handleView(scope) {
this.data = {
action: "view",
record: scope.row,
};
this.drawer = true;
},
handleReject(scope) {
this.data = {
action: "reject",
record: scope.row,
};
this.drawer = true;
},
handleConfirm(scope) {
this.data = {
action: "reject",
record: scope.row,
};
this.drawer = true;
},
}, },
}; };
</script> </script>