index.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524
  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>
  12. <el-button
  13. type="primary"
  14. icon="el-icon-search"
  15. size="mini"
  16. @click="handleQuery"
  17. >搜索</el-button
  18. >
  19. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
  20. >重置</el-button
  21. >
  22. </el-form-item>
  23. </el-form> -->
  24. <el-row :gutter="10" class="mb8">
  25. <el-col :span="1.5">
  26. <el-button
  27. type="primary"
  28. plain
  29. icon="el-icon-plus"
  30. size="mini"
  31. @click="handleAdd"
  32. v-hasPermi="['business:IMPORTANTPROJECT:add']"
  33. >新增</el-button
  34. >
  35. </el-col>
  36. <el-col :span="1.5">
  37. <el-button
  38. type="success"
  39. plain
  40. icon="el-icon-edit"
  41. size="mini"
  42. :disabled="single"
  43. @click="handleUpdate"
  44. v-hasPermi="['business:IMPORTANTPROJECT:edit']"
  45. >修改</el-button
  46. >
  47. </el-col>
  48. <el-col :span="1.5">
  49. <el-button
  50. type="danger"
  51. plain
  52. icon="el-icon-delete"
  53. size="mini"
  54. :disabled="multiple"
  55. @click="handleDelete"
  56. v-hasPermi="['business:IMPORTANTPROJECT:remove']"
  57. >删除</el-button
  58. >
  59. </el-col>
  60. <!-- <el-col :span="1.5">
  61. <el-button
  62. type="warning"
  63. plain
  64. icon="el-icon-download"
  65. size="mini"
  66. @click="handleExport"
  67. v-hasPermi="['business:IMPORTANTPROJECT:export']"
  68. >导出</el-button
  69. >
  70. </el-col> -->
  71. <right-toolbar
  72. :showSearch.sync="showSearch"
  73. @queryTable="getList"
  74. ></right-toolbar>
  75. </el-row>
  76. <el-table
  77. :data="IMPORTANTPROJECTList"
  78. @selection-change="handleSelectionChange"
  79. >
  80. <el-table-column type="selection" width="55" align="center" />
  81. <!-- <el-table-column label="重点项目数据 主键" align="center" prop="id"> -->
  82. <!-- <template slot-scope="scope">
  83. <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.id"/>
  84. </template> -->
  85. <!-- </el-table-column> -->
  86. <el-table-column label="项目名称 " align="center" prop="xmmc">
  87. <!-- <template slot-scope="scope">
  88. <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.xmmc"/>
  89. </template> -->
  90. </el-table-column>
  91. <el-table-column label="建设单位 " align="center" prop="jsdw">
  92. <!-- <template slot-scope="scope">
  93. <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.jsdw"/>
  94. </template> -->
  95. </el-table-column>
  96. <el-table-column label="承建单位 " align="center" prop="cjdw">
  97. <!-- <template slot-scope="scope">
  98. <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.cjdw"/>
  99. </template> -->
  100. </el-table-column>
  101. <el-table-column label="建设规模 " align="center" prop="jsgm">
  102. <!-- <template slot-scope="scope">
  103. <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.jsgm"/>
  104. </template> -->
  105. </el-table-column>
  106. <el-table-column label="建设内容 " align="center" prop="jsnr">
  107. <!-- <template slot-scope="scope">
  108. <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.jsnr"/>
  109. </template> -->
  110. </el-table-column>
  111. <el-table-column label="年度投资计划 " align="center" prop="ndtzjh">
  112. <!-- <template slot-scope="scope">
  113. <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.ndtzjh"/>
  114. </template> -->
  115. </el-table-column>
  116. <el-table-column label="实际完成投资额 " align="center" prop="sjwctze">
  117. <!-- <template slot-scope="scope">
  118. <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.sjwctze"/>
  119. </template> -->
  120. </el-table-column>
  121. <el-table-column
  122. label="年度投资完成百分比 "
  123. align="center"
  124. prop="ndtzwcbfb"
  125. >
  126. <!-- <template slot-scope="scope">
  127. <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.ndtzwcbfb"/>
  128. </template> -->
  129. </el-table-column>
  130. <el-table-column label="创建时间" align="center" prop="createTime">
  131. <!-- <template slot-scope="scope">
  132. <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.createTime"/>
  133. </template> -->
  134. </el-table-column>
  135. <el-table-column label="创建人" align="center" prop="createBy">
  136. <!-- <template slot-scope="scope">
  137. <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.createBy"/>
  138. </template> -->
  139. </el-table-column>
  140. <el-table-column label="修改时间" align="center" prop="updateTime">
  141. <!-- <template slot-scope="scope">
  142. <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.updateTime"/>
  143. </template> -->
  144. </el-table-column>
  145. <el-table-column label="修改人" align="center" prop="updateBy">
  146. <!-- <template slot-scope="scope">
  147. <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.updateBy"/>
  148. </template> -->
  149. </el-table-column>
  150. <!-- <el-table-column label="部门主键" align="center" prop="deptId"> -->
  151. <!-- <template slot-scope="scope">
  152. <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.deptId"/>
  153. </template> -->
  154. <!-- </el-table-column> -->
  155. <el-table-column
  156. fixed="right"
  157. label="操作"
  158. align="center"
  159. class-name="small-padding fixed-width"
  160. width="130"
  161. >
  162. <template slot-scope="scope">
  163. <el-button
  164. size="mini"
  165. type="text"
  166. icon="el-icon-edit"
  167. @click="handleUpdate(scope.row)"
  168. v-hasPermi="['business:IMPORTANTPROJECT:edit']"
  169. >修改</el-button
  170. >
  171. <el-button
  172. size="mini"
  173. type="text"
  174. icon="el-icon-delete"
  175. @click="handleDelete(scope.row)"
  176. v-hasPermi="['business:IMPORTANTPROJECT:remove']"
  177. >删除</el-button
  178. >
  179. </template>
  180. </el-table-column>
  181. </el-table>
  182. <pagination
  183. v-show="total > 0"
  184. :total="total"
  185. :page.sync="queryParams.pageNum"
  186. :limit.sync="queryParams.pageSize"
  187. @pagination="getList"
  188. />
  189. <!-- 添加或修改重点项目数据 对话框 -->
  190. <el-dialog :title="title" :visible.sync="open" :close-on-click-modal="false" width="35%" append-to-body>
  191. <el-form ref="form" :model="form" :rules="rules" label-width="180px">
  192. <el-form-item label="项目名称" prop="xmmc">
  193. <el-input v-model="form.xmmc" placeholder="请输入项目名称"></el-input>
  194. </el-form-item>
  195. <el-form-item label="建设单位" prop="jsdw">
  196. <el-select
  197. v-model="buildValue"
  198. @change="selectBuild"
  199. placeholder="请选择"
  200. >
  201. <el-option
  202. v-for="(item, index) in deptList"
  203. :key="index"
  204. :label="item.deptName"
  205. :value="item.deptId"
  206. >
  207. </el-option>
  208. </el-select>
  209. </el-form-item>
  210. <el-form-item label="承设单位" prop="cjdw">
  211. <!-- {{ buildValue }} -->
  212. <el-select
  213. v-model="deptValue"
  214. @change="selectDept"
  215. placeholder="请选择"
  216. >
  217. <el-option
  218. v-for="(item, index) in deptList"
  219. :key="index"
  220. :label="item.deptName"
  221. :value="item.deptId"
  222. >
  223. </el-option>
  224. </el-select>
  225. </el-form-item>
  226. <el-form-item label="建设规模 " prop="jsgm">
  227. <el-input
  228. v-model="form.jsgm"
  229. placeholder="请输入建设规模 "
  230. ></el-input>
  231. </el-form-item>
  232. <el-form-item label="建设内容 " prop="jsnr">
  233. <el-input
  234. v-model="form.jsnr"
  235. placeholder="请输入建设内容 "
  236. ></el-input>
  237. </el-form-item>
  238. <el-form-item label="年度投资计划 " prop="ndtzjh">
  239. <el-input
  240. v-model="form.ndtzjh"
  241. placeholder="请输入年度投资计划 "
  242. ></el-input>
  243. </el-form-item>
  244. <el-form-item label="实际完成投资额 " prop="sjwctze">
  245. <el-input
  246. v-model="form.sjwctze"
  247. placeholder="请输入实际完成投资额 "
  248. ></el-input>
  249. </el-form-item>
  250. <el-form-item label="年度投资完成百分比 " prop="ndtzwcbfb">
  251. <el-input
  252. v-model="form.ndtzwcbfb"
  253. placeholder="请输入年度投资完成百分比 "
  254. ></el-input>
  255. </el-form-item>
  256. </el-form>
  257. <div slot="footer" class="dialog-footer">
  258. <el-button type="primary" @click="submitForm">确 定</el-button>
  259. <el-button @click="cancel">取 消</el-button>
  260. </div>
  261. </el-dialog>
  262. </div>
  263. </template>
  264. <script>
  265. import { listDept } from "@/api/system/dept";
  266. import {
  267. listIMPORTANTPROJECT,
  268. getIMPORTANTPROJECT,
  269. delIMPORTANTPROJECT,
  270. addIMPORTANTPROJECT,
  271. updateIMPORTANTPROJECT,
  272. } from "@/api/portal/IMPORTANTPROJECT/IMPORTANTPROJECT";
  273. export default {
  274. name: "IMPORTANTPROJECT",
  275. data() {
  276. return {
  277. // 单位列表
  278. deptList: [],
  279. deptValue: null,
  280. buildValue: null,
  281. // 根路径
  282. baseURL: process.env.VUE_APP_BASE_API,
  283. // 遮罩层
  284. loading: true,
  285. // 选中数组
  286. ids: [],
  287. // 非单个禁用
  288. single: true,
  289. // 非多个禁用
  290. multiple: true,
  291. // 显示搜索条件
  292. showSearch: true,
  293. // 总条数
  294. total: 0,
  295. // 重点项目数据 表格数据
  296. IMPORTANTPROJECTList: [],
  297. // 弹出层标题
  298. title: "",
  299. // 是否显示弹出层
  300. open: false,
  301. // 查询参数
  302. queryParams: {
  303. pageNum: 1,
  304. pageSize: 10,
  305. id: null,
  306. xmmc: null,
  307. jsdw: null,
  308. cjdw: null,
  309. jsgm: null,
  310. jsnr: null,
  311. ndtzjh: null,
  312. sjwctze: null,
  313. ndtzwcbfb: null,
  314. createTime: null,
  315. createBy: null,
  316. updateTime: null,
  317. updateBy: null,
  318. deptId: null,
  319. },
  320. // 表单参数
  321. form: {},
  322. // 表单校验
  323. rules: {
  324. id: [
  325. {
  326. required: true,
  327. message: "重点项目数据 主键不能为空",
  328. trigger: "blur",
  329. },
  330. ],
  331. xmmc: [
  332. { required: true, message: "项目名称 不能为空", trigger: "blur" },
  333. ],
  334. jsdw: [
  335. { required: true, message: "建设单位 不能为空", trigger: "blur" },
  336. ],
  337. cjdw: [
  338. { required: true, message: "承建单位 不能为空", trigger: "blur" },
  339. ],
  340. jsgm: [
  341. { required: true, message: "建设规模 不能为空", trigger: "blur" },
  342. ],
  343. jsnr: [
  344. { required: true, message: "建设内容 不能为空", trigger: "blur" },
  345. ],
  346. ndtzjh: [
  347. { required: true, message: "年度投资计划 不能为空", trigger: "blur" },
  348. ],
  349. sjwctze: [
  350. {
  351. required: true,
  352. message: "实际完成投资额 不能为空",
  353. trigger: "blur",
  354. },
  355. ],
  356. ndtzwcbfb: [
  357. {
  358. required: true,
  359. message: "年度投资完成百分比 不能为空",
  360. trigger: "blur",
  361. },
  362. ],
  363. deptId: [
  364. {
  365. required: true,
  366. message: "部门主键,根据[建设单位 ]获得不能为空",
  367. trigger: "blur",
  368. },
  369. ],
  370. },
  371. };
  372. },
  373. created() {
  374. this.getList();
  375. listDept().then((res) => {
  376. res.data.forEach((item) => {
  377. if (item.type == 3) {
  378. this.deptList.push(item);
  379. }
  380. });
  381. console.log(this.deptList);
  382. });
  383. },
  384. methods: {
  385. /** 查询重点项目数据 列表 */
  386. getList() {
  387. this.loading = true;
  388. listIMPORTANTPROJECT(this.queryParams).then((response) => {
  389. this.IMPORTANTPROJECTList = response.rows;
  390. this.total = response.total;
  391. this.loading = false;
  392. });
  393. },
  394. selectDept(val) {
  395. this.form.cjdw = val;
  396. },
  397. selectBuild(val) {
  398. this.form.jsdw = val;
  399. },
  400. // 取消按钮
  401. cancel() {
  402. this.open = false;
  403. this.reset();
  404. },
  405. // 表单重置
  406. reset() {
  407. this.form = {
  408. id: null,
  409. xmmc: null,
  410. jsdw: null,
  411. cjdw: null,
  412. jsgm: null,
  413. jsnr: null,
  414. ndtzjh: null,
  415. sjwctze: null,
  416. ndtzwcbfb: null,
  417. deptId: null,
  418. };
  419. this.deptValue = null;
  420. this.buildValue = null;
  421. this.resetForm("form");
  422. },
  423. /** 搜索按钮操作 */
  424. handleQuery() {
  425. this.queryParams.pageNum = 1;
  426. this.getList();
  427. },
  428. /** 重置按钮操作 */
  429. resetQuery() {
  430. this.resetForm("queryForm");
  431. this.handleQuery();
  432. },
  433. // 多选框选中数据
  434. handleSelectionChange(selection) {
  435. this.ids = selection.map((item) => item.id);
  436. this.single = selection.length !== 1;
  437. this.multiple = !selection.length;
  438. },
  439. /** 新增按钮操作 */
  440. handleAdd() {
  441. this.reset();
  442. this.open = true;
  443. this.title = "添加重点项目数据";
  444. },
  445. /** 修改按钮操作 */
  446. handleUpdate(row) {
  447. this.reset();
  448. const id = row.id || this.ids;
  449. getIMPORTANTPROJECT(id).then((response) => {
  450. this.deptList.forEach((item) => {
  451. if (item.deptId == response.data.jsdw) {
  452. this.deptValue = item.deptName;
  453. } else if (item.deptId == response.data.cjdw) {
  454. this.buildValue = item.deptName;
  455. }
  456. });
  457. this.form = response.data;
  458. this.open = true;
  459. this.title = "修改重点项目数据 ";
  460. });
  461. },
  462. /** 提交按钮 */
  463. submitForm() {
  464. this.$refs["form"].validate((valid) => {
  465. if (valid) {
  466. if (this.form.id != null) {
  467. updateIMPORTANTPROJECT(this.form).then((response) => {
  468. this.$modal.msgSuccess("修改成功");
  469. this.open = false;
  470. this.getList();
  471. });
  472. } else {
  473. // this.form.deptId = this.$store.state.user.
  474. addIMPORTANTPROJECT(this.form).then((response) => {
  475. this.$modal.msgSuccess("新增成功");
  476. this.open = false;
  477. this.getList();
  478. });
  479. }
  480. }
  481. });
  482. },
  483. /** 删除按钮操作 */
  484. handleDelete(row) {
  485. const ids = row.id || this.ids;
  486. this.$modal
  487. .confirm('是否确认删除重点项目数据 编号为"' + ids + '"的数据项?')
  488. .then(function () {
  489. return delIMPORTANTPROJECT(ids);
  490. })
  491. .then(() => {
  492. this.getList();
  493. this.$modal.msgSuccess("删除成功");
  494. })
  495. .catch(() => {});
  496. },
  497. /** 导出按钮操作 */
  498. handleExport() {
  499. this.download(
  500. "business/IMPORTANTPROJECT/export",
  501. {
  502. ...this.queryParams,
  503. },
  504. `IMPORTANTPROJECT_${new Date().getTime()}.xlsx`
  505. );
  506. },
  507. },
  508. };
  509. </script>