Commit 892296bb by swl

feat: gx

parent 36c685e4
No preview for this file type
...@@ -58,20 +58,20 @@ ...@@ -58,20 +58,20 @@
</el-table-column> </el-table-column>
<el-table-column width="120" label="状态" align="center"> <el-table-column width="120" label="状态" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<el-tag <el-tag type="warning" v-if="scope.row.state === 0">待审核</el-tag>
type="warning" <el-tag type="success" v-if="scope.row.state === 8"
v-if="scope.row.housingState === 0 && scope.row.state !== 8" >审核通过</el-tag
>待审核</el-tag
> >
<el-tag <el-tag type="danger" v-if="scope.row.state === 9">已驳回</el-tag>
<!-- <el-tag
type="warning" type="warning"
v-if="scope.row.housingState === 0 && scope.row.state === 8" v-if="scope.row.housingState === 0 && scope.row.state === 8"
>待复审</el-tag >待复审</el-tag
> >
<el-tag type="success" v-if="scope.row.housingState === 1" <el-tag type="success" v-if="scope.row.housingState === 1"
>初审通过</el-tag >初审通过</el-tag
> > -->
<el-tag type="warning" v-if="scope.row.housingState === 2" <!-- <el-tag type="warning" v-if="scope.row.housingState === 2"
>待终审</el-tag >待终审</el-tag
> >
<el-tag type="success" v-if="scope.row.housingState === 3" <el-tag type="success" v-if="scope.row.housingState === 3"
...@@ -88,7 +88,7 @@ ...@@ -88,7 +88,7 @@
> >
<el-tag type="success" v-if="scope.row.housingState === 7" <el-tag type="success" v-if="scope.row.housingState === 7"
>发放补贴</el-tag >发放补贴</el-tag
> > -->
</template> </template>
</el-table-column> </el-table-column>
<el-table-column fixed="right" label="操作" width="380" align="left"> <el-table-column fixed="right" label="操作" width="380" align="left">
...@@ -107,7 +107,12 @@ ...@@ -107,7 +107,12 @@
type="danger" type="danger"
size="mini" size="mini"
round round
v-if="scope.row.state === 8 || scope.row.state === 9" v-if="
(scope.row.housingState === 4 && scope.row.state === 9) ||
((scope.row.housingState === 0 ||
scope.row.housingState === 1) &&
(scope.row.state === 8 || scope.row.state === 9))
"
@click="revocationHandle(scope.row)" @click="revocationHandle(scope.row)"
>撤回</el-button >撤回</el-button
> >
......
...@@ -87,12 +87,7 @@ ...@@ -87,12 +87,7 @@
type="danger" type="danger"
size="mini" size="mini"
round round
v-if=" v-if="scope.row.state === 6 || scope.row.state === 4"
scope.row.state === 6 ||
scope.row.state === 2 ||
scope.row.state === 3 ||
scope.row.state === 4
"
@click="revocationHandle(scope.row)" @click="revocationHandle(scope.row)"
>撤回</el-button >撤回</el-button
> >
......
...@@ -83,12 +83,7 @@ ...@@ -83,12 +83,7 @@
type="danger" type="danger"
size="mini" size="mini"
round round
v-if=" v-if="scope.row.state === 2 || scope.row.state === 4"
scope.row.state === 6 ||
scope.row.state === 2 ||
scope.row.state === 3 ||
scope.row.state === 4
"
@click="revocationHandle(scope.row)" @click="revocationHandle(scope.row)"
>撤回</el-button >撤回</el-button
> >
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment