|
...
|
...
|
@@ -17,14 +17,7 @@ |
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
/>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="到期日期" prop="expirationDate">
|
|
|
|
<el-date-picker clearable
|
|
|
|
v-model="queryParams.expirationDate"
|
|
|
|
type="date"
|
|
|
|
value-format="yyyy-MM-dd"
|
|
|
|
placeholder="请选择到期日期">
|
|
|
|
</el-date-picker>
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
<el-form-item label="甲方" prop="partyA">
|
|
|
|
<el-input
|
|
|
|
v-model="queryParams.partyA"
|
|
...
|
...
|
@@ -41,14 +34,6 @@ |
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
/>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="签订日期" prop="signingDate">
|
|
|
|
<el-date-picker clearable
|
|
|
|
v-model="queryParams.signingDate"
|
|
|
|
type="date"
|
|
|
|
value-format="yyyy-MM-dd"
|
|
|
|
placeholder="请选择签订日期">
|
|
|
|
</el-date-picker>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item>
|
|
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
...
|
...
|
@@ -129,7 +114,14 @@ |
|
|
|
<img v-if="scope.row.attachments" src="@/assets/images/PDF.png" @click="preview(scope.row.attachments)" width="40px" height="auto" style="cursor: pointer"/>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="合同状态" align="center" prop="status" />
|
|
|
|
<el-table-column label="合同状态" align="center" prop="status" >
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-tag v-if="scope.row.status=='0'" type="success">已完成</el-tag>
|
|
|
|
<el-tag v-if="scope.row.status=='1'" >进行中</el-tag>
|
|
|
|
<el-tag v-if="scope.row.status=='2'" type="warning">已终止</el-tag>
|
|
|
|
<el-tag v-if="scope.row.status=='3'" type="danger">已解除</el-tag>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-button
|
|
...
|
...
|
@@ -241,6 +233,7 @@ |
|
|
|
|
|
|
|
<script>
|
|
|
|
import { listComplianceReview, getComplianceReview, delComplianceReview, addComplianceReview, updateComplianceReview } from "@/api/compliancemanagement/compliancereview";
|
|
|
|
import { startProcess, stopProcess } from "@/api/workflow/process";
|
|
|
|
import VuePdf from 'vue-pdf';
|
|
|
|
export default {
|
|
|
|
name: "ComplianceReview",
|
|
...
|
...
|
@@ -493,6 +486,7 @@ export default { |
|
|
|
},
|
|
|
|
handleAgain(row) {
|
|
|
|
console.log(row)
|
|
|
|
// return
|
|
|
|
startProcess(row.procDefId,row).then((res) =>{
|
|
|
|
if(res){
|
|
|
|
this.$modal.msgSuccess("流程重启动成功");
|
...
|
...
|
|