|
@@ -130,11 +130,15 @@
|
|
|
<el-button style="margin: 0 2px" size="mini" slot="reference" type="text" v-hasPermi="['gather:GATHER:report']">上报</el-button>
|
|
|
</el-popconfirm>
|
|
|
</template>
|
|
|
- <el-popconfirm title="确定提交吗?" @confirm="handleApprove(scope.row)">
|
|
|
- <el-button style="margin: 0 2px" v-if="scope.row.approveStatus == 0 && scope.row.collStatus == 1" size="mini" v-hasPermi="['gather:GATHER:approve']" type="text" slot="reference">审核</el-button>
|
|
|
- </el-popconfirm>
|
|
|
- <el-button style="margin: 0 2px" v-if="scope.row.collStatus == 1" size="mini" type="text" @click="handleDetail(scope.row, 0)">查看</el-button>
|
|
|
+<!-- todo不加 template 会造成浏览器渲染问题 导致无法弹出 el-popconfirm 组件-->
|
|
|
+ <template v-if="scope.row.approveStatus == 0 && scope.row.collStatus == 1">
|
|
|
+ <el-popconfirm title="确定提交吗?" @confirm="handleApprove(scope.row)">
|
|
|
+ <el-button style="margin: 0 2px" size="mini" v-hasPermi="['gather:GATHER:approve']" type="text" slot="reference">审核</el-button>
|
|
|
+ </el-popconfirm>
|
|
|
+ </template>
|
|
|
|
|
|
+
|
|
|
+ <el-button style="margin: 0 2px" v-if="scope.row.collStatus == 1" size="mini" type="text" @click="handleDetail(scope.row, 0)">查看</el-button>
|
|
|
<el-button style="margin: 0 2px" v-if="scope.row.collStatus == 1 && scope.row.reportStatus == 0 && scope.row.approveStatus == 0" size="mini" type="text" @click="handleDetail(scope.row, 1)">修改</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|