Browse Source

增加物流附件,去融资融信不可修改

xuefy 4 years ago
parent
commit
da3d11c4ab

+ 26 - 0
front-vue/src/views/service/credit/addInformation.vue

@@ -194,6 +194,28 @@
                         </template>
                         </template>
                     </el-table-column>
                     </el-table-column>
             </el-table>
             </el-table>
+            <!-- 物流附件 -->
+            <el-divider content-position="left">物流附件</el-divider>
+            <el-table :data="logisticsFileList"  style="width: 100%">
+                <el-table-column label="文件名称" align="center" prop="pfiFileName" show-overflow-tooltip />
+                <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width='300' fixed="right" >
+                        <template slot-scope="scope">
+                            <el-button
+                                size="mini"
+                                type="text"
+                                icon="el-icon-view"
+                                @click="handleDownload(scope.row)"
+                            >下载</el-button>
+                            <el-button
+                                size="mini"
+                                type="text"
+                                icon="el-icon-view"
+                                @click="handlePreview(scope.row)"
+                            >预览</el-button>
+                        </template>
+                    </el-table-column>
+            </el-table>
+
             <!-- 其他附件 -->
             <!-- 其他附件 -->
             <el-divider content-position="left">其他附件</el-divider>
             <el-divider content-position="left">其他附件</el-divider>
             <el-table :data="otherFileList"  style="width: 100%">
             <el-table :data="otherFileList"  style="width: 100%">
@@ -433,6 +455,8 @@ export default {
           contractFileList:[],
           contractFileList:[],
           //发票附件
           //发票附件
           invoiceFileList:[],
           invoiceFileList:[],
+          //物流附件
+          logisticsFileList:[],
           //其他文件
           //其他文件
           otherFileList:[] ,
           otherFileList:[] ,
           //盖章文件
           //盖章文件
@@ -529,6 +553,8 @@ export default {
                      this.contractFileList = response.data.contractFileList;
                      this.contractFileList = response.data.contractFileList;
                     //获取其他文件
                     //获取其他文件
                     this.otherFileList = response.data.otherFileList;
                     this.otherFileList = response.data.otherFileList;
+                    //获取物流文件
+                    this.logisticsFileList = response.data.logisticsFileList;
                 }
                 }
             });
             });
         },
         },

+ 25 - 0
front-vue/src/views/service/credit/applyCreditEdit.vue

@@ -172,6 +172,27 @@
                     </template>
                     </template>
                 </el-table-column>
                 </el-table-column>
         </el-table>
         </el-table>
+        <!-- 物流附件 -->
+        <el-divider content-position="left">物流附件</el-divider>
+        <el-table :data="logisticsFileList"  style="width: 100%">
+               <el-table-column label="文件名称" align="center" prop="pfiFileName" show-overflow-tooltip />
+               <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width='300' fixed="right" >
+                    <template slot-scope="scope">
+                        <el-button
+                            size="mini"
+                            type="text"
+                            icon="el-icon-view"
+                            @click="handleDownload(scope.row)"
+                        >下载</el-button>
+                        <el-button
+                            size="mini"
+                            type="text"
+                            icon="el-icon-view"
+                            @click="handlePreview(scope.row)"
+                        >预览</el-button>
+                    </template>
+                </el-table-column>
+        </el-table>
         <!-- 其他附件 -->
         <!-- 其他附件 -->
         <el-divider content-position="left">其他附件</el-divider>
         <el-divider content-position="left">其他附件</el-divider>
         <el-table :data="otherFileList"  style="width: 100%">
         <el-table :data="otherFileList"  style="width: 100%">
@@ -401,6 +422,8 @@ export default {
             contractFileList:[],
             contractFileList:[],
             //发票附件
             //发票附件
             invoiceFileList:[],
             invoiceFileList:[],
+            //物流附件
+            logisticsFileList:[],
             //其他文件
             //其他文件
             otherFileList:[],
             otherFileList:[],
             openFile:false,
             openFile:false,
@@ -467,6 +490,8 @@ export default {
                      this.contractFileList = response.data.contractFileList;
                      this.contractFileList = response.data.contractFileList;
                     //获取其他文件
                     //获取其他文件
                     this.otherFileList = response.data.otherFileList;
                     this.otherFileList = response.data.otherFileList;
+                    //获取物流文件
+                    this.logisticsFileList = response.data.logisticsFileList;
                 }
                 }
             });
             });
         },
         },

+ 25 - 0
front-vue/src/views/service/credit/approvalCreditDetail.vue

@@ -136,6 +136,27 @@
                         </template>
                         </template>
                     </el-table-column>
                     </el-table-column>
             </el-table>
             </el-table>
+            <!-- 物流附件 -->
+            <el-divider content-position="left">物流附件</el-divider>
+            <el-table :data="logisticsFileList" border style="width: 100%">
+                <el-table-column label="文件名称" align="center" prop="pfiFileName" show-overflow-tooltip />
+                <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width='300' fixed="right" >
+                        <template slot-scope="scope">
+                            <el-button
+                                size="mini"
+                                type="text"
+                                icon="el-icon-view"
+                                @click="handleDownload(scope.row)"
+                            >下载</el-button>
+                            <el-button
+                            size="mini"
+                            type="text"
+                            icon="el-icon-view"
+                            @click="handlePreview(scope.row)"
+                            >预览</el-button>
+                        </template>
+                    </el-table-column>
+            </el-table>
             <!-- 其他附件 -->
             <!-- 其他附件 -->
             <el-divider content-position="left">其他附件</el-divider>
             <el-divider content-position="left">其他附件</el-divider>
             <el-table :data="otherFileList" border style="width: 100%">
             <el-table :data="otherFileList" border style="width: 100%">
@@ -238,6 +259,8 @@ export default {
             contractFileList:[],
             contractFileList:[],
             //发票附件
             //发票附件
             invoiceFileList:[],
             invoiceFileList:[],
+            //物流附件
+            logisticsFileList:[],
             //其他文件
             //其他文件
             otherFileList:[],
             otherFileList:[],
             //盖章文件
             //盖章文件
@@ -324,6 +347,8 @@ export default {
                      this.contractFileList = response.data.contractFileList;
                      this.contractFileList = response.data.contractFileList;
                     //获取其他文件
                     //获取其他文件
                     this.otherFileList = response.data.otherFileList;
                     this.otherFileList = response.data.otherFileList;
+                    //获取物流附件
+                    this.logisticsFileList = response.data.logisticsFileList;
                 }
                 }
             });
             });
     },
     },

+ 25 - 0
front-vue/src/views/service/credit/confirmationAudit.vue

@@ -177,6 +177,27 @@
                         </template>
                         </template>
                     </el-table-column>
                     </el-table-column>
             </el-table>
             </el-table>
+            <!-- 物流附件 -->
+            <el-divider content-position="left">物流附件</el-divider>
+            <el-table :data="logisticsFileList"  style="width: 100%">
+                <el-table-column label="文件名称" align="center" prop="pfiFileName" show-overflow-tooltip />
+                <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width='300' fixed="right" >
+                        <template slot-scope="scope">
+                            <el-button
+                                size="mini"
+                                type="text"
+                                icon="el-icon-view"
+                                @click="handleDownload(scope.row)"
+                            >下载</el-button>
+                            <el-button
+                                size="mini"
+                                type="text"
+                                icon="el-icon-view"
+                                @click="handlePreview(scope.row)"
+                            >预览</el-button>
+                        </template>
+                    </el-table-column>
+            </el-table>
             <!-- 其他附件 -->
             <!-- 其他附件 -->
             <el-divider content-position="left">其他附件</el-divider>
             <el-divider content-position="left">其他附件</el-divider>
             <el-table :data="otherFileList"  style="width: 100%">
             <el-table :data="otherFileList"  style="width: 100%">
@@ -426,6 +447,8 @@ export default {
             contractFileList:[],
             contractFileList:[],
             //发票附件
             //发票附件
             invoiceFileList:[],
             invoiceFileList:[],
+            //物流附件
+            logisticsFileList:[],
             //其他文件
             //其他文件
             otherFileList:[],
             otherFileList:[],
             //盖章文件
             //盖章文件
@@ -601,6 +624,8 @@ export default {
                      this.contractFileList = response.data.contractFileList;
                      this.contractFileList = response.data.contractFileList;
                     //获取其他文件
                     //获取其他文件
                     this.otherFileList = response.data.otherFileList;
                     this.otherFileList = response.data.otherFileList;
+                    //获取物流附件
+                    this.logisticsFileList = response.data.logisticsFileList;
                 }
                 }
             });
             });
         },
         },

+ 25 - 0
front-vue/src/views/service/credit/creditSeal.vue

@@ -131,6 +131,27 @@
                     </template>
                     </template>
                 </el-table-column>
                 </el-table-column>
         </el-table>
         </el-table>
+        <!-- 物流附件 -->
+        <el-divider content-position="left">物流附件</el-divider>
+        <el-table :data="logisticsFileList"  style="width: 100%">
+               <el-table-column label="文件名称" align="center" prop="pfiFileName" show-overflow-tooltip />
+               <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width='300' fixed="right" >
+                    <template slot-scope="scope">
+                        <el-button
+                            size="mini"
+                            type="text"
+                            icon="el-icon-view"
+                            @click="handleDownload(scope.row)"
+                        >下载</el-button>
+                        <el-button
+                            size="mini"
+                            type="text"
+                            icon="el-icon-view"
+                            @click="handlePreview(scope.row)"
+                        >预览</el-button>
+                    </template>
+                </el-table-column>
+        </el-table>
         <!-- 其他附件 -->
         <!-- 其他附件 -->
         <el-divider content-position="left">其他附件</el-divider>
         <el-divider content-position="left">其他附件</el-divider>
         <el-table :data="otherFileList"  style="width: 100%">
         <el-table :data="otherFileList"  style="width: 100%">
@@ -277,6 +298,8 @@ export default {
             contractFileList:[],
             contractFileList:[],
             //发票附件
             //发票附件
             invoiceFileList:[],
             invoiceFileList:[],
+            //物流附件
+            logisticsFileList:[],
             //其他文件
             //其他文件
             otherFileList:[],
             otherFileList:[],
             pdfShowDialog : false,
             pdfShowDialog : false,
@@ -421,6 +444,8 @@ export default {
                      this.contractFileList = response.data.contractFileList;
                      this.contractFileList = response.data.contractFileList;
                     //获取其他文件
                     //获取其他文件
                     this.otherFileList = response.data.otherFileList;
                     this.otherFileList = response.data.otherFileList;
+                    //获取物流文件
+                    this.logisticsFileList = response.data.logisticsFileList;
                 }
                 }
             });
             });
         },
         },

+ 25 - 0
front-vue/src/views/service/credit/creditUpdate.vue

@@ -186,6 +186,27 @@
                     </template>
                     </template>
                 </el-table-column>
                 </el-table-column>
         </el-table>
         </el-table>
+        <!-- 物流附件 -->
+        <el-divider content-position="left">物流附件</el-divider>
+        <el-table :data="logisticsFileList"  style="width: 100%">
+               <el-table-column label="文件名称" align="center" prop="pfiFileName" show-overflow-tooltip />
+               <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width='300' fixed="right" >
+                    <template slot-scope="scope">
+                        <el-button
+                            size="mini"
+                            type="text"
+                            icon="el-icon-view"
+                            @click="handleDownload(scope.row)"
+                        >下载</el-button>
+                        <el-button
+                            size="mini"
+                            type="text"
+                            icon="el-icon-view"
+                            @click="handlePreview(scope.row)"
+                        >预览</el-button>
+                    </template>
+                </el-table-column>
+        </el-table>
         <!-- 其他附件 -->
         <!-- 其他附件 -->
         <el-divider content-position="left">其他附件</el-divider>
         <el-divider content-position="left">其他附件</el-divider>
         <el-table :data="otherFileList"  style="width: 100%">
         <el-table :data="otherFileList"  style="width: 100%">
@@ -412,6 +433,8 @@ export default {
           contractFileList:[],
           contractFileList:[],
           //发票附件
           //发票附件
           invoiceFileList:[],
           invoiceFileList:[],
+          //物流附件
+          logisticsFileList:[],
           //其他文件
           //其他文件
           otherFileList:[],
           otherFileList:[],
           pickerOptions:{
           pickerOptions:{
@@ -475,6 +498,8 @@ export default {
                      this.contractFileList = response.data.contractFileList;
                      this.contractFileList = response.data.contractFileList;
                     //获取其他文件
                     //获取其他文件
                     this.otherFileList = response.data.otherFileList;
                     this.otherFileList = response.data.otherFileList;
+                    //获取物流文件
+                    this.logisticsFileList = response.data.logisticsFileList;
                 }
                 }
             });
             });
         },
         },

+ 25 - 0
front-vue/src/views/service/credit/financeOpenUpdate.vue

@@ -179,6 +179,27 @@
                     </template>
                     </template>
                 </el-table-column>
                 </el-table-column>
         </el-table>
         </el-table>
+        <!-- 物流附件 -->
+        <el-divider content-position="left">物流附件</el-divider>
+        <el-table :data="logisticsFileList"  style="width: 100%">
+               <el-table-column label="文件名称" align="center" prop="pfiFileName" show-overflow-tooltip />
+               <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width='300' fixed="right" >
+                    <template slot-scope="scope">
+                        <el-button
+                            size="mini"
+                            type="text"
+                            icon="el-icon-view"
+                            @click="handleDownload(scope.row)"
+                        >下载</el-button>
+                        <el-button
+                            size="mini"
+                            type="text"
+                            icon="el-icon-view"
+                            @click="handlePreview(scope.row)"
+                        >预览</el-button>
+                    </template>
+                </el-table-column>
+        </el-table>
         <!-- 其他附件 -->
         <!-- 其他附件 -->
         <el-divider content-position="left">其他附件</el-divider>
         <el-divider content-position="left">其他附件</el-divider>
         <el-table :data="otherFileList"  style="width: 100%">
         <el-table :data="otherFileList"  style="width: 100%">
@@ -410,6 +431,8 @@ export default {
             contractFileList:[],
             contractFileList:[],
             //发票附件
             //发票附件
             invoiceFileList:[],
             invoiceFileList:[],
+            //物流附件
+            logisticsFileList:[],
             //其他文件
             //其他文件
             otherFileList:[],
             otherFileList:[],
             pickerOptions:{
             pickerOptions:{
@@ -555,6 +578,8 @@ export default {
                      this.contractFileList = response.data.contractFileList;
                      this.contractFileList = response.data.contractFileList;
                     //获取其他文件
                     //获取其他文件
                     this.otherFileList = response.data.otherFileList;
                     this.otherFileList = response.data.otherFileList;
+                    //获取物流文件
+                    this.logisticsFileList = response.data.logisticsFileList;
                 }
                 }
             });
             });
         },
         },

+ 2 - 2
front-vue/src/views/service/credit/goFinance.vue

@@ -13,8 +13,8 @@
       <el-row class="zap-form" style="padding-bottom: 0;">
       <el-row class="zap-form" style="padding-bottom: 0;">
         <el-col :span="12">
         <el-col :span="12">
             <el-form-item label="选择融信:" prop="zfrFinanceId" size="large">
             <el-form-item label="选择融信:" prop="zfrFinanceId" size="large">
-                <el-select v-model="form.zfrFinanceId" clearable @clear="clearBoth">
-                    <el-option v-for="(item,index) in financeInfList" :key="index" :label="item.zfiNumber" :value="item.zfiId" @click.native="amount(item)"></el-option>
+                <el-select v-model="form.zfrFinanceId" clearable @clear="clearBoth" :disabled="true">
+                    <el-option v-for="(item,index) in financeInfList" :key="index" :label="item.zfiNumber" :value="item.zfiId" @click.native="amount(item)" disabled></el-option>
                 </el-select>
                 </el-select>
             </el-form-item>
             </el-form-item>
         </el-col>
         </el-col>