|
|
|
@ -1,10 +1,10 @@
|
|
|
|
|
<template>
|
|
|
|
|
<div class="app-container" id="app-container">
|
|
|
|
|
<el-form id="I-form" :model="queryParams" ref="queryForm" size="small" :inline="true">
|
|
|
|
|
<el-form-item label="企业名录分类" prop="enterpriseDirectory">
|
|
|
|
|
<el-form-item label="申报任务标题" prop="enterpriseDirectory">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryParams.enterpriseDirectory"
|
|
|
|
|
placeholder="请输入业名录分类"
|
|
|
|
|
placeholder="请输入申报任务标题"
|
|
|
|
|
clearable
|
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
|
/>
|
|
|
|
@ -49,25 +49,33 @@
|
|
|
|
|
v-loading="loading"
|
|
|
|
|
:data="contentList"
|
|
|
|
|
:height="tabHeader"
|
|
|
|
|
class="table-lists"
|
|
|
|
|
>
|
|
|
|
|
<el-table-column label="序号" align="center" width="50" fixed>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{(queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1}}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="enterpriseDirectory" label="企业名录分类" :show-overflow-tooltip="true" min-width="190"></el-table-column>
|
|
|
|
|
<el-table-column prop="enterpriseDirectory" label="申报任务标题" :show-overflow-tooltip="true" min-width="190"></el-table-column>
|
|
|
|
|
<!-- <el-table-column prop="enterpriseDirectory" label="企业名录分类" :show-overflow-tooltip="true" min-width="190"></el-table-column> -->
|
|
|
|
|
<el-table-column prop="templateName" label="模版名称" min-width="180" :show-overflow-tooltip="true"></el-table-column>
|
|
|
|
|
<el-table-column label="级别" min-width="60">
|
|
|
|
|
<el-table-column label="状态" min-width="50" >
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<dict-tag :options="dict.type.bms_level" :value="scope.row.level"/>
|
|
|
|
|
<span :class="scope.row.status == 2 ? 'tab-green' : scope.row.status == 1 ? 'tab-red' : scope.row.status == 0 ? 'tab-blue' : ''">{{ scope.row.status == 2 ? '有效' : scope.row.status == 1 ? '过期' : scope.row.status == 0 ? '未开始' : '' }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="perms" label="申报途径" min-width="100" :show-overflow-tooltip="true">
|
|
|
|
|
<!-- <el-table-column label="级别" min-width="60">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<dict-tag :options="dict.type.bms_level" :value="scope.row.level"/>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column> -->
|
|
|
|
|
<!-- <el-table-column prop="perms" label="申报途径" min-width="100" :show-overflow-tooltip="true">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<dict-tag :options="dict.type.bms_declaration_channels" :value="scope.row.road"/>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" label="开放时间" :show-overflow-tooltip="true" min-width="180" >
|
|
|
|
|
</el-table-column> -->
|
|
|
|
|
<!-- <el-table-column align="center" label="开放时间" :show-overflow-tooltip="true" min-width="180" > -->
|
|
|
|
|
<el-table-column align="center" label="任务填报时间" :show-overflow-tooltip="true" min-width="180" >
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ scope.row.startTime }}~{{ scope.row.endTime }}</span>
|
|
|
|
|
</template>
|
|
|
|
@ -77,20 +85,27 @@
|
|
|
|
|
<dict-tag :options="dict.type.bms_responsibility_unit" :value="scope.row.responsibilityUnit"/>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="notes" label="说明" min-width="210" :show-overflow-tooltip="true"></el-table-column>
|
|
|
|
|
<el-table-column prop="notes" label="说明" min-width="80" :show-overflow-tooltip="true"></el-table-column>
|
|
|
|
|
<el-table-column label="创建时间" align="center" prop="createTime" min-width="160">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="createByName" label="创建人" min-width="80"></el-table-column>
|
|
|
|
|
<el-table-column label="操作" align="center" width="150" fixed="right">
|
|
|
|
|
<el-table-column label="操作" align="center" width="180" fixed="right">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<!-- <el-button
|
|
|
|
|
<el-button
|
|
|
|
|
size="mini"
|
|
|
|
|
type="text"
|
|
|
|
|
style="color: red;"
|
|
|
|
|
v-if="scope.row.status == 1"
|
|
|
|
|
@click="handleReplace(scope.row)"
|
|
|
|
|
>补录</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
size="mini"
|
|
|
|
|
type="text"
|
|
|
|
|
@click="handleUpdate(scope.row)"
|
|
|
|
|
>编辑</el-button> -->
|
|
|
|
|
>编辑</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
size="mini"
|
|
|
|
|
type="text"
|
|
|
|
@ -118,7 +133,7 @@
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
<el-form-item label="责任单位" prop="responsibilityUnit">
|
|
|
|
|
<el-select v-model="form.responsibilityUnit" placeholder="请选择责任单位" style="width: 100%;" @change="changeResponsibilityUnit">
|
|
|
|
|
<el-select v-model="form.responsibilityUnit" placeholder="请选择责任单位" style="width: 100%;" @change="changeResponsibilityUnit" :disabled="isReplace">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="dict in dict.type.bms_responsibility_unit"
|
|
|
|
|
:key="dict.value"
|
|
|
|
@ -128,9 +143,33 @@
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
<el-form-item label="项目分类" prop="projectClassify">
|
|
|
|
|
<el-select v-model="form.projectClassify" placeholder="请选择项目分类" style="width: 100%;" @change="changeProjectClassify" :disabled="isReplace">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="dict in dict.type.jjh_project_type"
|
|
|
|
|
:key="dict.value"
|
|
|
|
|
:label="dict.label"
|
|
|
|
|
:value="dict.value"
|
|
|
|
|
></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<!-- <el-col :span="24">
|
|
|
|
|
<el-form-item label="项目分类" prop="responsibilityUnit">
|
|
|
|
|
<el-select v-model="form.responsibilityUnit" placeholder="请选择项目分类" style="width: 100%;" @change="changeResponsibilityUnit">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="dict in dict.type.bms_responsibility_unit"
|
|
|
|
|
:key="dict.value"
|
|
|
|
|
:label="dict.label"
|
|
|
|
|
:value="dict.value"
|
|
|
|
|
></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col> -->
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
<el-form-item label="申报表单模版" prop="templateId">
|
|
|
|
|
<el-select v-model="form.templateId" placeholder="请选择申报表单模版" style="width: 100%;" @change="changeTemplate">
|
|
|
|
|
<el-select v-model="form.templateId" placeholder="请选择申报表单模版" style="width: 100%;" @change="changeTemplate" :disabled="isReplace">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="dict in templateList"
|
|
|
|
|
:key="dict.id"
|
|
|
|
@ -140,13 +179,19 @@
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
<!-- <el-col :span="24">
|
|
|
|
|
<el-form-item label="企业名录分类" prop="enterpriseDirectory">
|
|
|
|
|
<el-input v-model="form.enterpriseDirectory" placeholder="请选择申报表单模版后带出" disabled />
|
|
|
|
|
<el-input v-model="form.enterpriseDirectory" placeholder="请选择申报表单模版后带出" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col> -->
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
<el-form-item label="申报任务标题" prop="enterpriseDirectory">
|
|
|
|
|
<el-input v-model="form.enterpriseDirectory" placeholder="请输入申报任务标题" :disabled="isReplace" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
<el-form-item label="申报时间" prop="reportTime">
|
|
|
|
|
<!-- <el-form-item label="申报时间" prop="reportTime"> -->
|
|
|
|
|
<el-form-item label="任务填报时间" prop="reportTime">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
v-model="form.reportTime"
|
|
|
|
|
type="daterange"
|
|
|
|
@ -160,7 +205,7 @@
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
<!-- <el-col :span="24">
|
|
|
|
|
<el-form-item label="申报途径" prop="road">
|
|
|
|
|
<el-select v-model="form.road" placeholder="请选择申报途径" style="width: 100%;">
|
|
|
|
|
<el-option
|
|
|
|
@ -171,10 +216,10 @@
|
|
|
|
|
></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-col> -->
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
<el-form-item label="说明" prop="notes">
|
|
|
|
|
<el-input v-model="form.notes" type="textarea" placeholder="请输入说明"></el-input>
|
|
|
|
|
<el-input v-model="form.notes" type="textarea" placeholder="请输入说明" :disabled="isReplace"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="24">
|
|
|
|
@ -183,8 +228,8 @@
|
|
|
|
|
<el-radio label="0">Excel批量导入</el-radio>
|
|
|
|
|
</el-radio-group> -->
|
|
|
|
|
<el-radio-group v-model="form.isFrame">
|
|
|
|
|
<el-radio label="0">所有企业</el-radio>
|
|
|
|
|
<el-radio label="1">部分企业</el-radio>
|
|
|
|
|
<el-radio :label="0">所有企业</el-radio>
|
|
|
|
|
<el-radio :label="1">部分企业</el-radio>
|
|
|
|
|
</el-radio-group>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
@ -255,12 +300,13 @@
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import { listTemplate, listBusiness, exportData, addTemplateRecord, putTemplateRecord, listTemplateInfo, getTemplateRecord, uploadFile } from "@/api/onlineDeclartion/enterpriseDirectory"
|
|
|
|
|
import { listTemplate, listBusiness, exportData, addTemplateRecord, putTemplateRecord, listTemplateInfo, getTemplateRecord, uploadFile, allList, supplementation } from "@/api/onlineDeclartion/enterpriseDirectory"
|
|
|
|
|
import * as XLSX from 'xlsx'
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "EnterpriseDirectory",
|
|
|
|
|
dicts: ['sys_show_hide', 'sys_normal_disable', 'bms_responsibility_unit', 'bms_declaration_channels', 'bms_template_type', 'bms_level'],
|
|
|
|
|
// 'sys_show_hide', 'sys_normal_disable', 'bms_template_type',
|
|
|
|
|
dicts: ['bms_responsibility_unit', 'bms_declaration_channels', 'bms_level', 'jjh_project_type'],
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
// 遮罩层
|
|
|
|
@ -274,6 +320,8 @@ export default {
|
|
|
|
|
title: "",
|
|
|
|
|
// 是否显示弹出层
|
|
|
|
|
open: false,
|
|
|
|
|
// 是否是补录按钮点击
|
|
|
|
|
isReplace: false,
|
|
|
|
|
// 重新渲染表格状态
|
|
|
|
|
refreshTable: true,
|
|
|
|
|
total: 10,
|
|
|
|
@ -294,12 +342,18 @@ export default {
|
|
|
|
|
responsibilityUnit: [
|
|
|
|
|
{ required: true, message: "请选择责任单位", trigger: "blur" }
|
|
|
|
|
],
|
|
|
|
|
projectClassify: [
|
|
|
|
|
{ required: true, message: "请选择项目分类", trigger: "blur" }
|
|
|
|
|
],
|
|
|
|
|
templateId: [
|
|
|
|
|
{ required: true, message: "请选择模版", trigger: "blur" }
|
|
|
|
|
],
|
|
|
|
|
notes: [
|
|
|
|
|
{ required: true, message: "请输入说明", trigger: "blur" }
|
|
|
|
|
],
|
|
|
|
|
enterpriseDirectory: [
|
|
|
|
|
{ required: true, message: "请输入说明", trigger: "blur" }
|
|
|
|
|
],
|
|
|
|
|
road: [
|
|
|
|
|
{ required: true, message: "请选择申报途径", trigger: "blur" }
|
|
|
|
|
],
|
|
|
|
@ -324,6 +378,8 @@ export default {
|
|
|
|
|
fileList: [],
|
|
|
|
|
excelData: [],
|
|
|
|
|
tabHeader: undefined,
|
|
|
|
|
unitId: undefined,
|
|
|
|
|
projectId: undefined,
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
mounted() {
|
|
|
|
@ -354,8 +410,8 @@ export default {
|
|
|
|
|
getList() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
listTemplate(this.queryParams).then(response => {
|
|
|
|
|
this.contentList = response.rows;
|
|
|
|
|
this.total = response.total
|
|
|
|
|
this.contentList = response.data.records;
|
|
|
|
|
this.total = response.data.total
|
|
|
|
|
this.loading = false;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
@ -374,6 +430,7 @@ export default {
|
|
|
|
|
// 取消按钮
|
|
|
|
|
cancel() {
|
|
|
|
|
this.open = false;
|
|
|
|
|
this.isReplace = false;
|
|
|
|
|
this.reset();
|
|
|
|
|
},
|
|
|
|
|
// 表单重置
|
|
|
|
@ -385,7 +442,7 @@ export default {
|
|
|
|
|
road: undefined,
|
|
|
|
|
notes: undefined,
|
|
|
|
|
orderNum: undefined,
|
|
|
|
|
isFrame: "0",
|
|
|
|
|
isFrame: 0,
|
|
|
|
|
};
|
|
|
|
|
this.resetForm("form");
|
|
|
|
|
},
|
|
|
|
@ -402,8 +459,41 @@ export default {
|
|
|
|
|
handleAdd(row) {
|
|
|
|
|
this.reset();
|
|
|
|
|
this.open = true;
|
|
|
|
|
this.fileList = []
|
|
|
|
|
this.title = "在线申报企业名录";
|
|
|
|
|
this.isReplace = false;
|
|
|
|
|
this.fileList = [];
|
|
|
|
|
this.form.isFrame = 0;
|
|
|
|
|
this.title = "发布申报任务";
|
|
|
|
|
},
|
|
|
|
|
/** 补录按钮操作 */
|
|
|
|
|
handleReplace(row){
|
|
|
|
|
this.reset();
|
|
|
|
|
getTemplateRecord({templateRecordId: row.templateRecordId}).then(response => {
|
|
|
|
|
this.form = response.data;
|
|
|
|
|
this.open = true;
|
|
|
|
|
this.isReplace = true;
|
|
|
|
|
this.title = "申报补录";
|
|
|
|
|
this.form.responsibilityUnit = this.form.responsibilityUnit + ''
|
|
|
|
|
this.form.projectClassify = this.form.projectClassify + ''
|
|
|
|
|
this.form.road = this.form.road + ''
|
|
|
|
|
|
|
|
|
|
if(this.form.fileName) {
|
|
|
|
|
let fileList = this.form.fileName.split(',')
|
|
|
|
|
let isFrame
|
|
|
|
|
fileList.length > 0 ? isFrame = 1 : isFrame = 0
|
|
|
|
|
this.$set(this.form, 'isFrame', isFrame)
|
|
|
|
|
} else {
|
|
|
|
|
this.$set(this.form, 'isFrame', 0)
|
|
|
|
|
}
|
|
|
|
|
this.form.fileList = this.form.fileName || []
|
|
|
|
|
this.fileList = this.form.fileName || []
|
|
|
|
|
let arr = []
|
|
|
|
|
arr.push(this.form.startTime, this.form.endTime)
|
|
|
|
|
this.$set(this.form, 'reportTime', arr)
|
|
|
|
|
this.templateList = this.templateListLock.filter((item) => {
|
|
|
|
|
return item.responsibilityUnit == this.form.responsibilityUnit
|
|
|
|
|
})
|
|
|
|
|
// this.form.reportTime = [this.form.startTime, this.form.endTime]
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
/** 修改按钮操作 */
|
|
|
|
|
handleUpdate(row) {
|
|
|
|
@ -411,19 +501,26 @@ export default {
|
|
|
|
|
getTemplateRecord({templateRecordId: row.templateRecordId}).then(response => {
|
|
|
|
|
this.form = response.data;
|
|
|
|
|
this.open = true;
|
|
|
|
|
this.title = "在线申报企业名录";
|
|
|
|
|
this.isReplace = false;
|
|
|
|
|
this.title = "修改申报任务";
|
|
|
|
|
this.form.responsibilityUnit = this.form.responsibilityUnit + ''
|
|
|
|
|
this.form.projectClassify = this.form.projectClassify + ''
|
|
|
|
|
this.form.road = this.form.road + ''
|
|
|
|
|
this.form.isFrame = "0"
|
|
|
|
|
if(this.form.fileName) {
|
|
|
|
|
let fileList = this.form.fileName.split(',')
|
|
|
|
|
fileList.length > 0 ? this.form.isFrame = "1" : this.form.isFrame = "0"
|
|
|
|
|
let isFrame
|
|
|
|
|
fileList.length > 0 ? isFrame = 1 : isFrame = 0
|
|
|
|
|
this.$set(this.form, 'isFrame', isFrame)
|
|
|
|
|
} else {
|
|
|
|
|
this.$set(this.form, 'isFrame', 0)
|
|
|
|
|
}
|
|
|
|
|
this.form.fileList = this.form.fileName || []
|
|
|
|
|
this.fileList = this.form.fileName || []
|
|
|
|
|
let arr = []
|
|
|
|
|
arr.push(this.form.startTime, this.form.endTime)
|
|
|
|
|
this.$set(this.form, 'reportTime', arr)
|
|
|
|
|
|
|
|
|
|
// console.log(this.form,"form");
|
|
|
|
|
this.templateList = this.templateListLock.filter((item) => {
|
|
|
|
|
return item.responsibilityUnit == this.form.responsibilityUnit
|
|
|
|
|
})
|
|
|
|
@ -434,16 +531,25 @@ export default {
|
|
|
|
|
submitForm: function() {
|
|
|
|
|
this.$refs["form"].validate(valid => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
if (this.form.id != undefined) {
|
|
|
|
|
if(this.title == "申报补录") {
|
|
|
|
|
supplementation(this.form).then(res=>{
|
|
|
|
|
this.$modal.msgSuccess("补录成功");
|
|
|
|
|
this.open = false;
|
|
|
|
|
this.isReplace = false;
|
|
|
|
|
this.getList();
|
|
|
|
|
})
|
|
|
|
|
} else if (this.form.id != undefined) {
|
|
|
|
|
putTemplateRecord(this.form).then(response => {
|
|
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
|
|
this.open = false;
|
|
|
|
|
this.isReplace = false;
|
|
|
|
|
this.getList();
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
addTemplateRecord(this.form).then(response => {
|
|
|
|
|
this.$modal.msgSuccess("新增成功");
|
|
|
|
|
this.open = false;
|
|
|
|
|
this.isReplace = false;
|
|
|
|
|
this.getList();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
@ -495,21 +601,43 @@ export default {
|
|
|
|
|
window.URL.revokeObjectURL(url)
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
// 责任单位选择
|
|
|
|
|
changeResponsibilityUnit(valid) {
|
|
|
|
|
this.templateList = this.templateListLock.filter((item) => {
|
|
|
|
|
return item.responsibilityUnit == valid
|
|
|
|
|
})
|
|
|
|
|
this.unitId = valid;
|
|
|
|
|
|
|
|
|
|
if(this.projectId) {
|
|
|
|
|
// this.templateList = this.templateListLock.filter((item) => {
|
|
|
|
|
// return item.responsibilityUnit == valid
|
|
|
|
|
// })
|
|
|
|
|
allList({responsibilityUnit:Number(valid),projectClassify:Number(this.projectId)}).then(res=>{
|
|
|
|
|
console.log(res);
|
|
|
|
|
this.templateList = res.data || []
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
this.form.templateId = null
|
|
|
|
|
this.form.enterpriseDirectory = null
|
|
|
|
|
},
|
|
|
|
|
// 项目分类选择
|
|
|
|
|
changeProjectClassify(valId){
|
|
|
|
|
this.projectId = valId
|
|
|
|
|
if(this.unitId) {
|
|
|
|
|
// this.templateList = this.templateListLock.filter((item) => {
|
|
|
|
|
// return item.responsibilityUnit == valId
|
|
|
|
|
// })
|
|
|
|
|
allList({responsibilityUnit:Number(this.unitId),projectClassify:Number(valId)}).then(res=>{
|
|
|
|
|
console.log(res);
|
|
|
|
|
this.templateList = res.data || []
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
changeTemplate(){
|
|
|
|
|
this.templateList.forEach((item) => {
|
|
|
|
|
if(item.id == this.form.templateId){
|
|
|
|
|
this.form.enterpriseDirectory = item.templateName + '企业名录'
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
// this.templateList.forEach((item) => {
|
|
|
|
|
// if(item.id == this.form.templateId){
|
|
|
|
|
// this.form.enterpriseDirectory = item.templateName + '企业名录'
|
|
|
|
|
// }
|
|
|
|
|
// })
|
|
|
|
|
|
|
|
|
|
this.$forceUpdate()
|
|
|
|
|
// this.$forceUpdate()
|
|
|
|
|
},
|
|
|
|
|
changeDateRange(val) {
|
|
|
|
|
// console.log('val: ', val);
|
|
|
|
|