|
@@ -177,9 +177,9 @@
|
|
|
<a-table-column title="操作" dataIndex="" align="center" :width="200">
|
|
|
<template slot-scope="t, r">
|
|
|
<template v-if="r.status == 0">
|
|
|
- <!-- <a href="javascript:void(0);" style="color: #00A0E9" @click="apply(r)">提交申请</a>
|
|
|
+ <a href="javascript:void(0);" style="color: #00A0E9" @click="apply(r)">提交申请</a>
|
|
|
<a-divider type="vertical" />
|
|
|
- <a href="javascript:void(0);" @click="edit(r)" style="color: #000000">编辑</a> -->
|
|
|
+ <a href="javascript:void(0);" @click="edit(r)" style="color: #000000">编辑</a>
|
|
|
<a-divider type="vertical" />
|
|
|
<a-popconfirm title="确定删除吗?" @confirm="() => remove(r)">
|
|
|
<a href="javascript:void(0);" style="color: red">删除</a>
|
|
@@ -188,17 +188,17 @@
|
|
|
<template v-else-if="r.status == 1">
|
|
|
<a href="javascript:void(0);" @click="detail(r)">详情</a>
|
|
|
<a-divider type="vertical" />
|
|
|
- <!-- <a href="javascript:void(0);" @click="cancel(r)" style="color:orange;">撤回</a>
|
|
|
- <a-divider type="vertical" /> -->
|
|
|
+ <a href="javascript:void(0);" @click="cancel(r)" style="color:orange;">撤回</a>
|
|
|
+ <a-divider type="vertical" />
|
|
|
<a href="javascript:void(0);" @click="history(r)" style="color:gray;">审批历史</a>
|
|
|
</template>
|
|
|
<template v-else-if="(r.status == 2 && r.result == 3) || r.status == 3">
|
|
|
- <!-- <a-popconfirm title="确定再次提交申请吗?" @confirm="() => apply(r)">
|
|
|
+ <a-popconfirm title="确定再次提交申请吗?" @confirm="() => apply(r)">
|
|
|
<a href="javascript:void(0);" style="color:green;">再次申请</a>
|
|
|
</a-popconfirm>
|
|
|
<a-divider type="vertical" />
|
|
|
<a href="javascript:void(0);" @click="edit(r)" style="color:#000000;">编辑</a>
|
|
|
- <a-divider type="vertical" /> -->
|
|
|
+ <a-divider type="vertical" />
|
|
|
<a href="javascript:void(0);" @click="history(r)" style="color:gray;">审批历史</a>
|
|
|
<a-divider type="vertical" />
|
|
|
<a-popconfirm title="确定删除吗?" @confirm="() => remove(r)">
|