|
@@ -75,15 +75,15 @@
|
|
|
<div class="operation">
|
|
|
<!-- 结果 0 -->
|
|
|
<span v-if="item.status == 0">
|
|
|
- <a-button ghost @click="apply(item)" style="box-shadow: 8px 8px 8px rgba(128, 128, 128,.7);color:#00A0E9;">
|
|
|
+ <a-button ghost @click="apply(item)" style="\color:#00A0E9;">
|
|
|
提交申请
|
|
|
</a-button>
|
|
|
- <a-button ghost @click="edit(item)" style="box-shadow: 8px 8px 8px rgba(128, 128, 128,.7);color:orange;">
|
|
|
+ <a-button ghost @click="edit(item)" style="color:orange;">
|
|
|
编辑
|
|
|
</a-button>
|
|
|
|
|
|
<a-popconfirm title="确定删除吗?" placement="left" @confirm="() => remove(item)">
|
|
|
- <a-button ghost style="box-shadow: 8px 8px 8px rgba(128, 128, 128,.7);color:#4e73b9;">
|
|
|
+ <a-button ghost style="color:#4e73b9;">
|
|
|
删除
|
|
|
</a-button>
|
|
|
</a-popconfirm>
|
|
@@ -91,41 +91,33 @@
|
|
|
|
|
|
<!-- 处理中 渲染的按钮 -->
|
|
|
<span v-if="item.status == 1" class="ifBtn">
|
|
|
- <a-button ghost @click="cancel(item)" style="box-shadow: 8px 8px 8px rgba(128, 128, 128,.7);color:#A0522D;">
|
|
|
+ <a-button ghost @click="cancel(item)" style="color:#A0522D;">
|
|
|
撤回
|
|
|
</a-button>
|
|
|
- <a-button
|
|
|
- ghost
|
|
|
- @click="history(item)"
|
|
|
- style="box-shadow: 8px 8px 8px rgba(128, 128, 128,.7);color:#696969;"
|
|
|
- >
|
|
|
+ <a-button ghost @click="history(item)" style="color:#696969;">
|
|
|
查看进度
|
|
|
</a-button>
|
|
|
|
|
|
- <a-button ghost @click="detail(item)" style="box-shadow: 8px 8px 8px rgba(128, 128, 128,.7);color:#4682B4;">
|
|
|
+ <a-button ghost @click="detail(item)" style="color:#4682B4;">
|
|
|
表单数据
|
|
|
</a-button>
|
|
|
</span>
|
|
|
|
|
|
<!-- 驳回 状态 渲染的按钮 -->
|
|
|
<span v-if="item.status == 2 || item.status == 3" class="ifBtn">
|
|
|
- <a-button ghost @click="apply(item)" style="box-shadow: 8px 8px 8px rgba(128, 128, 128,.7);color:#008B8B;">
|
|
|
+ <a-button ghost @click="apply(item)" style="color:#008B8B;">
|
|
|
重新申请
|
|
|
</a-button>
|
|
|
- <a-button ghost @click="edit(item)" style="box-shadow: 8px 8px 8px rgba(128, 128, 128,.7);color:#006400;">
|
|
|
+ <a-button ghost @click="edit(item)" style="color:#006400;">
|
|
|
编辑
|
|
|
</a-button>
|
|
|
|
|
|
- <a-button
|
|
|
- ghost
|
|
|
- @click="history(item)"
|
|
|
- style="box-shadow: 8px 8px 8px rgba(128, 128, 128,.7);color:#696969;"
|
|
|
- >
|
|
|
+ <a-button ghost @click="history(item)" style="color:#696969;">
|
|
|
审批历史
|
|
|
</a-button>
|
|
|
|
|
|
<a-popconfirm title="确定删除吗?" placement="left" @confirm="() => remove(item)">
|
|
|
- <a-button ghost style="box-shadow: 8px 8px 8px rgba(128, 128, 128,.7);color:#DC143C;">
|
|
|
+ <a-button ghost style="color:#DC143C;">
|
|
|
删除
|
|
|
</a-button>
|
|
|
</a-popconfirm>
|