|
|
@@ -37,6 +37,10 @@
|
|
37
|
37
|
icon="el-icon-edit">修改</el-button>
|
|
38
|
38
|
<el-button size="mini" @click="checkDetail(scope.row)" type="text"
|
|
39
|
39
|
icon="el-icon-delete">查看详情</el-button>
|
|
|
40
|
+ <el-button size="mini" @click="consultantApplica(scope.row)" type="text"
|
|
|
41
|
+ icon="el-icon-tickets">法律顾问用印申请</el-button>
|
|
|
42
|
+ <el-button size="mini" @click="departmentApplica(scope.row)" type="text"
|
|
|
43
|
+ icon="el-icon-edit-outline">部门长用印申请</el-button>
|
|
40
|
44
|
</template>
|
|
41
|
45
|
</el-table-column>
|
|
42
|
46
|
</el-table>
|
|
|
@@ -115,6 +119,18 @@ export default {
|
|
115
|
119
|
this.loading = false;
|
|
116
|
120
|
})
|
|
117
|
121
|
},
|
|
|
122
|
+ // 法律顾问用印申请
|
|
|
123
|
+ consultantApplica(row) {
|
|
|
124
|
+ this.$modal.confirm("你确定要用印申请吗?").then((res) => {
|
|
|
125
|
+
|
|
|
126
|
+ }).catch(() =>{
|
|
|
127
|
+
|
|
|
128
|
+ })
|
|
|
129
|
+ },
|
|
|
130
|
+ // 部门长用印申请
|
|
|
131
|
+ departmentApplica(){
|
|
|
132
|
+
|
|
|
133
|
+ }
|
|
118
|
134
|
},
|
|
119
|
135
|
};
|
|
120
|
136
|
</script>
|