index.vue 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775
  1. <template>
  2. <div class="app-container">
  3. <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch">
  4. <el-form-item label="数据类型" prop="type">
  5. <el-select v-model="queryParams.type" placeholder="请选择数据类型" clearable filterable class="se">
  6. <el-option v-for="dict in typeList" :key="dict.value + 'typeList'" :label="dict.label" :value="dict.value" />
  7. </el-select>
  8. </el-form-item>
  9. <el-form-item label="采集状态" prop="collStatus">
  10. <el-select v-model="queryParams.collStatus" placeholder="请选择采集状态" clearable filterable class="se">
  11. <el-option v-for="dict in collStatus" :key="dict.value + 'collStatus'" :label="dict.label" :value="dict.value" />
  12. </el-select>
  13. </el-form-item>
  14. <el-form-item label="上报状态" prop="reportStatus">
  15. <el-select v-model="queryParams.reportStatus" placeholder="请选择上报状态" clearable filterable class="se">
  16. <el-option v-for="dict in reportStatus" :key="dict.value + 'reportStatus'" :label="dict.label" :value="dict.value" />
  17. </el-select>
  18. </el-form-item>
  19. <el-form-item label="审核状态" prop="approveStatus">
  20. <el-select v-model="queryParams.approveStatus" placeholder="请选择审核状态" clearable filterable class="se">
  21. <el-option v-for="dict in approveStatus" :key="dict.value + 'approveStatus'" :label="dict.label" :value="dict.value" />
  22. </el-select>
  23. </el-form-item>
  24. <el-form-item label="年度" prop="year">
  25. <el-date-picker v-model="queryParams.year" type="year" format="yyyy" value-format="yyyy" placeholder="选择年度" class="se"></el-date-picker>
  26. </el-form-item>
  27. <el-form-item label="月份" prop="month">
  28. <el-date-picker v-model="queryParams.month" type="month" format="MM" value-format="MM" placeholder="选择月份" class="se"></el-date-picker>
  29. </el-form-item>
  30. <el-form-item>
  31. <el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
  32. <el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
  33. </el-form-item>
  34. </el-form>
  35. <el-row :gutter="10" class="mb8">
  36. <el-col :span="1.5">
  37. <el-button type="success" @click="onOpenDialog('old')">历史数据导入</el-button>
  38. </el-col>
  39. <el-col :span="1.5">
  40. <el-button type="success" v-hasPermi="['gather:GATHER:upload']" @click="onOpenDialog('new')">导入</el-button>
  41. </el-col>
  42. <el-col :span="1.5">
  43. <el-button @click="handleDownload()" :title="radio === '' ? '请先选择下面对应的单位模板' : ''" :disabled="radio === '' ? true : false">下载导入模板</el-button>
  44. </el-col>
  45. <el-col :span="1.5">
  46. <el-button
  47. type="danger"
  48. plain
  49. @click="importFile({type: '0', mark: '1'})"
  50. v-hasPermi="['gather:GATHER:upload']"
  51. >海关一般数据导入</el-button>
  52. </el-col>
  53. <el-col :span="1.5">
  54. <el-button
  55. type="danger"
  56. plain
  57. @click="importFile({type: '0', mark: '2'})"
  58. v-hasPermi="['gather:GATHER:upload']"
  59. >海关特殊数据导入</el-button>
  60. </el-col>
  61. <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
  62. </el-row>
  63. <el-table :data="GATHERList" @selection-change="handleSelectionChange" @row-click="showRow">
  64. <!-- @current-change="handleCurrentChange" -->
  65. <el-table-column label="选择" fixed="left" width="70" center>
  66. <template scope="scope">
  67. <el-radio class="radio" v-model="radio" :label="scope.$index" @change.native="getCurrentRow(scope.row)">{{ '' }}</el-radio>
  68. </template>
  69. </el-table-column>
  70. <!-- <el-table-column type="selection" width="55" align="center" /> -->
  71. <el-table-column label="单位名称" align="center" prop="deptId_dictText">
  72. <template slot-scope="scope">
  73. {{ scope.row.deptId_dictText }}
  74. </template>
  75. </el-table-column>
  76. <el-table-column label="数据类型" align="center" prop="type">
  77. <template slot-scope="scope">
  78. <span v-if="scope.row.type == 0">量化指标数据</span>
  79. <span v-if="scope.row.type == 1">月报表数据</span>
  80. </template>
  81. </el-table-column>
  82. <el-table-column label="年份" align="center" prop="month">
  83. <template slot-scope="scope">
  84. {{ scope.row.year }}
  85. </template>
  86. </el-table-column>
  87. <el-table-column label="海关部分贸易" align="center" prop="month">
  88. <template slot-scope="scope">
  89. {{ '01-' + scope.row.month }}
  90. </template>
  91. </el-table-column>
  92. <el-table-column label="采集状态" align="center" prop="collStatus">
  93. <template slot-scope="scope">
  94. <span v-if="scope.row.collStatus == 0">未采集</span>
  95. <span v-if="scope.row.collStatus == 1">已采集</span>
  96. </template>
  97. </el-table-column>
  98. <el-table-column label="海关进出口总值导入" align="center" prop="reportStatus">
  99. <template slot-scope="scope">
  100. <span v-if="scope.row.reportStatus == 0">未上报</span>
  101. <span v-if="scope.row.reportStatus == 1">已上报</span>
  102. </template>
  103. </el-table-column>
  104. <el-table-column label="上报人" align="center" prop="reportName" width="110" />
  105. <el-table-column label="上报时间" align="center" prop="reportTime" width="100" />
  106. <el-table-column label="审核状态" align="center" prop="approveStatus">
  107. <template slot-scope="scope">
  108. <span v-if="scope.row.approveStatus == 0">未提交审核</span>
  109. <span v-if="scope.row.approveStatus == 1">审核中</span>
  110. <span v-if="scope.row.approveStatus == 2">审核通过</span>
  111. <span v-if="scope.row.approveStatus == 3">审核拒绝</span>
  112. </template>
  113. </el-table-column>
  114. <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
  115. <template slot-scope="scope">
  116. <!-- <el-button
  117. style="margin: 0 2px"
  118. size="mini"
  119. type="text"
  120. @click="handleDownload(scope.row)"
  121. >下载导入模板</el-button
  122. > -->
  123. <el-button style="margin: 0 2px" v-if="scope.row.collStatus == 0" size="mini" type="text" @click="handleUpdate(scope.row)">录入</el-button>
  124. <template v-if="scope.row.reportStatus == 0 && scope.row.collStatus == 1">
  125. <el-popconfirm title="确定上报吗?" @confirm="handleReport(scope.row)">
  126. <el-button style="margin: 0 2px" size="mini" slot="reference" type="text" v-hasPermi="['gather:GATHER:report']">上报</el-button>
  127. </el-popconfirm>
  128. </template>
  129. <el-popconfirm title="确定提交吗?" @confirm="handleApprove(scope.row)">
  130. <el-button style="margin: 0 2px" v-if="scope.row.approveStatus == 0 && scope.row.collStatus == 1" size="mini" v-hasPermi="['gather:GATHER:approve']" type="text" slot="reference">审核</el-button>
  131. </el-popconfirm>
  132. <el-button style="margin: 0 2px" v-if="scope.row.collStatus == 1" size="mini" type="text" @click="handleDetail(scope.row, 0)">查看</el-button>
  133. <el-button style="margin: 0 2px" v-if="scope.row.collStatus == 1 && scope.row.reportStatus == 0 && scope.row.approveStatus == 0" size="mini" type="text" @click="handleDetail(scope.row, 1)">修改</el-button>
  134. </template>
  135. </el-table-column>
  136. </el-table>
  137. <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList" />
  138. <!-- 上传文件对话框 历史数据导入 -->
  139. <el-dialog center title="导入" :visible.sync="openUpload" width="50%" append-to-body>
  140. <el-form ref="uploadForm" :model="uploadForm" :rules="rules" label-width="120px">
  141. <el-form-item label="数据类型" prop="type">
  142. <el-select v-model="uploadForm.type" placeholder="请选择数据类型" clearable filterable>
  143. <el-option v-for="dict in typeList" :key="dict.value + 'typeList'" :label="dict.label" :value="dict.value" />
  144. </el-select>
  145. </el-form-item>
  146. <el-form-item label="文件" prop="linkUrl" v-show="uploadForm.type">
  147. <el-upload class="upload-demo" ref="upload" action="#" :http-request="httprequest" :before-upload="uploadFile" :file-list="fileList" :auto-upload="false" :limit="1">
  148. <el-button slot="trigger" size="small" type="primary">选取文件</el-button>
  149. </el-upload>
  150. </el-form-item>
  151. <div class="tips-text">
  152. <span class="tit">提示</span>
  153. <p>1.请先下载对应单位名称模板;</p>
  154. <p>2.上传前,请先检查数据的完整性;</p>
  155. </div>
  156. </el-form>
  157. <div slot="footer" class="dialog-footer">
  158. <el-button type="primary" @click="submitUpload">导 入</el-button>
  159. <el-button @click="cancel">取 消</el-button>
  160. </div>
  161. </el-dialog>
  162. <!-- 录入数据采集对话框 -->
  163. <el-dialog center :title="title" :visible.sync="open" width="50%" append-to-body>
  164. <el-tabs v-if="this.form.type == 0" v-model="activeName" type="border-card" @tab-click="handleClick">
  165. <el-tab-pane v-for="(item, index) in tabList" :key="index + 'tabs'" :label="item.normName" :name="item.normName">
  166. <el-form v-for="(listItem, listIndex) in form.feeLists" :key="index + listIndex + listItem.normId" :rules="validatorList(listItem.normfeeName)" :model="listItem" :ref="'form' + listIndex">
  167. <!-- :rules="rules" ref="form" -->
  168. <el-form-item :key="listItem.normfeeId" :label="listItem.normfeeName" v-if="listItem.normId == item.normId" prop="collCalue">
  169. <!-- 这里科研失败!想动态绑定校验规则的 -->
  170. <!-- :prop="listItem.normfeeId" -->
  171. <!-- :rules="rules.listItem.normfeeId" -->
  172. <el-input v-model="listItem.collCalue" :placeholder="'请输入' + listItem.normfeeName"></el-input>
  173. </el-form-item>
  174. </el-form>
  175. <!-- 这里是第二种写法 -->
  176. <!-- <el-form :model="form" label-width="300px">
  177. <el-form-item
  178. v-for="(listItem, listIndex) in item.list"
  179. :key="listIndex + 'item.list'"
  180. :label="listItem.normfeeName"
  181. >
  182. <el-input
  183. v-model="listItem.collCalue"
  184. :placeholder="'请输入' + listItem.normfeeName"
  185. ></el-input>
  186. </el-form-item>
  187. </el-form> -->
  188. </el-tab-pane>
  189. </el-tabs>
  190. <template v-else-if="this.form.type == 1">
  191. <el-form v-for="(listItem, listIndex) in form.feeLists" :model="listItem" :ref="'form' + listIndex" :rules="rules">
  192. <!-- :rules="rules" ref="form" -->
  193. <el-form-item :key="listItem.normfeeId" :label="listItem.normfeeName" prop="collCalue">
  194. <!-- 这里科研失败!想动态绑定校验规则的 -->
  195. <!-- :prop="listItem.normfeeId" -->
  196. <!-- :rules="rules.listItem.normfeeId" -->
  197. <el-input v-model="listItem.collCalue" :placeholder="'请输入' + listItem.normfeeName"></el-input>
  198. </el-form-item>
  199. </el-form>
  200. </template>
  201. <div slot="footer" class="dialog-footer">
  202. <el-button type="primary" @click="submitForm('add')">确 定</el-button>
  203. <el-button @click="cancel">取 消</el-button>
  204. <!-- <el-button @click="cancel">取 消</el-button> -->
  205. </div>
  206. </el-dialog>
  207. <!-- 查看或修改 -->
  208. <el-dialog center :title="title" :visible.sync="openDetail" width="50%" append-to-body>
  209. <el-tabs v-if="this.form.type == 0" v-model="activeName" type="border-card" @tab-click="handleClick">
  210. <el-tab-pane v-for="(item, index) in tabList" :key="index + 'tabs'" :label="item.normName" :name="item.normName">
  211. <el-form v-for="(listItem, listIndex) in form.feeLists" :model="listItem" :ref="'form' + listIndex" :rules="rules">
  212. <!-- :rules="rules" ref="form" -->
  213. <el-form-item prop="collCalue" :key="listItem.normfeeId" :label="listItem.normfeeName" v-if="listItem.normId == item.normId">
  214. <!-- 这里科研失败!想动态绑定校验规则的 -->
  215. <!-- :prop="listItem.normfeeId" -->
  216. <!-- :rules="rules.listItem.normfeeId" -->
  217. <el-input :disabled="!edit" v-model="listItem.collCalue" :placeholder="'请输入' + listItem.normfeeName"></el-input>
  218. </el-form-item>
  219. </el-form>
  220. <!-- 这里是第二种写法 -->
  221. <!-- <el-form :model="form" label-width="150px">
  222. <el-form-item
  223. v-for="(listItem, listIndex) in item.list"
  224. :key="listIndex + 'item.list'"
  225. :label="listItem.normfeeName"
  226. >
  227. <el-input
  228. v-model="listItem.collCalue"
  229. :placeholder="'请输入' + listItem.normfeeName"
  230. ></el-input>
  231. </el-form-item>
  232. </el-form> -->
  233. </el-tab-pane>
  234. </el-tabs>
  235. <el-form :model="form" v-else-if="this.form.type == 1">
  236. <!-- :rules="rules" ref="form" -->
  237. <el-form-item v-for="(listItem, listIndex) in form.feeLists" :key="listItem.normfeeId" :label="listItem.normfeeName">
  238. <!-- 这里科研失败!想动态绑定校验规则的 -->
  239. <!-- :prop="listItem.normfeeId" -->
  240. <!-- :rules="rules.listItem.normfeeId" -->
  241. <el-input :disabled="!edit" v-model="listItem.collCalue" :placeholder="'请输入' + listItem.normfeeName"></el-input>
  242. </el-form-item>
  243. </el-form>
  244. <div slot="footer" class="dialog-footer">
  245. <el-button type="primary" @click="submitForm('edit')" v-if="edit">确 定</el-button>
  246. <el-button type="primary" @click="cancel">返 回</el-button>
  247. </div>
  248. </el-dialog>
  249. </div>
  250. </template>
  251. <script>
  252. import { listGATHER, getGATHER, delGATHER, addGATHER, updateGATHER, getInfoByColl, approve, report, download, upload, uploadnew } from '@/api/portal/GATHER/GATHER.js';
  253. import importFile from "./importFile.vue";
  254. import { saveAs } from 'file-saver';
  255. import { getToken } from '@/utils/auth';
  256. import axios from 'axios';
  257. export default {
  258. name: 'GATHER',
  259. data() {
  260. return {
  261. edit: Boolean, //false 查看 true修改
  262. tabList: [],
  263. feeLists: [],
  264. activeName: '',
  265. //数据类型(0=量化指标数据,1=月报表数据)
  266. typeList: [
  267. { label: '量化指标数据', value: '0' },
  268. { label: '月报表数据', value: '1' }
  269. ],
  270. //采集状态(0=未采集,1=已采集)
  271. collStatus: [
  272. { label: '未采集', value: '0' },
  273. { label: '已采集', value: '1' }
  274. ],
  275. //上报状态(0=未上报,=1已上报)
  276. reportStatus: [
  277. { label: '未上报', value: '0' },
  278. { label: '已上报', value: '1' }
  279. ],
  280. //审核状态(0=未审核,1审核中,2=审核通过,3=审核拒绝)
  281. approveStatus: [
  282. { label: '未审核', value: '0' },
  283. { label: '审核中', value: '1' },
  284. { label: '审核通过', value: '2' },
  285. { label: '审核拒绝', value: '3' }
  286. ],
  287. // 根路径
  288. baseURL: process.env.VUE_APP_BASE_API,
  289. // 遮罩层
  290. loading: true,
  291. // 选中数组
  292. ids: [],
  293. // 非单个禁用
  294. single: true,
  295. // 非多个禁用
  296. multiple: true,
  297. // 显示搜索条件
  298. showSearch: true,
  299. // 总条数
  300. total: 0,
  301. // 数据采集表格数据
  302. GATHERList: [],
  303. // 弹出层标题
  304. title: '',
  305. // 是否显示弹出层
  306. open: false,
  307. openDetail: false,
  308. // 查询参数
  309. queryParams: {
  310. pageNum: 1,
  311. pageSize: 10,
  312. id: null,
  313. createTime: null,
  314. createBy: null,
  315. updateTime: null,
  316. updateBy: null,
  317. delFlag: null,
  318. deptId: null,
  319. type: null,
  320. year: null,
  321. month: null,
  322. collStatus: null,
  323. reportStatus: null,
  324. approveStatus: null
  325. },
  326. // 表单参数
  327. form: {},
  328. // 表单校验
  329. rules: {
  330. // id: [{ required: true, message: "$comment不能为空", trigger: "blur" }],
  331. collCalue: [
  332. { required: true, message: '不能为空', trigger: 'blur' },
  333. { trigger: 'blur', validator: this.validatorFloatNum }
  334. ]
  335. },
  336. rulesOne: {},
  337. //设置文件名字
  338. setFileName: '',
  339. radio: '',
  340. rowData: {},
  341. fileList: [],
  342. uploadForm: {},
  343. openUpload: false,
  344. uploadFileType: 'old', // old、new
  345. };
  346. },
  347. created() {
  348. this.getList();
  349. },
  350. methods: {
  351. validatorNum(rule, value, callback) {},
  352. validatorFloatNum(rule, value, callback) {
  353. let reg = /^[+-]?(0|([1-9]\d*))(\.\d+)?$/g;
  354. if (!reg.test(value)) {
  355. callback(new Error('请输入数字和正确格式的数字'));
  356. } else if (value.split('.').length > 2) {
  357. callback(new Error('请输入正确格式的数字')); //防止输入多个小数点
  358. }
  359. // else if (value.indexOf('.') != -1 && value.split('.')[1].length > 2) {
  360. // callback(new Error('最多只能输入两位小数')); //小数点后两位
  361. // }
  362. else {
  363. callback();
  364. }
  365. },
  366. validatorNum(rule, value, callback) {
  367. let reg = /^[+]?(0|([1-9]\d*))(\.\d+)?$/g;
  368. if (!reg.test(value)) {
  369. callback(new Error('请输入正数和正确格式的数字'));
  370. } else if (value.split('.').length > 2) {
  371. callback(new Error('请输入正确格式的数字')); //防止输入多个小数点
  372. }
  373. // else if (value.indexOf('.') != -1 && value.split('.')[1].length > 2) {
  374. // callback(new Error('最多只能输入两位小数')); //小数点后两位
  375. // }
  376. else {
  377. callback();
  378. }
  379. },
  380. validatorList(name) {
  381. if (typeof name != 'string') return;
  382. if (name.includes('增幅') || name.includes('验收率') || name.includes('开发率') || name.includes('比重')) {
  383. return {
  384. collCalue: [
  385. { required: true, message: '不能为空', trigger: 'blur' },
  386. { trigger: 'blur', validator: this.validatorFloatNum }
  387. ]
  388. };
  389. }
  390. // if (name == '期末单位面积企业从业人员' || name == '活跃企业数' || name == '期末企业从业人员') {
  391. // return {
  392. // collCalue: [
  393. // { required: true, message: '不能为空', trigger: 'blur' },
  394. // { pattern: /^[1-9]\d*$/, message: '请输入正整数', trigger: 'blur' }
  395. // ]
  396. // };
  397. // } else {
  398. // return {
  399. // collCalue: [
  400. // { required: true, message: '不能为空', trigger: 'blur' },
  401. // { trigger: 'blur', validator: this.validatorNum }
  402. // ]
  403. // };
  404. // }
  405. switch (name) {
  406. case '期末单位面积企业从业人员':
  407. case '活跃企业数':
  408. case '期末企业从业人员':
  409. return {
  410. collCalue: [
  411. { required: true, message: '不能为空', trigger: 'blur' },
  412. { pattern: /^[1-9]\d*$/, message: '请输入正整数', trigger: 'blur' }
  413. ]
  414. };
  415. break;
  416. default:
  417. return {
  418. collCalue: [
  419. { required: true, message: '不能为空', trigger: 'blur' },
  420. { trigger: 'blur', validator: this.validatorNum }
  421. ]
  422. };
  423. break;
  424. }
  425. },
  426. importFile(param){
  427. let title = param.mark == '1' ? '海关一般数据导入' : '海关特殊数据导入'
  428. this.iframe({ obj: importFile, param: param, title: title, width: '500px', height: '50%' });
  429. },
  430. submitUpload() {
  431. this.$refs.upload.submit();
  432. },
  433. httprequest() {},
  434. getCurrentRow(val) {
  435. console.log(val);
  436. },
  437. handleCurrentChange(val, index) {
  438. this.currentRow = val;
  439. this.$emit('data', val.pkg);
  440. },
  441. handleChange(file, fileList) {
  442. this.fileList = fileList.slice(-3);
  443. },
  444. showRow(row) {
  445. //赋值给radio
  446. this.radio = this.GATHERList.indexOf(row);
  447. this.rowData = row;
  448. },
  449. /**
  450. * 打开上传弹窗
  451. * @params string type old/new
  452. */
  453. onOpenDialog(type) {
  454. this.uploadFileType = type;
  455. this.openUpload = true;
  456. },
  457. //导入
  458. uploadFile(file) {
  459. let formData = new FormData();
  460. formData.append('file', file);
  461. formData.append('type', this.uploadForm.type);
  462. if(this.uploadFileType === 'old') {
  463. upload(formData).then(res => {
  464. this.$modal.msgSuccess('上传采集附件成功!');
  465. this.getList();
  466. this.cancel();
  467. this.openUpload = false;
  468. });
  469. } else {
  470. uploadnew(formData).then(res => {
  471. this.$modal.msgSuccess('上传采集附件成功!');
  472. this.getList();
  473. this.cancel();
  474. this.openUpload = false;
  475. });
  476. }
  477. },
  478. //下载模板
  479. handleDownload() {
  480. let row = this.rowData;
  481. axios({
  482. url: process.env.VUE_APP_BASE_API + '/gather/download/' + row.id,
  483. method: 'get',
  484. responseType: 'blob',
  485. headers: {
  486. Authorization: 'Bearer ' + getToken()
  487. }
  488. }).then(res => {
  489. const temp = res.headers['content-disposition'].split(';')[1].split('filename=')[1];
  490. const fileName = decodeURIComponent(temp);
  491. const blob = new Blob([res.data]);
  492. saveAs(blob, fileName);
  493. this.getList();
  494. });
  495. },
  496. //上报
  497. handleReport(data) {
  498. report(data).then(res => {
  499. this.$modal.msgSuccess('上报成功');
  500. this.getList();
  501. });
  502. },
  503. //提交审核
  504. handleApprove(data) {
  505. this.$modal.msgSuccess('提交审核成功');
  506. approve(data).then(res => {
  507. this.getList();
  508. });
  509. },
  510. handleClick(tab, event) {},
  511. /** 查询数据采集列表 */
  512. getList() {
  513. this.loading = true;
  514. listGATHER(this.queryParams).then(response => {
  515. this.GATHERList = response.rows;
  516. this.total = response.total;
  517. this.loading = false;
  518. });
  519. },
  520. // 取消按钮
  521. cancel() {
  522. this.open = false;
  523. this.openDetail = false;
  524. this.openUpload = false;
  525. this.reset();
  526. },
  527. // 表单重置
  528. reset() {
  529. this.form = {
  530. id: null,
  531. delFlag: null,
  532. deptId: null,
  533. type: null,
  534. month: null,
  535. collStatus: '0',
  536. reportStatus: '0',
  537. approveStatus: '0'
  538. };
  539. this.uploadForm = {
  540. type: ''
  541. };
  542. this.fileList = [];
  543. this.resetForm('form');
  544. },
  545. /** 搜索按钮操作 */
  546. handleQuery() {
  547. this.queryParams.pageNum = 1;
  548. this.getList();
  549. },
  550. /** 重置按钮操作 */
  551. resetQuery() {
  552. this.resetForm('queryForm');
  553. this.handleQuery();
  554. },
  555. // 多选框选中数据
  556. handleSelectionChange(selection) {
  557. this.ids = selection.map(item => item.id);
  558. this.single = selection.length !== 1;
  559. this.multiple = !selection.length;
  560. },
  561. /** 新增按钮操作 */
  562. handleAdd() {
  563. this.reset();
  564. this.open = true;
  565. this.openDetail = true;
  566. this.title = '添加数据采集';
  567. },
  568. /** 录入按钮操作 */
  569. handleUpdate(row) {
  570. // this.reset();
  571. this.tabList = [];
  572. this.form = [];
  573. const id = row.id || this.ids;
  574. getInfoByColl(id).then(response => {
  575. //深拷贝,而不是拷贝地址
  576. this.form = JSON.parse(JSON.stringify(response.data));
  577. this.open = true;
  578. this.title = '数据录入';
  579. //深拷贝,而不是拷贝地址
  580. this.tabList = JSON.parse(JSON.stringify(response.data.feeLists));
  581. let dataList = response.data.feeLists;
  582. //去重获取tab
  583. //遍历如果遇到相同的id则删掉
  584. for (var i = 0; i < this.tabList.length - 1; i++) {
  585. //设置激活的tab
  586. if (i == 0) {
  587. this.activeName = this.tabList[0].normName;
  588. }
  589. for (var j = i + 1; j < this.tabList.length; j++) {
  590. if (this.tabList[i].normId == this.tabList[j].normId) {
  591. this.tabList.splice(j, 1);
  592. //因为数组长度减小1,所以直接 j++ 会漏掉一个元素,所以要 j--
  593. j--;
  594. }
  595. }
  596. }
  597. // 这里科研失败!想动态绑定校验规则的
  598. //遍历设置表单校验 我好困
  599. // for (const i in this.form.feeLists) {
  600. // this.$set(this.rules,this.form.feeLists[i].normfeeId,[
  601. // { required: true, message: this.form.feeLists[i].normfeeName+"不能为空", trigger: "blur" }
  602. // ])
  603. // }
  604. // console.log(this.rules);
  605. //这里是第二种写法
  606. //获取分类ID相同的子集
  607. // for (let index = 0; index < this.tabList.length; index++) {
  608. // this.$set(this.tabList[index],'list',[])
  609. // for (let i = 0; i < dataList.length; i++) {
  610. // if (dataList[i].normId == this.tabList[index].normId) {
  611. // this.tabList[index].list.push(dataList[i]);
  612. // }
  613. // }
  614. // }
  615. });
  616. },
  617. /** 查看按钮操作 */
  618. handleDetail(row, type) {
  619. //false 查看 true修改
  620. if (type == 0) {
  621. this.edit = false;
  622. } else if (type == 1) {
  623. this.edit = true;
  624. }
  625. // this.reset();
  626. this.tabList = [];
  627. this.form = [];
  628. const id = row.id || this.ids;
  629. getGATHER(id).then(response => {
  630. //深拷贝,而不是拷贝地址
  631. this.form = JSON.parse(JSON.stringify(response.data));
  632. this.openDetail = true;
  633. this.title = '数据查看';
  634. //深拷贝,而不是拷贝地址
  635. this.tabList = JSON.parse(JSON.stringify(response.data.feeLists));
  636. let dataList = response.data.feeLists;
  637. //去重获取tab
  638. //遍历如果遇到相同的id则删掉
  639. for (var i = 0; i < this.tabList.length - 1; i++) {
  640. //设置激活的tab
  641. if (i == 0) {
  642. this.activeName = this.tabList[0].normName;
  643. }
  644. for (var j = i + 1; j < this.tabList.length; j++) {
  645. if (this.tabList[i].normId == this.tabList[j].normId) {
  646. this.tabList.splice(j, 1);
  647. //因为数组长度减小1,所以直接 j++ 会漏掉一个元素,所以要 j--
  648. j--;
  649. }
  650. }
  651. }
  652. // 这里科研失败!想动态绑定校验规则的
  653. //遍历设置表单校验 我好困
  654. // for (const i in this.form.feeLists) {
  655. // this.$set(this.rules,this.form.feeLists[i].normfeeId,[
  656. // { required: true, message: this.form.feeLists[i].normfeeName+"不能为空", trigger: "blur" }
  657. // ])
  658. // }
  659. // console.log(this.rules);
  660. //这里是第二种写法
  661. //获取分类ID相同的子集
  662. // for (let index = 0; index < this.tabList.length; index++) {
  663. // this.$set(this.tabList[index],'list',[])
  664. // for (let i = 0; i < dataList.length; i++) {
  665. // if (dataList[i].normId == this.tabList[index].normId) {
  666. // this.tabList[index].list.push(dataList[i]);
  667. // }
  668. // }
  669. // }
  670. });
  671. },
  672. /** 提交按钮 */
  673. submitForm(type) {
  674. // for (const i in this.form.feeLists) {
  675. // if (
  676. // this.form.feeLists[i].collCalue == "" ||
  677. // this.form.feeLists[i].collCalue == null
  678. // ) {
  679. // return this.$message({
  680. // message:
  681. // this.form.feeLists[i].normName +
  682. // " - " +
  683. // this.form.feeLists[i].normfeeName +
  684. // " 未填写!",
  685. // type: "warning",
  686. // });
  687. // }
  688. // }
  689. // 验证表单
  690. let p = [];
  691. p = this.form.feeLists.map((item, index) => {
  692. return new Promise((resolve, reject) => {
  693. this.$refs['form' + index][0].validate(valid => {
  694. if (valid) {
  695. resolve(); //完成态
  696. } else {
  697. reject(); //已失败
  698. }
  699. });
  700. });
  701. });
  702. Promise.all(p)
  703. .then(() => {
  704. if (type == 'add') {
  705. addGATHER(this.form).then(response => {
  706. this.$modal.msgSuccess('录入成功');
  707. this.open = false;
  708. this.getList();
  709. });
  710. } else if (type == 'edit') {
  711. updateGATHER(this.form).then(response => {
  712. this.$modal.msgSuccess('修改成功');
  713. this.openDetail = false;
  714. this.getList();
  715. });
  716. }
  717. })
  718. .catch(err => {
  719. console.log(err);
  720. this.$message.error('请检查是否有必填项未输入!');
  721. });
  722. },
  723. /** 删除按钮操作 */
  724. handleDelete(row) {
  725. const ids = row.id || this.ids;
  726. this.$modal
  727. .confirm('是否确认删除数据采集编号为"' + ids + '"的数据项?')
  728. .then(function () {
  729. return delGATHER(ids);
  730. })
  731. .then(() => {
  732. this.getList();
  733. this.$modal.msgSuccess('删除成功');
  734. })
  735. .catch(() => {});
  736. },
  737. /** 导出按钮操作 */
  738. handleExport() {
  739. this.download(
  740. 'business/GATHER/export',
  741. {
  742. ...this.queryParams
  743. },
  744. `GATHER_${new Date().getTime()}.xlsx`
  745. );
  746. }
  747. }
  748. };
  749. </script>