|
@@ -149,6 +149,16 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
+ <el-divider content-position="left">盖章附件</el-divider>
|
|
|
+ <el-row>
|
|
|
+ <img style="width:50px;height:50px;"
|
|
|
+ :key="dict.pfiFileId"
|
|
|
+ src="../../../assets/images/pdf.png"
|
|
|
+ v-for="dict in creditSealList"
|
|
|
+ @click="handlePreview(dict)"
|
|
|
+ :title="dict.pfiFileName"
|
|
|
+ >
|
|
|
+ </el-row>
|
|
|
<div class="footer" style="float: right;
|
|
|
margin-bottom:2px;">
|
|
|
<el-button type="success" @click="getContractFile">预览文件</el-button>
|
|
@@ -189,7 +199,6 @@
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-form>
|
|
|
-
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
<el-button type="primary" @click="checkCode">确定</el-button>
|
|
|
<el-button @click="cancelMessage">取 消</el-button>
|
|
@@ -209,7 +218,7 @@
|
|
|
<script>
|
|
|
import {getCreditDetail,getFile} from "@/api/service/credit/credit";
|
|
|
import {accAdd} from "@/utils/calculation";
|
|
|
-import {getContractFile,sealRefuse} from "@/api/service/credit/creditHandle";
|
|
|
+import {getContractFile,sealRefuse,getCreditSealFile} from "@/api/service/credit/creditHandle";
|
|
|
import {sendMessage,checkCode,faceAuth,checkFaceAuth,contractSigning} from "@/api/service/credit/message";
|
|
|
import pdfShow from "./pdfShow";
|
|
|
import {getToken} from "@/utils/auth";
|
|
@@ -285,7 +294,9 @@ export default {
|
|
|
//平台审批状态
|
|
|
zfiPlatformStatus:'',
|
|
|
//融信状态
|
|
|
- zfiStatus:''
|
|
|
+ zfiStatus:'',
|
|
|
+ //盖章文件
|
|
|
+ creditSealList:[]
|
|
|
};
|
|
|
},
|
|
|
activated() {
|
|
@@ -340,7 +351,7 @@ export default {
|
|
|
//附件
|
|
|
this.getFile(this.payList);
|
|
|
}
|
|
|
-
|
|
|
+ this.getCreditSealFile();
|
|
|
})
|
|
|
},
|
|
|
methods: {
|
|
@@ -779,7 +790,16 @@ export default {
|
|
|
});
|
|
|
}
|
|
|
});
|
|
|
- }
|
|
|
+ },
|
|
|
+ //获取盖章文件
|
|
|
+ getCreditSealFile(){
|
|
|
+ getCreditSealFile(this.form).then((response) => {
|
|
|
+ if(response.data.list){
|
|
|
+ this.creditSealList = response.data.list;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+
|
|
|
}
|
|
|
};
|
|
|
</script>
|