index.vue 15 KB

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