|
|
@@ -400,7 +400,7 @@
|
|
|
|
|
|
</el-form>
|
|
|
</el-tab-pane>
|
|
|
- <el-tab-pane label="企业资质">
|
|
|
+ <el-tab-pane label="物资类">
|
|
|
<el-card class="box-card" style="margin-top: 10px;">
|
|
|
<div slot="header" class="clearfix">
|
|
|
<span style="font-weight: bold">企业资质</span>
|
|
|
@@ -443,6 +443,116 @@
|
|
|
<el-table-column prop="Remark" label="描述" show-overflow-tooltip></el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
+ <el-pagination small
|
|
|
+ @size-change="handleProjectSizeChange"
|
|
|
+ @current-change="handleProjectCurrentChange"
|
|
|
+ :current-page="currentPageProject"
|
|
|
+ :page-sizes="[10, 20, 30]"
|
|
|
+ :page-size="sizeProject"
|
|
|
+ layout="total, sizes, prev, pager, next,jumper"
|
|
|
+ :total="currentItemCountProject"
|
|
|
+ style="margin: 5px;">
|
|
|
+ </el-pagination>
|
|
|
+ </el-card>
|
|
|
+ </el-tab-pane>
|
|
|
+ <el-tab-pane label="基建类">
|
|
|
+ <el-card class="box-card" style="margin-top: 10px;">
|
|
|
+ <div slot="header" class="clearfix">
|
|
|
+ <span style="font-weight: bold">企业资质</span>
|
|
|
+ </div>
|
|
|
+ <el-table :data="subfileList2" border>
|
|
|
+ <el-table-column label="操作" width="150" align="center" fixed>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-button type="primary" plain size="mini" title="文件变更" @click="openDialog(scope.row)"
|
|
|
+ :disabled="InfoStatus > 0 || butnab">
|
|
|
+ 变更</el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="NeedFileType" label="文件分类" show-overflow-tooltip></el-table-column>
|
|
|
+ <el-table-column prop="OldFileUrlList" label="原文件" show-overflow-tooltip>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div v-for="(tmpUrl, index) in scope.row.OldFileUrlList">
|
|
|
+ <a :href="'http://'+fileurlcut(scope.row.OldFileUrl, index)" target="_blank"
|
|
|
+ class="buttonText">{{scope.row.OldFileName.split('$')[index]}}</a>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="OldEffectDate" label="原有效日期" show-overflow-tooltip>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ jstimehandle(scope.row.OldEffectDate+'') }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="FileUrlList" label="变更后文件" show-overflow-tooltip>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div v-for="(tmpUrl, index) in scope.row.FileUrlList">
|
|
|
+ <a :href="'http://'+fileurlcut(scope.row.FileUrl, index)" target="_blank"
|
|
|
+ class="buttonText">{{scope.row.FileName.split('$')[index]}}</a>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="EffectDate" label="变更后有效日期" show-overflow-tooltip >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ jstimehandle(scope.row.EffectDate+'') }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="Remark" label="描述" show-overflow-tooltip></el-table-column>
|
|
|
+ </el-table>
|
|
|
+
|
|
|
+ <el-pagination small
|
|
|
+ @size-change="handleProjectSizeChange"
|
|
|
+ @current-change="handleProjectCurrentChange"
|
|
|
+ :current-page="currentPageProject"
|
|
|
+ :page-sizes="[10, 20, 30]"
|
|
|
+ :page-size="sizeProject"
|
|
|
+ layout="total, sizes, prev, pager, next,jumper"
|
|
|
+ :total="currentItemCountProject"
|
|
|
+ style="margin: 5px;">
|
|
|
+ </el-pagination>
|
|
|
+ </el-card>
|
|
|
+ </el-tab-pane>
|
|
|
+ <el-tab-pane label="技术服务类">
|
|
|
+ <el-card class="box-card" style="margin-top: 10px;">
|
|
|
+ <div slot="header" class="clearfix">
|
|
|
+ <span style="font-weight: bold">企业资质</span>
|
|
|
+ </div>
|
|
|
+ <el-table :data="subfileList3" border>
|
|
|
+ <el-table-column label="操作" width="150" align="center" fixed>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-button type="primary" plain size="mini" title="文件变更" @click="openDialog(scope.row)"
|
|
|
+ :disabled="InfoStatus > 0 || butnab">
|
|
|
+ 变更</el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="NeedFileType" label="文件分类" show-overflow-tooltip></el-table-column>
|
|
|
+ <el-table-column prop="OldFileUrlList" label="原文件" show-overflow-tooltip>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div v-for="(tmpUrl, index) in scope.row.OldFileUrlList">
|
|
|
+ <a :href="'http://'+fileurlcut(scope.row.OldFileUrl, index)" target="_blank"
|
|
|
+ class="buttonText">{{scope.row.OldFileName.split('$')[index]}}</a>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="OldEffectDate" label="原有效日期" show-overflow-tooltip>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ jstimehandle(scope.row.OldEffectDate+'') }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="FileUrlList" label="变更后文件" show-overflow-tooltip>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div v-for="(tmpUrl, index) in scope.row.FileUrlList">
|
|
|
+ <a :href="'http://'+fileurlcut(scope.row.FileUrl, index)" target="_blank"
|
|
|
+ class="buttonText">{{scope.row.FileName.split('$')[index]}}</a>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="EffectDate" label="变更后有效日期" show-overflow-tooltip >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ jstimehandle(scope.row.EffectDate+'') }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="Remark" label="描述" show-overflow-tooltip></el-table-column>
|
|
|
+ </el-table>
|
|
|
+
|
|
|
<el-pagination small
|
|
|
@size-change="handleProjectSizeChange"
|
|
|
@current-change="handleProjectCurrentChange"
|
|
|
@@ -889,6 +999,8 @@
|
|
|
this.auditget()
|
|
|
this.getDictOptions()
|
|
|
this.getfilelist1()
|
|
|
+ this.getfilelist2()
|
|
|
+ this.getfilelist3()
|
|
|
|
|
|
this.getAccessCardNo()
|
|
|
},
|
|
|
@@ -1197,7 +1309,7 @@
|
|
|
let _this = this
|
|
|
const params = {
|
|
|
SupplierId: this.SuppId,
|
|
|
- SupplierTypeCode: '\'01\',\'02\',\'03\'',
|
|
|
+ SupplierTypeCode: '01',
|
|
|
_currentPage: this.currentPageProject,
|
|
|
_size: this.sizeProject
|
|
|
}
|
|
|
@@ -1472,7 +1584,7 @@
|
|
|
},
|
|
|
radioChange() {
|
|
|
if (this.shenheForm.SuccessStatus === 1) {
|
|
|
-
|
|
|
+
|
|
|
if(this.InfoStatus == '5'){
|
|
|
this.textplaceholder = ''
|
|
|
}else{
|