|
@@ -482,6 +482,109 @@
|
|
|
</el-row>
|
|
</el-row>
|
|
|
</el-form>
|
|
</el-form>
|
|
|
</el-card>
|
|
</el-card>
|
|
|
|
|
+ <el-card class="box-card" style="margin-top: 10px;">
|
|
|
|
|
+ <div slot="header" class="clearfix">
|
|
|
|
|
+ <span><i class="icon icon-table2"></i> 企业资质</span>
|
|
|
|
|
+ <el-button style="float: right; padding: 3px 0" type="text" @click="showDialog" >添加</el-button>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <el-table size="mini" highlight-current-row :data="subfileList1" border>
|
|
|
|
|
+ <el-table-column label="操作" width="150" align="center" fixed>
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ <el-button type="primary" plain size="mini" title="文件变更" :disabled="formData.Status > 0" @click="openDialog(scope.row)">
|
|
|
|
|
+ 变更</el-button>
|
|
|
|
|
+ <el-button type="danger" plain size="mini" title="文件删除" @click="delFile(scope.row)"
|
|
|
|
|
+ v-if="formData.Status <= 0 && scope.row.FileType == 0 && scope.row.OldFileUrl == ''">
|
|
|
|
|
+ 删除</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> -->
|
|
|
|
|
+ <viewer :images="scope.row.OldFileUrlList">
|
|
|
|
|
+ <div v-for="(tmpUrl,index) in scope.row.OldFileUrlList" :key="index" style="vertical-align: middle; text-align: center;">
|
|
|
|
|
+ <el-link :href="'http://'+fileurlcut(scope.row.OldFileUrl, index)" target="_blank" type="primary"
|
|
|
|
|
+ v-if="imgFormat(scope.row.OldFileUrl, index)" >
|
|
|
|
|
+ {{scope.row.OldFileName.split('$')[index]}}</el-link>
|
|
|
|
|
+ <img
|
|
|
|
|
+ v-else
|
|
|
|
|
+ class="photoStyle" alt=""
|
|
|
|
|
+ :src="'http://'+fileurlcut(scope.row.OldFileUrl, index)"
|
|
|
|
|
+ :key="index">
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </viewer>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ </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">
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ <el-row align="middle">
|
|
|
|
|
+ <el-col :span="20">
|
|
|
|
|
+ <viewer :images="scope.row.FileUrlList">
|
|
|
|
|
+ <div v-for="(tmpUrl,index) in scope.row.FileUrlList" :key="index" style="vertical-align: middle; text-align: center;">
|
|
|
|
|
+ <el-link :href="'http://'+fileurlcut(scope.row.FileUrl, index)" target="_blank" type="primary"
|
|
|
|
|
+ v-if="imgFormat(scope.row.FileUrl, index)" >
|
|
|
|
|
+ {{scope.row.FileName.split('$')[index]}}</el-link>
|
|
|
|
|
+ <img
|
|
|
|
|
+ v-else
|
|
|
|
|
+ class="photoStyle" alt=""
|
|
|
|
|
+ :src="'http://'+fileurlcut(scope.row.FileUrl, index)"
|
|
|
|
|
+ :key="index">
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </viewer>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ <el-col :span="4" v-if="scope.row.FileUrl != '' && formData.Status <= 0 && formData.Status != -5">
|
|
|
|
|
+ <i class="el-icon-close" :style="{'float': 'right', 'height': '100%','line-height': lineheight(scope.row.FileUrlList.length) + 'px',}" @click="iconclear(scope.row)"></i>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ </el-row>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ <!-- <el-row align="middle">
|
|
|
|
|
+ <el-col :span="20">
|
|
|
|
|
+ <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>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ <el-col :span="4" v-if="scope.row.FileUrl != '' && formData.Status <= 0 && formData.Status != -5">
|
|
|
|
|
+ <i class="el-icon-close" :style="{'float': 'right', 'height': '100%','line-height': lineheight(scope.row.FileUrlList.length) + 'px',}" @click="iconclear(scope.row)"></i>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ </el-row> -->
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ </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>
|
|
|
|
|
+ <div style="float: right; margin: 20px;">
|
|
|
|
|
+ <el-button type="primary" size="mini" style="margin-right: 8px" @click="separateUnitSubmitClick"
|
|
|
|
|
+ v-if="formData.Id !='' && formData.Status <= 0 && formData.Status != -5 && IsCompanyUser == 0">提交审核
|
|
|
|
|
+ </el-button>
|
|
|
|
|
+ <el-button type="primary" size="mini" style="margin-right: 8px" @click="comSubmitToSeparateUnitClick"
|
|
|
|
|
+ v-if="formData.Id !='' && formData.Status <= 0 && formData.Status != -5 && IsCompanyUser == 1">提交
|
|
|
|
|
+ </el-button>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </el-card>
|
|
|
<!-- 增项分类列表 -->
|
|
<!-- 增项分类列表 -->
|
|
|
<el-row :gutter="2">
|
|
<el-row :gutter="2">
|
|
|
<el-col :span="12">
|
|
<el-col :span="12">
|
|
@@ -565,109 +668,6 @@
|
|
|
</el-card>
|
|
</el-card>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
</el-row>
|
|
</el-row>
|
|
|
- <el-card class="box-card" style="margin-top: 10px;">
|
|
|
|
|
- <div slot="header" class="clearfix">
|
|
|
|
|
- <span><i class="icon icon-table2"></i> 企业资质</span>
|
|
|
|
|
- <el-button style="float: right; padding: 3px 0" type="text" @click="showDialog" >添加</el-button>
|
|
|
|
|
- </div>
|
|
|
|
|
- <el-table size="mini" highlight-current-row :data="subfileList1" border>
|
|
|
|
|
- <el-table-column label="操作" width="150" align="center" fixed>
|
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
|
- <el-button type="primary" plain size="mini" title="文件变更" :disabled="formData.Status > 0" @click="openDialog(scope.row)">
|
|
|
|
|
- 变更</el-button>
|
|
|
|
|
- <el-button type="danger" plain size="mini" title="文件删除" @click="delFile(scope.row)"
|
|
|
|
|
- v-if="formData.Status <= 0 && scope.row.FileType == 0 && scope.row.OldFileUrl == ''">
|
|
|
|
|
- 删除</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> -->
|
|
|
|
|
- <viewer :images="scope.row.OldFileUrlList">
|
|
|
|
|
- <div v-for="(tmpUrl,index) in scope.row.OldFileUrlList" :key="index" style="vertical-align: middle; text-align: center;">
|
|
|
|
|
- <el-link :href="'http://'+fileurlcut(scope.row.OldFileUrl, index)" target="_blank" type="primary"
|
|
|
|
|
- v-if="imgFormat(scope.row.OldFileUrl, index)" >
|
|
|
|
|
- {{scope.row.OldFileName.split('$')[index]}}</el-link>
|
|
|
|
|
- <img
|
|
|
|
|
- v-else
|
|
|
|
|
- class="photoStyle" alt=""
|
|
|
|
|
- :src="'http://'+fileurlcut(scope.row.OldFileUrl, index)"
|
|
|
|
|
- :key="index">
|
|
|
|
|
- </div>
|
|
|
|
|
- </viewer>
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
- </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">
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
- <el-row align="middle">
|
|
|
|
|
- <el-col :span="20">
|
|
|
|
|
- <viewer :images="scope.row.FileUrlList">
|
|
|
|
|
- <div v-for="(tmpUrl,index) in scope.row.FileUrlList" :key="index" style="vertical-align: middle; text-align: center;">
|
|
|
|
|
- <el-link :href="'http://'+fileurlcut(scope.row.FileUrl, index)" target="_blank" type="primary"
|
|
|
|
|
- v-if="imgFormat(scope.row.FileUrl, index)" >
|
|
|
|
|
- {{scope.row.FileName.split('$')[index]}}</el-link>
|
|
|
|
|
- <img
|
|
|
|
|
- v-else
|
|
|
|
|
- class="photoStyle" alt=""
|
|
|
|
|
- :src="'http://'+fileurlcut(scope.row.FileUrl, index)"
|
|
|
|
|
- :key="index">
|
|
|
|
|
- </div>
|
|
|
|
|
- </viewer>
|
|
|
|
|
- </el-col>
|
|
|
|
|
- <el-col :span="4" v-if="scope.row.FileUrl != '' && formData.Status <= 0 && formData.Status != -5">
|
|
|
|
|
- <i class="el-icon-close" :style="{'float': 'right', 'height': '100%','line-height': lineheight(scope.row.FileUrlList.length) + 'px',}" @click="iconclear(scope.row)"></i>
|
|
|
|
|
- </el-col>
|
|
|
|
|
- </el-row>
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
- <!-- <el-row align="middle">
|
|
|
|
|
- <el-col :span="20">
|
|
|
|
|
- <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>
|
|
|
|
|
- </el-col>
|
|
|
|
|
- <el-col :span="4" v-if="scope.row.FileUrl != '' && formData.Status <= 0 && formData.Status != -5">
|
|
|
|
|
- <i class="el-icon-close" :style="{'float': 'right', 'height': '100%','line-height': lineheight(scope.row.FileUrlList.length) + 'px',}" @click="iconclear(scope.row)"></i>
|
|
|
|
|
- </el-col>
|
|
|
|
|
- </el-row> -->
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
- </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>
|
|
|
|
|
- <div style="float: right; margin: 20px;">
|
|
|
|
|
- <el-button type="primary" size="mini" style="margin-right: 8px" @click="separateUnitSubmitClick"
|
|
|
|
|
- v-if="formData.Id !='' && formData.Status <= 0 && formData.Status != -5 && IsCompanyUser == 0">提交审核
|
|
|
|
|
- </el-button>
|
|
|
|
|
- <el-button type="primary" size="mini" style="margin-right: 8px" @click="comSubmitToSeparateUnitClick"
|
|
|
|
|
- v-if="formData.Id !='' && formData.Status <= 0 && formData.Status != -5 && IsCompanyUser == 1">提交
|
|
|
|
|
- </el-button>
|
|
|
|
|
- </div>
|
|
|
|
|
- </el-card>
|
|
|
|
|
</el-tab-pane>
|
|
</el-tab-pane>
|
|
|
</el-tabs>
|
|
</el-tabs>
|
|
|
</div>
|
|
</div>
|