index.vue 14 KB

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