index.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680
  1. <template>
  2. <div class="app-container">
  3. <el-form
  4. :model="queryParams"
  5. ref="queryForm"
  6. size="small"
  7. :inline="true"
  8. v-show="showSearch"
  9. label-width="68px"
  10. >
  11. <el-form-item label="项目名称">
  12. <el-input
  13. v-model="queryParams.atvName"
  14. placeholder="请输入项目名称"
  15. ></el-input>
  16. </el-form-item>
  17. <el-form-item label="保税区">
  18. <el-select v-model="queryParams.deptId" placeholder="请选择保税区">
  19. <el-option
  20. v-for="item in bsqList"
  21. :key="item.value"
  22. :label="item.deptName"
  23. :value="item.deptId"
  24. >
  25. </el-option>
  26. </el-select>
  27. </el-form-item>
  28. <el-form-item label="建设规模">
  29. <el-input
  30. v-model="queryParams.scale"
  31. placeholder="请输入建设规模"
  32. ></el-input>
  33. <!-- <el-select v-model="queryParams.scale" placeholder="请输入建设规模">
  34. <el-option
  35. v-for="item in scaleList"
  36. :key="item.value + 'typeList'"
  37. :label="item.label"
  38. :value="item.label"
  39. ></el-option>
  40. </el-select> -->
  41. </el-form-item>
  42. <el-form-item label="年度计划投资" label-width="120px">
  43. <el-input
  44. style="width: 130px"
  45. v-model="queryParams.least"
  46. type="number"
  47. placeholder="最小查询范围"
  48. ></el-input>
  49. <div class="ec-input-range-divider"></div>
  50. <el-input
  51. style="width: 130px"
  52. type="number"
  53. v-model="queryParams.most"
  54. placeholder="最大查询范围"
  55. ></el-input>
  56. </el-form-item>
  57. <el-form-item>
  58. <el-button
  59. type="primary"
  60. icon="el-icon-search"
  61. size="mini"
  62. @click="handleQuery"
  63. >搜索</el-button
  64. >
  65. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
  66. >重置</el-button
  67. >
  68. </el-form-item>
  69. </el-form>
  70. <el-row :gutter="10" class="mb8">
  71. <el-col :span="1.5">
  72. <el-button
  73. type="primary"
  74. plain
  75. icon="el-icon-plus"
  76. size="mini"
  77. @click="handleAdd"
  78. v-hasPermi="['business:ARTICLE:add']"
  79. :disabled="isButtonDisabled"
  80. >新增</el-button
  81. >
  82. </el-col>
  83. <el-col :span="1.5">
  84. <el-button
  85. type="danger"
  86. size="mini"
  87. icon="el-icon-delete"
  88. :disabled="multiple"
  89. @click="handleDelete"
  90. v-hasPermi="['business:ARTICLE:remove']"
  91. >删除</el-button
  92. >
  93. </el-col>
  94. <el-col :span="1.5">
  95. <el-button
  96. type="primary"
  97. size="mini"
  98. icon="el-icon-edit"
  99. @click="handleInsert"
  100. v-hasPermi="['business:ARTICLE:insert']"
  101. >设置重点项目录入开放时间</el-button
  102. >
  103. </el-col>
  104. <el-col :span="1.5">
  105. <el-button
  106. type="primary"
  107. size="mini"
  108. icon="el-icon-search"
  109. @click="handleSelect"
  110. v-hasPermi="['business:ARTICLE:ArticleHis']"
  111. >查看历史记录</el-button
  112. >
  113. </el-col>
  114. <right-toolbar
  115. :showSearch.sync="showSearch"
  116. @queryTable="getList"
  117. ></right-toolbar>
  118. </el-row>
  119. <el-table :data="ARTICLEList" @selection-change="handleSelectionChange">
  120. <el-table-column
  121. type="selection"
  122. :selectable="selected"
  123. ></el-table-column>
  124. <el-table-column
  125. label="保税区名称"
  126. width="150"
  127. show-overflow-tooltip
  128. align="center"
  129. prop="deptName"
  130. >
  131. <template slot-scope="scope">
  132. {{ scope.row.deptName }}
  133. </template>
  134. </el-table-column>
  135. <el-table-column
  136. label="项目名称"
  137. width="180"
  138. show-overflow-tooltip
  139. align="center"
  140. prop="atvName"
  141. >
  142. <template slot-scope="scope">
  143. {{ scope.row.atvName }}
  144. </template>
  145. </el-table-column>
  146. <el-table-column
  147. label="建设规模"
  148. show-overflow-tooltip
  149. align="center"
  150. prop="scale"
  151. >
  152. <template slot-scope="scope">
  153. {{ scope.row.scale }}
  154. <!-- <el-tag v-if="scope.row.scale == 1" type="success">小型</el-tag>
  155. <el-tag v-else-if="scope.row.scale == 2" type="success">中型</el-tag>
  156. <el-tag v-else-if="scope.row.scale == 3" type="success">大型</el-tag>-->
  157. </template>
  158. </el-table-column>
  159. <el-table-column
  160. label="年度投资计划(万)"
  161. width="180"
  162. show-overflow-tooltip
  163. align="center"
  164. prop="plan"
  165. >
  166. <template slot-scope="scope">
  167. {{ scope.row.plan }}
  168. </template>
  169. </el-table-column>
  170. <el-table-column
  171. width="180"
  172. label="总投资金额(万)"
  173. align="center"
  174. prop="totalPlan"
  175. show-overflow-tooltip
  176. >
  177. <template slot-scope="scope">
  178. {{ scope.row.totalPlan }}
  179. </template>
  180. </el-table-column>
  181. <el-table-column
  182. label="实际完成投资额(万)"
  183. width="180"
  184. align="center"
  185. prop="reality"
  186. show-overflow-tooltip
  187. >
  188. <template slot-scope="scope">
  189. {{ scope.row.reality }}
  190. </template>
  191. </el-table-column>
  192. <el-table-column
  193. label="投资完成百分比"
  194. width="180"
  195. show-overflow-tooltip
  196. align="center"
  197. prop="retio"
  198. >
  199. <template slot-scope="scope">
  200. {{
  201. scope.row.retio
  202. ? (scope.row.retio * 100).toFixed(2) + "%"
  203. : scope.row.retio
  204. }}
  205. </template>
  206. </el-table-column>
  207. <el-table-column
  208. label="形象进度"
  209. width="200"
  210. show-overflow-tooltip
  211. align="center"
  212. prop="schedule"
  213. >
  214. <template slot-scope="scope">
  215. {{ scope.row.schedule }}
  216. </template>
  217. </el-table-column>
  218. <el-table-column
  219. label="项目审核状态"
  220. width="180"
  221. show-overflow-tooltip
  222. align="center"
  223. prop="status"
  224. >
  225. <template slot-scope="scope">
  226. <el-tag v-if="scope.row.status == 0">草稿</el-tag>
  227. <el-tag v-else-if="scope.row.status == 1" type="info">审核中</el-tag>
  228. <el-tag v-else-if="scope.row.status == 2" type="danger"
  229. >审核拒绝</el-tag
  230. >
  231. <el-tag v-else-if="scope.row.status == 3" type="success"
  232. >已审核</el-tag
  233. >
  234. </template>
  235. </el-table-column>
  236. <el-table-column
  237. label="操作"
  238. align="center"
  239. class-name="small-padding fixed-width"
  240. fixed="right"
  241. width="140"
  242. >
  243. <template slot-scope="scope">
  244. <el-button
  245. size="mini"
  246. type="text"
  247. @click="handleUpdate(scope.row)"
  248. v-hasPermi="['business:ARTICLE:edit']"
  249. v-if="scope.row.status == 0 || scope.row.status == 2"
  250. >修改</el-button
  251. >
  252. <el-button
  253. size="mini"
  254. type="text"
  255. @click="handleTask(scope.row)"
  256. v-hasPermi="['business:ARTICLE:edit']"
  257. v-if="scope.row.status == 0 || scope.row.status == 2"
  258. >提交审核</el-button
  259. >
  260. <el-button
  261. size="mini"
  262. type="text"
  263. @click="showDetail(scope.row)"
  264. v-hasPermi="['business:ARTICLE:query']"
  265. >详情</el-button
  266. >
  267. <el-button
  268. size="mini"
  269. type="text"
  270. v-if="scope.row.status == 3"
  271. @click="showEnterData(scope.row)"
  272. v-hasPermi="['business:ARTICLE:edit']"
  273. >数据填报</el-button
  274. >
  275. <el-button
  276. size="mini"
  277. type="text"
  278. v-if="scope.row.status == 0"
  279. @click="handleDelete(scope.row)"
  280. v-hasPermi="['business:ARTICLE:remove']"
  281. >删除</el-button
  282. >
  283. </template>
  284. </el-table-column>
  285. </el-table>
  286. <pagination
  287. v-show="total > 0"
  288. :total="total"
  289. :page.sync="queryParams.pageNum"
  290. :limit.sync="queryParams.pageSize"
  291. @pagination="getList"
  292. />
  293. <!-- 设置重点项目录入开放时间对话框 -->
  294. <el-dialog
  295. :title="title"
  296. :visible.sync="open"
  297. :close-on-click-modal="false"
  298. width="500px"
  299. append-to-body
  300. >
  301. <el-form ref="form" :model="form" :rules="rules" label-width="80px">
  302. <el-form-item label="开放时间" prop="beginTime">
  303. <el-date-picker
  304. v-model="form.beginTime"
  305. type="date"
  306. value-format="yyyy-MM-dd"
  307. placeholder="选择日期"
  308. >
  309. </el-date-picker>
  310. </el-form-item>
  311. <el-form-item label="截止时间" prop="endTime">
  312. <el-date-picker
  313. v-model="form.endTime"
  314. type="date"
  315. value-format="yyyy-MM-dd"
  316. placeholder="选择日期"
  317. >
  318. </el-date-picker>
  319. </el-form-item>
  320. </el-form>
  321. <div slot="footer" class="dialog-footer">
  322. <el-button type="primary" @click="submitForm">确 定</el-button>
  323. <el-button @click="cancel">取 消</el-button>
  324. </div>
  325. </el-dialog>
  326. <!-- 历史记录 -->
  327. <el-dialog
  328. :title="historyTitle"
  329. :visible.sync="history"
  330. :close-on-click-modal="false"
  331. width="40%"
  332. append-to-body
  333. >
  334. <el-timeline>
  335. <el-timeline-item v-for="(item,index) in historyList" :timestamp="'版本:'+item.version" placement="top">
  336. <el-card>
  337. <!-- <h4>状态:{{ item.status }}</h4> -->
  338. <p>开放时间:{{ item.beginTime }}</p>
  339. <p>截止时间:{{ item.endTime }}</p>
  340. </el-card>
  341. </el-timeline-item>
  342. </el-timeline>
  343. <!-- <el-timeline>
  344. <el-timeline-item
  345. v-for="(item, index) in form.taskVoList"
  346. :timestamp="item.createTime"
  347. placement="top"
  348. :key="index + 'taskHisAction'"
  349. >
  350. <el-card>
  351. <p>
  352. {{ item.execName }}------{{
  353. item.status == 0
  354. ? "待审核"
  355. : item.status == 1
  356. ? "同意"
  357. : item.status == 2
  358. ? "驳回"
  359. : "退回"
  360. }}------{{ item.acname }}------{{ item.createTime }}
  361. <p v-if="item.comments != null">{{
  362. "审核意见:" + item.comments
  363. }}</p>
  364. </p>
  365. </el-card>
  366. </el-timeline-item>
  367. </el-timeline> -->
  368. </el-dialog>
  369. </div>
  370. </template>
  371. <script>
  372. import {
  373. listARTICLE,
  374. getARTICLE,
  375. delARTICLE,
  376. addARTICLE,
  377. updateARTICLE,
  378. getUserInfo,
  379. articleDate,
  380. getqueryArticleDate,
  381. getqueryArticleHisDate,
  382. } from "@/api/portal/ARTICLE/ARTICLE.js";
  383. import edit from "./edit.vue";
  384. import enterData from "./enterData.vue";
  385. import detail from "./detail.vue";
  386. import { listDept } from "@/api/system/dept";
  387. import {formatDate} from "@/utils/index.js";
  388. export default {
  389. name: "ARTICLE",
  390. data() {
  391. return {
  392. bsqList: [],
  393. isButtonDisabled: false,
  394. scaleList: [
  395. { label: "小型", value: 1 },
  396. { label: "中型", value: 2 },
  397. { label: "大型", value: 3 },
  398. ],
  399. statusList: [
  400. { label: "已保存", value: 0 },
  401. { label: "审核中", value: 1 },
  402. { label: "审核驳回", value: 2 },
  403. { label: "已审核", value: 3 },
  404. ],
  405. // 根路径
  406. baseURL: process.env.VUE_APP_BASE_API,
  407. // 遮罩层
  408. loading: true,
  409. // 选中数组
  410. ids: [],
  411. // 非单个禁用
  412. single: true,
  413. // 非多个禁用
  414. multiple: true,
  415. // 显示搜索条件
  416. showSearch: true,
  417. // 总条数
  418. total: 0,
  419. // 重点项目管理表格数据
  420. ARTICLEList: [],
  421. // 弹出层标题
  422. title: "",
  423. // 历史记录列表
  424. historyTitle: "",
  425. history: false,
  426. historyList:[],
  427. // 是否显示弹出层
  428. open: false,
  429. // 查询参数
  430. queryParams: {
  431. pageNum: 1,
  432. pageSize: 10,
  433. id: null,
  434. createTime: null,
  435. createBy: null,
  436. updateTime: null,
  437. updateBy: null,
  438. delFlag: null,
  439. deptId: null,
  440. preview: null,
  441. atvName: null,
  442. scale: null,
  443. unit: null,
  444. content: null,
  445. plan: null,
  446. reality: null,
  447. retio: null,
  448. schedule: null,
  449. least: null,
  450. most: null,
  451. },
  452. deptId: "",
  453. // 表单参数
  454. form: {
  455. beginTime: "",
  456. endTime: "",
  457. },
  458. rules: {
  459. beginTime: [
  460. { required: true, message: "开始时间不能为空", trigger: "blur" },
  461. ],
  462. endTime: [
  463. { required: true, message: "截止时间不能为空", trigger: "blur" },
  464. {
  465. validator: (rule, value, callback) => {
  466. if (new Date(value) < new Date(this.form.beginTime)) {
  467. callback(new Error("截止时间不能早于开始时间"));
  468. } else {
  469. callback();
  470. }
  471. },
  472. trigger: "blur",
  473. },
  474. ],
  475. },
  476. };
  477. },
  478. created() {
  479. listDept({ type: 2 }).then((res) => {
  480. this.bsqList = res.data;
  481. });
  482. this.getList();
  483. this.getDeptId();
  484. this.getqueryArticleDate();
  485. },
  486. methods: {
  487. //选择规则
  488. selected(row, index) {
  489. if (row.status != 0) {
  490. // 选择多选框的功能就拿来批量删除,所以不是草稿禁选
  491. return false;
  492. } else {
  493. return true;
  494. }
  495. },
  496. //获取填报时间
  497. getqueryArticleDate() {
  498. getqueryArticleDate().then((res) => {
  499. const beginTime = new Date(res.data.beginTime);
  500. const endTime = new Date(res.data.endTime);
  501. const currentTime = new Date();
  502. this.form.beginTime = beginTime;
  503. this.form.endTime = endTime;
  504. // 检查当前时间是否在 beginTime 和 endTime 范围内
  505. if (currentTime < beginTime || currentTime > endTime) {
  506. this.isButtonDisabled = true;
  507. this.$message.warning("当前日期不在填报时间范围内");
  508. }
  509. });
  510. },
  511. getDeptId() {
  512. getUserInfo().then((res) => {
  513. this.deptId = res.user.deptId;
  514. });
  515. },
  516. showDetail(row) {
  517. const id = row.id || this.ids;
  518. this.iframe({
  519. obj: detail,
  520. param: { id: id },
  521. title: "详情",
  522. width: "1050px",
  523. height: "80%",
  524. });
  525. },
  526. showEnterData(param) {
  527. this.iframe({
  528. obj: enterData,
  529. param: { param: param, deptId: this.deptId },
  530. title: "数据填报",
  531. width: "500px",
  532. height: "350px",
  533. });
  534. },
  535. // 多选框选中数据
  536. handleSelectionChange(selection) {
  537. this.ids = selection.map((item) => item.id);
  538. this.single = selection.length !== 1;
  539. this.multiple = !selection.length;
  540. },
  541. /** 查询重点项目管理列表 */
  542. getList() {
  543. this.loading = true;
  544. listARTICLE(this.queryParams).then((response) => {
  545. this.ARTICLEList = response.rows;
  546. this.total = response.total;
  547. this.loading = false;
  548. });
  549. },
  550. // 取消按钮
  551. cancel() {
  552. this.open = false;
  553. this.form.beginTime = "";
  554. this.form.endTime = "";
  555. },
  556. /** 搜索按钮操作 */
  557. handleQuery() {
  558. this.queryParams.pageNum = 1;
  559. this.getList();
  560. },
  561. /** 重置按钮操作 */
  562. resetQuery() {
  563. this.queryParams.atvName = null;
  564. this.queryParams.scale = null;
  565. this.queryParams.least = null;
  566. this.queryParams.most = null;
  567. this.resetForm("queryForm");
  568. this.handleQuery();
  569. },
  570. /** 新增按钮操作 */
  571. handleAdd() {
  572. this.iframe({
  573. obj: edit,
  574. param: {},
  575. title: "添加重点项目",
  576. width: "1050px",
  577. height: "80%",
  578. });
  579. },
  580. /** 修改按钮操作 */
  581. handleUpdate(row) {
  582. const id = row.id || this.ids;
  583. this.iframe({
  584. obj: edit,
  585. param: { id: id },
  586. title: "修改重点项目",
  587. width: "1050px",
  588. height: "80%",
  589. });
  590. },
  591. handleTask(row) {
  592. row.status = 1;
  593. updateARTICLE(row).then((response) => {
  594. if (response.code == 200) {
  595. this.$modal.msgSuccess("提交审核成功");
  596. this.getList();
  597. }
  598. });
  599. },
  600. /** 删除按钮操作 */
  601. handleDelete(row) {
  602. const ids = row.id || this.ids;
  603. this.$modal
  604. .confirm("是否确认删除?")
  605. .then(function () {
  606. return delARTICLE(ids);
  607. })
  608. .then(() => {
  609. this.getList();
  610. this.$modal.msgSuccess("删除成功");
  611. })
  612. .catch(() => {});
  613. },
  614. //设置重点项目录入开放时间
  615. handleInsert() {
  616. this.getqueryArticleDate();
  617. this.open = true;
  618. this.title = "设置重点项目录入开放时间";
  619. },
  620. // 查看历史记录
  621. handleSelect() {
  622. this.history = true;
  623. this.historyTitle = "查看历史记录";
  624. getqueryArticleHisDate().then((res) => {
  625. this.historyList = res.data;
  626. this.historyList.forEach(item=>{
  627. item.beginTime = formatDate(item.beginTime);
  628. item.endTime = formatDate(item.endTime);
  629. })
  630. });
  631. },
  632. submitForm() {
  633. if (new Date(this.form.endTime) < new Date(this.form.beginTime)) {
  634. this.$message.error("截止时间不能早于开始时间");
  635. return;
  636. }
  637. const timeData = [
  638. new Date(this.form.beginTime).getTime(),
  639. new Date(this.form.endTime).getTime(),
  640. ];
  641. articleDate(timeData).then((res) => {
  642. if (res.code == 200) {
  643. this.$modal.msgSuccess("设置重点项目录入开放时间成功");
  644. this.open = false;
  645. this.getList();
  646. this.getqueryArticleDate();
  647. }
  648. });
  649. },
  650. },
  651. };
  652. </script>
  653. <style scoped>
  654. .ec-input-range-divider {
  655. display: inline-block;
  656. width: 7px;
  657. height: 1px;
  658. background: #c0c4cc;
  659. margin-bottom: 4px;
  660. margin: 0 5px;
  661. }
  662. </style>