1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411 |
- <template>
- <div class="app-container">
- <el-form
- :model="queryParams"
- ref="queryForm"
- size="small"
- :inline="true"
- v-show="showSearch"
- >
- <el-form-item label="保税区">
- <el-select v-model="queryParams.deptId" placeholder="请选择保税区">
- <el-option
- v-for="item in regionList"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- >
- </el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="采集状态" prop="collStatus">
- <el-select
- v-model="queryParams.collStatus"
- placeholder="请选择采集状态"
- clearable
- filterable
- class="se"
- >
- <el-option
- v-for="dict in collStatus"
- :key="dict.value + 'collStatus'"
- :label="dict.label"
- :value="dict.value"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="上报状态" prop="reportStatus">
- <el-select
- v-model="queryParams.reportStatus"
- placeholder="请选择上报状态"
- clearable
- filterable
- class="se"
- >
- <el-option
- v-for="dict in reportStatus"
- :key="dict.value + 'reportStatus'"
- :label="dict.label"
- :value="dict.value"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="审核状态" prop="approveStatus">
- <el-select
- v-model="queryParams.approveStatus"
- placeholder="请选择审核状态"
- clearable
- filterable
- class="se"
- >
- <el-option
- v-for="(dict, index) in approveStatus"
- :key="dict.value + 'approveStatus'"
- :label="dict.label"
- :value="dict.value"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="年度" prop="year">
- <el-date-picker
- v-model="queryParams.year"
- type="year"
- format="yyyy"
- value-format="yyyy"
- placeholder="选择年度"
- class="se"
- ></el-date-picker>
- </el-form-item>
- <el-form-item label="月份" prop="month">
- <!-- <el-date-picker
- v-model="queryParams.month"
- type="month"
- format="MM"
- value-format="MM"
- placeholder="选择月份"
- class="se"
- ></el-date-picker> -->
- <el-select v-model="queryParams.month" placeholder="请选择月份">
- <el-option
- v-for="item in monthOpt"
- :key="item.value"
- :label="item.label"
- :value="item.value">
- </el-option>
- </el-select>
- </el-form-item>
- <el-form-item>
- <el-button type="primary" icon="el-icon-search" @click="handleQuery"
- >搜索</el-button
- >
- <el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
- </el-form-item>
- </el-form>
- <el-row :gutter="10" class="mb8">
- <el-col :span="1.5">
- <el-button
- type="success"
- v-hasPermi="['gather:GATHER:upload']"
- @click="onOpenDialog('old')"
- >历史数据导入</el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="success"
- v-hasPermi="['gather:GATHER:uploadnew']"
- @click="onOpenDialog('new')"
- >导入</el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button
- @click="handleDownload()"
- v-hasPermi="['gather:GATHER:download']"
- :title="radio === '' ? '请先选择下面对应的单位模板' : ''"
- :disabled="radio === '' ? true : false"
- >下载导入模板</el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="danger"
- plain
- @click="importFile({ type: '0', mark: '1' })"
- v-hasPermi="['gather:GATHER:customsMrak']"
- >海关部分贸易导入</el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="danger"
- plain
- @click="importFile({ type: '0', mark: '2' })"
- v-hasPermi="['gather:GATHER:customs']"
- >海关进出口总值导入</el-button
- >
- </el-col>
- <right-toolbar
- :showSearch.sync="showSearch"
- @queryTable="getList"
- ></right-toolbar>
- </el-row>
- <el-table
- :data="GATHERList"
- @selection-change="handleSelectionChange"
- @row-click="showRow"
- >
- <!-- @current-change="handleCurrentChange" -->
- <el-table-column label="选择" fixed="left" width="70" center>
- <template scope="scope">
- <el-radio
- class="radio"
- v-model="radio"
- :label="scope.$index"
- @change.native="getCurrentRow(scope.row)"
- >{{ "" }}</el-radio
- >
- </template>
- </el-table-column>
- <!-- <el-table-column type="selection" width="55" align="center" /> -->
- <el-table-column label="单位名称" fixed width="150" align="center" prop="deptId_dictText">
- <template slot-scope="scope">
- {{ scope.row.deptId_dictText }}
- </template>
- </el-table-column>
- <el-table-column label="数据类型" width="140" align="center" prop="type">
- <template slot-scope="scope">
- <span v-if="scope.row.type == 0">量化指标数据</span>
- <span v-if="scope.row.type == 1">月报表数据</span>
- </template>
- </el-table-column>
- <el-table-column label="年份" align="center" prop="month">
- <template slot-scope="scope">
- {{ scope.row.year }}
- </template>
- </el-table-column>
- <el-table-column label="月份" align="center" prop="month">
- <template slot-scope="scope">
- {{ "01-" + scope.row.month }}
- </template>
- </el-table-column>
- <el-table-column label="采集状态" align="center" prop="collStatus">
- <template slot-scope="scope">
- <span v-if="scope.row.collStatus == 0">未采集</span>
- <span v-if="scope.row.collStatus == 1">已采集</span>
- <span v-if="scope.row.collStatus == 2">草稿</span>
- </template>
- </el-table-column>
- <el-table-column
- label="采集人"
- align="center"
- prop="collName"
- width="110"
- >
- <template slot-scope="scope">
- <span>{{ scope.row.collName }}</span>
- </template>
- </el-table-column>
- <el-table-column
- label="采集时间"
- align="center"
- prop="collTime"
- width="160"
- >
- </el-table-column>
- <el-table-column label="上报状态" align="center" prop="reportStatus">
- <template slot-scope="scope">
- <span v-if="scope.row.reportStatus == 0">未上报</span>
- <span v-if="scope.row.reportStatus == 1">已上报</span>
- </template>
- </el-table-column>
- <el-table-column
- label="上报人"
- align="center"
- prop="reportName"
- width="160"
- />
- <el-table-column
- width="160"
- label="上报时间"
- align="center"
- prop="reportTime"
- />
- <el-table-column
- label="审核人"
- align="center"
- prop="approveName"
- width="160"
- />
- <el-table-column
- label="审核时间"
- align="center"
- prop="approveTime"
- width="160"
- />
- <el-table-column label="审核状态" align="center" prop="approveStatus">
- <template slot-scope="scope">
- <span>{{
- scope.row.approveStatus == 0
- ? "未审核"
- : scope.row.approveStatus == 1
- ? "审核中"
- : scope.row.approveStatus == 2
- ? "审核通过"
- : "审核拒绝"
- }}</span>
- </template>
- </el-table-column>
- <el-table-column
- label="驳回时间"
- align="center"
- prop="collTime"
- width="160"
- >
- </el-table-column>
- <el-table-column
- label="驳回姓名"
- align="center"
- prop="approveName"
- width="160"
- >
- </el-table-column>
- <el-table-column
- label="操作"
- align="center"
- fixed="right"
- width="220"
- class-name="small-padding fixed-width"
- >
- <template slot-scope="scope">
- <template
- v-if="
- scope.row.collStatus == 0 && checkPermi(['gather:GATHER:typein'])
- "
- >
- <el-button
- style="margin: 0 2px"
- size="mini"
- type="text"
- @click="handleUpdate(scope.row)"
- >录入</el-button
- >
- </template>
- <template
- v-if="(scope.row.collStatus == 0 || scope.row.collStatus == 1||scope.row.collStatus == 2) && (scope.row.approveStatus == 0 || scope.row.approveStatus == 3)
- && checkPermi(['gather:GATHER:admin'])"
- >
- <el-button
- style="margin: 0 2px"
- size="mini"
- type="text"
- @click="handleUpdate(scope.row)"
- >湾办录入</el-button
- >
- </template>
- <template
- v-if="
- scope.row.collStatus == 1 &&
- (scope.row.approveStatus == 0 || scope.row.approveStatus == 3) &&
- checkPermi(['gather:GATHER:approve'])
- "
- >
-
- <el-button
- @click="handleDetail(scope.row)"
- style="margin: 0 2px"
- size="mini"
- type="text"
- slot="reference"
- >提交审核</el-button
- >
- </template>
- <!-- <template
- v-if="
- scope.row.approveStatus == 1 &&
- checkPermi(['gather:GATHER:check'])
- "
- >
- <el-button
- @click="handleApprove(scope.row)"
- style="margin: 0 2px"
- size="mini"
- type="text"
- slot="reference"
- >审核绩效</el-button
- >
- </template> -->
- <!-- 已采集,审核通过,未上报 -->
- <template
- v-if="
- scope.row.collStatus == 1 &&
- (scope.row.reportStatus == 0 || scope.row.reportStatus == null) &&
- scope.row.approveStatus == 2 &&
- checkPermi(['gather:GATHER:report'])
- "
- >
- <el-popconfirm
- title="确定上报吗?"
- @confirm="handleReport(scope.row)"
- >
- <el-button
- style="margin: 0 2px"
- size="mini"
- slot="reference"
- type="text"
- >上报</el-button
- >
- </el-popconfirm>
- </template>
- <el-button
- v-if="scope.row.collStatus == 1"
- style="margin: 0 2px"
- size="mini"
- type="text"
- @click="handleDetail(scope.row, 0)"
- >查看</el-button
- >
- <!-- {{scope.row.collStatus}}--{{scope.row.approveStatus}} -->
-
- <el-button
- style="margin: 0 2px"
- v-if="
- scope.row.collStatus == 2 &&
- (scope.row.approveStatus == 0 || scope.row.approveStatus == 3) &&
- checkPermi(['gather:GATHER:edit']) // 编辑权限
- "
- size="mini"
- type="text"
- @click="handleDetail(scope.row, 1)"
- >确定</el-button
- >
- <el-button
- style="margin: 0 2px"
- v-if="
- (scope.row.collStatus == 1 || scope.row.collStatus == 2) &&
- (scope.row.approveStatus == 0 || scope.row.approveStatus == 3) &&
- checkPermi(['gather:GATHER:edit']) // 编辑权限
- "
- size="mini"
- type="text"
- @click="handleDetail(scope.row, 1)"
- >修改</el-button
- >
- </template>
- </el-table-column>
- </el-table>
- <pagination
- v-show="total > 0"
- :total="total"
- :page.sync="queryParams.pageNum"
- :limit.sync="queryParams.pageSize"
- @pagination="getList"
- />
- <!-- 上传文件对话框 历史数据导入 -->
- <el-dialog
- center
- title="导入"
- :visible.sync="openUpload"
- width="50%"
- append-to-body
- :close-on-click-modal="false"
- >
- <el-form
- ref="uploadForm"
- :model="uploadForm"
- :rules="rules"
- label-width="120px"
- >
- <!-- <el-form-item label="数据类型" prop="type">-->
- <!-- <el-select-->
- <!-- v-model="uploadForm.type"-->
- <!-- placeholder="请选择数据类型"-->
- <!-- clearable-->
- <!-- filterable-->
- <!-- >-->
- <!-- <el-option-->
- <!-- v-for="dict in typeList"-->
- <!-- :key="dict.value + 'typeList'"-->
- <!-- :label="dict.label"-->
- <!-- :value="dict.value"-->
- <!-- />-->
- <!-- </el-select>-->
- <!-- </el-form-item>-->
- <el-form-item label="文件" prop="linkUrl">
- <el-upload
- class="upload-demo"
- ref="upload"
- action="#"
- :http-request="httprequest"
- :before-upload="uploadFile"
- :file-list="fileList"
- :auto-upload="false"
- :limit="1"
- >
- <el-button slot="trigger" size="small" type="primary"
- >选取文件</el-button
- >
- </el-upload>
- </el-form-item>
- <div class="tips-text">
- <span class="tit">提示</span>
- <p>1.请先下载对应单位名称模板;</p>
- <p>2.上传前,请先检查数据的完整性;</p>
- </div>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitUpload">导 入</el-button>
- <el-button @click="cancel">取 消</el-button>
- </div>
- </el-dialog>
- <!-- 录入数据采集对话框 -->
- <el-dialog
- center
- :title="title"
- :visible.sync="open"
- width="80%"
- append-to-body
- :close-on-click-modal="false"
- >
- <!-- <el-tabs
- v-if="this.form.type == 0"
- v-model="activeName"
- type="border-card"
- @tab-click="handleClick"
- > -->
-
- <div
- v-for="(item, index) in tabList"
- :key="index + 'tabs'"
- :label="item.normName"
- :name="item.normName"
- >
- <el-col :span="24"
- style="border:1px solid rgba(0, 0, 0, .05); margin-bottom: 5px; padding: 4px;"
- >
- <p style="font-weight: 600;margin:0;margin-bottom: 5px; font-size: 17px;">{{ item.normName }}</p>
-
- <template v-for="listItem in form.feeLists">
- <el-form
-
- v-if="listItem.normId == item.normId"
- :rules="
- validatorList(
- listItem.normfeeCode,
- listItem.normfeeName,
- listItem.sendValue
- )
- "
- :model="listItem"
- :ref="'form' + listItem.normfeeId"
- :key="listItem.normfeeId"
- :disabled="listItem.sendValue == 1"
- >
- <el-col :span="6">
- <el-form-item
- style="padding:10px;"
- :label="
- listItem.normfeeName + '(' + listItem.funitName + ')'
- "
- prop="collCalue"
- >
- <el-input
- v-model="listItem.collCalue"
- :placeholder="'请输入' + listItem.normfeeName"
- ></el-input>
- </el-form-item>
- </el-col>
- </el-form>
- </template>
-
- </el-col>
- <!-- <el-col :span="8" v-else
- style="padding:10px;border:1px solid rgba(0, 0, 0, .05);width: 32%;margin: 5px;"
- >
- {{ item.normName }}
- <template v-for="listItem in form.feeLists">
- <el-form
- v-if="listItem.normId == item.normId"
- :rules="
- validatorList(
- listItem.normfeeCode,
- listItem.normfeeName,
- listItem.sendValue
- )
- "
- :model="listItem"
- :ref="'form' + listItem.normfeeId"
- :key="listItem.normfeeId"
- :disabled="listItem.sendValue == 1"
- >
- <el-col :span="24">
- <el-form-item
- :label="
- listItem.normfeeName + '(' + listItem.funitName + ')'
- "
- prop="collCalue"
- >
- <el-input
- v-model="listItem.collCalue"
- :placeholder="'请输入' + listItem.normfeeName"
- ></el-input>
- </el-form-item>
- </el-col>
- </el-form>
- </template>
- </el-col> -->
-
- <!-- <template v-for="listItem in form.feeLists">
- <el-form
- v-if="listItem.normId == item.normId"
- :rules="
- validatorList(
- listItem.normfeeCode,
- listItem.normfeeName,
- listItem.sendValue
- )
- "
- :model="listItem"
- :ref="'form' + listItem.normfeeId"
- :key="listItem.normfeeId"
- :disabled="listItem.sendValue == 1"
- >
- <el-col :span="8">
- <el-form-item
- :label="
- listItem.normfeeName + '(' + listItem.funitName + ')'
- "
- prop="collCalue"
- >
- <el-input
- v-model="listItem.collCalue"
- :placeholder="'请输入' + listItem.normfeeName"
- ></el-input>
- </el-form-item>
- </el-col>
- </el-form>
- </template> -->
-
- </div>
-
- <!-- </el-tabs> -->
-
- <div slot="footer" class="dialog-footer">
-
- <el-button v-if="checkPermi(['gather:GATHER:add'])" type="primary" @click="submitForm('add')">确 定</el-button>
- <el-button v-if="this.form.collStatus!=1 &&checkPermi(['gather:GATHER:draft'])" @click="submitForm('draft')" type="warning">暂 存</el-button>
- <el-button @click="cancel">取 消</el-button>
- </div>
- </el-dialog>
- <!-- 查看或修改 -->
- <el-dialog
- center
- @close="handleClose"
- :title="title"
- :visible.sync="openDetail"
- width="80%"
- append-to-body
- :close-on-click-modal="false"
- >
- <div
- v-for="(item, index) in tabList"
- :key="index + 'tabs'"
- :label="item.normName"
- :name="item.normName"
- >
- <el-col :span="24"
- style="border:1px solid rgba(0, 0, 0, .05); margin-bottom: 5px; padding: 4px"
- >
- <p style="font-weight: 600;margin:0; margin-bottom: 5px; font-size: 17px;">{{ item.normName }}</p>
-
- <template v-for="listItem in form.feeLists">
- <el-form
-
- v-if="listItem.normId == item.normId"
- :rules="
- validatorList(
- listItem.normfeeCode,
- listItem.normfeeName,
- listItem.sendValue
- )
- "
- :model="listItem"
- :ref="'form' + listItem.normfeeId"
- :key="listItem.normfeeId"
- :disabled="listItem.sendValue == 1"
- >
- <el-col :span="6">
- <el-form-item
- style="padding:10px;"
- :label="
- listItem.normfeeName + '(' + listItem.funitName + ')'
- "
- prop="collCalue"
- >
- <el-input
- :disabled="!edit"
- v-model="listItem.collCalue"
- :placeholder="'请输入' + listItem.normfeeName"
- ></el-input>
- </el-form-item>
- </el-col>
- </el-form>
- </template>
- </el-col>
- </div>
-
- <div slot="footer" class="dialog-footer">
- <el-button v-if="edit && (this.form.collStatus != 2 && this.form.collStatus==1)" type="primary" @click="handleAudit(form)">提交审核</el-button>
- <el-button type="primary" @click="submitForm('edit')" v-if="edit"
- >确 定</el-button
- >
-
- <el-button @click="submitForm('draft')" v-if="edit && this.form.collStatus!=1" type="warning">暂 存</el-button>
- <el-button type="primary" v-if="check" @click="handleCheck(1)"
- >通 过</el-button
- >
- <el-button type="warning" v-if="check" @click="handleReject"
- >驳 回</el-button
- >
- <el-button type="primary" @click="cancel">返 回</el-button>
- </div>
- <div class="remark" v-if="form.taskVoList != 0">
- <div class="remark_title" style="margin-bottom: 20px">审批记录:</div>
- <el-timeline>
- <el-timeline-item
- v-for="(item, index) in form.taskVoList"
- :timestamp="item.createTime"
- placement="top"
- :key="index + 'taskHisAction'"
- >
- <el-card>
- <p>
- {{ item.execName }}------{{
- item.status == 0
- ? "待审核"
- : item.status == 1
- ? "同意"
- : item.status == 2
- ? "驳回"
- : "退回"
- }}------{{ item.acname }}------{{ item.createTime }}
- <p v-if="item.comments != null">{{
- "审核意见:" + item.comments
- }}</p>
- </p>
- </el-card>
- </el-timeline-item>
- </el-timeline>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import {
- compute,
- listGATHER,
- getGATHER,
- delGATHER,
- addGATHER,
- updateGATHER,
- getInfoByColl,
- approve,
- report,
- setAudit,
- download,
- upload,
- uploadnew,
- bsqAudit,
- } from "@/api/portal/GATHER/GATHER.js";
- import importFile from "./importFile.vue";
- import { saveAs } from "file-saver";
- import { getToken } from "@/utils/auth";
- import axios from "axios";
- import { checkPermi, checkRole } from "@/utils/permission"; // 权限判断函数
- import { bondedList } from "@/api/portal/figure/figure.js";
- export default {
- name: "GATHER",
- data() {
- return {
- monthOpt: [{
- value: '01',
- label: '1月'
- }, {
- value: '02',
- label: '2月'
- }, {
- value: '03',
- label: '3月'
- }, {
- value: '04',
- label: '4月'
- }, {
- value: '05',
- label: '5月'
- }, {
- value: '06',
- label: '6月'
- }, {
- value: '07',
- label: '7月'
- }, {
- value: '08',
- label: '8月'
- }, {
- value: '09',
- label: '9月'
- }, {
- value: '10',
- label: '10月'
- }, {
- value: '11',
- label: '11月'
- }, {
- value: '12',
- label: '12月'
- }
- ],
- // 审核、驳回
- check: false,
- // 数据id
- dataId: null,
- edit: Boolean, //false 查看 true修改
- tabList: [],
- feeLists: [],
- activeName: "",
- //数据类型(0=量化指标数据,1=月报表数据)
- typeList: [
- { label: "量化指标数据", value: "0" },
- { label: "月报表数据", value: "1" },
- ],
- //采集状态(0=未采集,1=已采集)
- collStatus: [
- { label: "未采集", value: "0" },
- { label: "已采集", value: "1" },
- ],
- //上报状态(0=未上报,=1已上报)
- reportStatus: [
- { label: "未上报", value: "0" },
- { label: "已上报", value: "1" },
- ],
- //审核状态(0=未审核,1审核中,2=审核通过,3=审核拒绝)
- approveStatus: [
- { label: "未审核", value: "0" },
- { label: "审核中", value: "1" },
- { label: "审核通过", value: "2" },
- { label: "审核拒绝", value: "3" },
- ],
- // 根路径
- baseURL: process.env.VUE_APP_BASE_API,
- // 遮罩层
- loading: true,
- // 选中数组
- ids: [],
- // 非单个禁用
- single: true,
- // 非多个禁用
- multiple: true,
- // 显示搜索条件
- showSearch: true,
- // 总条数
- total: 0,
- // 数据采集表格数据
- GATHERList: [],
- load: true,
- // 弹出层标题
- title: "",
- // 是否显示弹出层
- open: false,
- openDetail: false,
- // 查询参数
- queryParams: {
- deptId: "",
- pageNum: 1,
- pageSize: 10,
- id: null,
- createTime: null,
- createBy: null,
- updateTime: null,
- updateBy: null,
- delFlag: null,
- deptId: null,
- type: null,
- year: null,
- month: null,
- collStatus: null,
- reportStatus: null,
- approveStatus: null,
- audit: null,
- },
- regionList: [], //保税区列表
- // 表单参数
- form: {},
- // 表单校验
- rules: {
- // id: [{ required: true, message: "$comment不能为空", trigger: "blur" }],
- collCalue: [
- { required: true, message: "不能为空", trigger: "blur" },
- { trigger: "blur", validator: this.validatorFloatNum },
- ],
- },
- rulesOne: {},
- //设置文件名字
- setFileName: "",
- radio: "",
- rowData: {},
- fileList: [],
- uploadForm: {},
- openUpload: false,
- uploadFileType: "old", // old、new
- };
- },
- created() {
- this.getList();
- this.bondedList();
- },
- methods: {
- checkPermi,
- checkRole,
- // 下面这个validatorNum写重复了吗?
- // validatorNum(rule, value, callback) {},
- validatorFloatNum(rule, value, callback) {
- let reg = /^[+-]?(0|([1-9]\d*))(\.\d+)?$/g;
- if (!reg.test(value)) {
- callback(new Error("请输入数字和正确格式的数字"));
- } else if (typeof value == "string" && value.split(".").length > 2) {
- callback(new Error("请输入正确格式的数字")); //防止输入多个小数点
- }
- // else if (value.indexOf('.') != -1 && value.split('.')[1].length > 2) {
- // callback(new Error('最多只能输入两位小数')); //小数点后两位
- // }
- else {
- callback();
- }
- },
- validatorNum(rule, value, callback) {
- let reg = /^[+]?(0|([1-9]\d*))(\.\d+)?$/g;
- if (!reg.test(value)) {
- callback(new Error("请输入正数和正确格式的数字"));
- } else if (typeof value == "string" && value.split(".").length > 2) {
- callback(new Error("请输入正确格式的数字")); //防止输入多个小数点
- }
- // else if (value.indexOf('.') != -1 && value.split('.')[1].length > 2) {
- // callback(new Error('最多只能输入两位小数')); //小数点后两位
- // }
- else {
- callback();
- }
- },
- validatorList(code, name, sendValue) {
- if (typeof name != "string") return;
- if (sendValue == 1) return;
- if (
- code == "A001" ||
- code == "A002" ||
- code == "A003" ||
- code == "A004" ||
- code == "A005" ||
- code == "A006" ||
- code == "A007" ||
- code == "A008" ||
- code == "C002" ||
- code == "C003" ||
- code == "D001" ||
- code == "E001" ||
- code == "E002" ||
- code == "E003" ||
- code == "E004" ||
- code == "F001" ||
- code == "F002"
- ) {
- return {
- collCalue: [
- { required: true, message: "不能为空", trigger: "blur" },
- { trigger: "blur", validator: this.validatorFloatNum },
- ],
- };
- } else if (code == "A009" || code == "A010") {
- return {
- collCalue: [
- { required: true, message: "不能为空", trigger: "blur" },
- { pattern: /^[1-9]\d*$/, message: "请输入正整数", trigger: "blur" },
- ],
- };
- }
- },
- importFile(param) {
- let title = param.mark == "1" ? "海关一般数据导入" : "海关特殊数据导入";
- this.iframe({
- obj: importFile,
- param: param,
- title: title,
- width: "500px",
- height: "50%",
- });
- },
- submitUpload() {
- this.$refs.upload.submit();
- },
- httprequest() {},
- getCurrentRow(val) {
- },
- // 获取保税区列表
- bondedList() {
- this.regionList = [];
- bondedList().then((res) => {
- for (const i in res.data) {
- this.regionList.push({
- label: res.data[i].deptName,
- value: res.data[i].deptId,
- });
- }
- });
- },
- handleCurrentChange(val, index) {
- this.currentRow = val;
- this.$emit("data", val.pkg);
- },
- handleChange(file, fileList) {
- this.fileList = fileList.slice(-3);
- },
- showRow(row) {
- //赋值给radio
- this.radio = this.GATHERList.indexOf(row);
- this.rowData = row;
- },
- handleClose() {
- this.check = false;
- },
- /**
- * 打开上传弹窗
- * @params string type old/new
- */
- onOpenDialog(type) {
- this.uploadFileType = type;
- this.openUpload = true;
- },
- //导入
- uploadFile(file) {
- let formData = new FormData();
- formData.append("file", file);
- formData.append("type", this.uploadForm.type);
- if (this.uploadFileType === "old") {
- upload(formData).then((res) => {
- this.$modal.msgSuccess("上传采集附件成功!");
- this.getList();
- this.cancel();
- this.openUpload = false;
- });
- } else {
- uploadnew(formData).then((res) => {
- this.$modal.msgSuccess("上传采集附件成功!");
- this.getList();
- this.cancel();
- this.openUpload = false;
- });
- }
- },
- //下载模板
- handleDownload() {
- let row = this.rowData;
- axios({
- url: process.env.VUE_APP_BASE_API + "/gather/download/" + row.id,
- method: "get",
- responseType: "blob",
- headers: {
- Authorization: "Bearer " + getToken(),
- },
- }).then((res) => {
- const temp = res.headers["content-disposition"]
- .split(";")[1]
- .split("filename=")[1];
- const fileName = decodeURIComponent(temp);
- const blob = new Blob([res.data]);
- saveAs(blob, fileName);
- this.getList();
- });
- },
- //上报
- handleReport(data) {
- report(data).then((res) => {
- this.$modal.msgSuccess("上报成功");
- this.getList();
- });
- },
- //提交审核
- handleApprove(row) {
- this.tabList = [];
- this.form = [];
- const id = row.id || this.ids;
- this.edit = false;
- this.check = true;
- this.dataId = row.id;
- getGATHER(id).then((response) => {
- //深拷贝,而不是拷贝地址
- this.form = JSON.parse(JSON.stringify(response.data));
- this.openDetail = true;
- this.title = "数据查看";
- //深拷贝,而不是拷贝地址
- this.tabList = JSON.parse(JSON.stringify(response.data.feeLists));
- let dataList = response.data.feeLists;
- //去重获取tab
- //遍历如果遇到相同的id则删掉
- for (var i = 0; i < this.tabList.length - 1; i++) {
- //设置激活的tab
- if (i == 0) {
- this.activeName = this.tabList[0].normName;
- }
- for (var j = i + 1; j < this.tabList.length; j++) {
- if (this.tabList[i].normId == this.tabList[j].normId) {
- this.tabList.splice(j, 1);
- //因为数组长度减小1,所以直接 j++ 会漏掉一个元素,所以要 j--
- j--;
- }
- }
- }
- });
- },
- handleCheck(val, value) {
- let data = {
- gatherId: this.dataId,
- auditType: 2,
- };
- let audit = {
- gatherId: this.dataId,
- auditType: 3,
- remark: value,
- };
- if (val == 1) {
- bsqAudit(data).then((res) => {
- if (res.code == 200) {
- this.$modal.msgSuccess("通过审核成功");
- this.getList();
- this.openDetail = false;
- }
- });
- } else {
- bsqAudit(audit).then((res) => {
- if (res.code == 200) {
- this.$modal.msgSuccess("驳回成功");
- this.getList();
- this.openDetail = false;
- }
- });
- }
- },
- // 驳回处理
- handleReject() {
- this.$prompt("请输入驳回理由:", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- inputType: "textarea",
- })
- .then(({ value }) => {
- this.handleCheck(2, value);
- // this.$message({
- // type: 'success',
- // message: '你的邮箱是: ' + value
- // });
- })
- .catch(() => {
- // this.$message({
- // type: 'info',
- // message: '取消输入'
- // });
- });
- },
- handleClick(tab, event) {},
- /** 查询数据采集列表 */
- getList() {
- this.loading = true;
- listGATHER(this.queryParams).then((response) => {
- this.GATHERList = response.rows;
- this.load = false;
- this.total = response.total;
- this.loading = false;
- });
- },
- // 取消按钮
- cancel() {
- this.check = false;
- this.open = false;
- this.openDetail = false;
- this.openUpload = false;
- this.reset();
- },
- // 表单重置
- reset() {
- this.form = {
- id: null,
- delFlag: null,
- deptId: null,
- type: null,
- month: null,
- collStatus: "0",
- reportStatus: "0",
- approveStatus: "0",
- };
- this.uploadForm = {
- type: "",
- };
- this.fileList = [];
- this.resetForm("form");
- },
- /** 搜索按钮操作 */
- handleQuery() {
- this.queryParams.pageNum = 1;
- this.getList();
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.queryParams.deptId = "";
- this.resetForm("queryForm");
- this.handleQuery();
- },
- // 多选框选中数据
- handleSelectionChange(selection) {
- this.ids = selection.map((item) => item.id);
- this.single = selection.length !== 1;
- this.multiple = !selection.length;
- },
- /** 新增按钮操作 */
- handleAdd() {
- this.reset();
- this.open = true;
- this.openDetail = true;
- this.title = "添加数据采集";
- },
- /** 录入按钮操作 */
- handleUpdate(row) {
- // this.reset();
- this.tabList = [];
- this.form = [];
- const id = row.id || this.ids;
- getInfoByColl(id).then((response) => {
- //深拷贝,而不是拷贝地址
- this.form = JSON.parse(JSON.stringify(response.data));
- this.open = true;
- this.title = "数据录入";
- //深拷贝,而不是拷贝地址
- this.tabList = JSON.parse(JSON.stringify(response.data.feeLists));
- let dataList = response.data.feeLists;
- //去重获取tab
- //遍历如果遇到相同的id则删掉
- for (var i = 0; i < this.tabList.length - 1; i++) {
- //设置激活的tab
- if (i == 0) {
- this.activeName = this.tabList[0].normName;
- }
- for (var j = i + 1; j < this.tabList.length; j++) {
- if (this.tabList[i].normId == this.tabList[j].normId) {
- this.tabList.splice(j, 1);
- //因为数组长度减小1,所以直接 j++ 会漏掉一个元素,所以要 j--
- j--;
- }
- }
- }
- });
- },
- handleAudit(row) {
- let data = {
- type: "1",
- gatherId: row.id,
- };
- setAudit(data).then((res) => {
- if (res.code) {
- this.$message.success("审核成功");
- this.getList();
- this.openDetail = false;
- }
- });
- },
- /** 查看按钮操作 */
- handleDetail(row, type) {
- //false 查看 true修改
- if (type == 0) {
- this.edit = false;
- } else if (type == 1) {
- this.edit = true;
- }
- // this.reset();
- this.tabList = [];
- this.form = [];
- const id = row.id || this.ids;
- getGATHER(id).then((response) => {
- //深拷贝,而不是拷贝地址
- this.form = JSON.parse(JSON.stringify(response.data));
- console.log(this.form);
- this.openDetail = true;
- this.title = "数据查看";
- //深拷贝,而不是拷贝地址
- this.tabList = JSON.parse(JSON.stringify(response.data.feeLists));
- //去重获取tab
- //遍历如果遇到相同的id则删掉
- for (var i = 0; i < this.tabList.length - 1; i++) {
- //设置激活的tab
- if (i == 0) {
- this.activeName = this.tabList[0].normName;
- }
- for (var j = i + 1; j < this.tabList.length; j++) {
- if (this.tabList[i].normId == this.tabList[j].normId) {
- this.tabList.splice(j, 1);
- //因为数组长度减小1,所以直接 j++ 会漏掉一个元素,所以要 j--
- j--;
- }
- }
- }
- });
- },
- /** 提交按钮 */
- submitForm(type) {
- // 验证表单
- let p = [];
- p = this.form.feeLists.map((item, index) => {
- return new Promise((resolve, reject) => {
- this.$refs["form" + item.normfeeId][0].validate((valid) => {
- // this.$refs["form" + index].validate((valid) => {
- if (valid) {
- resolve(); //完成态
- } else {
- reject(); //已失败
- }
- });
- });
- });
- let msg = "";
- Promise.all(p)
- .then(() => {
- if (type == "add") {
- this.form.collStatus = 1;
- msg = "录入成功";
- } else if (type == "edit") {
- this.form.collStatus = 1;
- updateGATHER(this.form).then((response) => {
- this.$modal.msgSuccess("修改成功");
- this.getList();
- this.openDetail = false;
- compute(this.form).then((response) => {});
- });
- return;
- }else if(type == 'draft'){
- this.form.collStatus = 2;
- msg = "操作成功";
- }
- addGATHER(this.form).then((response) => {
- if (response.code == 200) {
- this.$modal.msgSuccess(msg);
- this.getList();
- this.open = false;
- this.openDetail = false;
- compute(this.form).then((response) => {});
- }
- });
- })
- .catch((err) => {
- this.$message.error("请检查是否有必填项未输入!");
- });
- },
- /** 删除按钮操作 */
- handleDelete(row) {
- const ids = row.id || this.ids;
- this.$modal
- .confirm('是否确认删除数据采集编号为"' + ids + '"的数据项?')
- .then(function () {
- return delGATHER(ids);
- })
- .then(() => {
- this.getList();
- this.$modal.msgSuccess("删除成功");
- })
- .catch(() => {});
- },
- /** 导出按钮操作 */
- handleExport() {
- this.download(
- "business/GATHER/export",
- {
- ...this.queryParams,
- },
- `GATHER_${new Date().getTime()}.xlsx`
- );
- },
- },
- };
- </script>
- <style scoped lang="scss">
- .el-form-item{
- margin-right: 5px;
- padding: 0 !important;
- }
- ::v-deep .el-form-item .el-form-item__label{
- font-size: 13px !important;
- }
- .remark {
- margin-top: 20px;
- .remark_title {
- margin-bottom: 30px;
- font-size: 18px;
- font-weight: bold;
- }
- .remark_text {
- padding: 2px;
- min-height: 150px;
- border: 1px solid #cccccc82;
- border-radius: 4px;
- color: #958383;
- font-size: 16px;
- background: #3333331a;
- }
- }
- </style>
|