index.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393
  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.value"
  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. >新增</el-button
  65. >
  66. </el-col>
  67. <el-col :span="1.5">
  68. <el-button
  69. type="danger"
  70. size="mini"
  71. icon="el-icon-delete"
  72. :disabled="multiple"
  73. @click="handleDelete"
  74. v-hasPermi="['business:ARTICLE:remove']"
  75. >删除</el-button
  76. >
  77. </el-col>
  78. <right-toolbar
  79. :showSearch.sync="showSearch"
  80. @queryTable="getList"
  81. ></right-toolbar>
  82. </el-row>
  83. <el-table :data="ARTICLEList" @selection-change="handleSelectionChange">
  84. <el-table-column type="selection"></el-table-column>
  85. <el-table-column label="保税区名称" align="center" prop="deptName">
  86. <template slot-scope="scope">
  87. {{ scope.row.deptName }}
  88. </template>
  89. </el-table-column>
  90. <el-table-column label="项目名称" align="center" prop="atvName">
  91. <template slot-scope="scope">
  92. {{ scope.row.atvName }}
  93. </template>
  94. </el-table-column>
  95. <el-table-column label="建设规模" align="center" prop="scale">
  96. <template slot-scope="scope">
  97. <el-tag v-if="scope.row.scale == 1" type="success">小型</el-tag>
  98. <el-tag v-else-if="scope.row.scale == 2" type="success">中型</el-tag>
  99. <el-tag v-else-if="scope.row.scale == 3" type="success">大型</el-tag>
  100. </template>
  101. </el-table-column>
  102. <el-table-column label="年度投资计划(万)" align="center" prop="plan">
  103. <template slot-scope="scope">
  104. {{ scope.row.plan }}
  105. </template>
  106. </el-table-column>
  107. <el-table-column
  108. label="实际完成投资额(万)"
  109. align="center"
  110. prop="reality"
  111. width="130px"
  112. >
  113. <template slot-scope="scope">
  114. {{ scope.row.reality }}
  115. </template>
  116. </el-table-column>
  117. <el-table-column label="年度投资完成百分比" align="center" prop="retio">
  118. <template slot-scope="scope">
  119. {{
  120. scope.row.retio
  121. ? scope.row.retio.toFixed(2) * 100 + "%"
  122. : scope.row.retio
  123. }}
  124. </template>
  125. </el-table-column>
  126. <el-table-column label="形象进度" align="center" prop="schedule">
  127. <template slot-scope="scope">
  128. {{ scope.row.schedule }}
  129. </template>
  130. </el-table-column>
  131. <el-table-column label="项目审核状态" align="center" prop="status">
  132. <template slot-scope="scope">
  133. <el-tag v-if="scope.row.status == 0">草稿</el-tag>
  134. <el-tag v-else-if="scope.row.status == 1" type="info">审核中</el-tag>
  135. <el-tag v-else-if="scope.row.status == 2" type="danger"
  136. >审核拒绝</el-tag
  137. >
  138. <el-tag v-else-if="scope.row.status == 3" type="success"
  139. >已审核</el-tag
  140. >
  141. </template>
  142. </el-table-column>
  143. <el-table-column
  144. label="操作"
  145. align="center"
  146. class-name="small-padding fixed-width"
  147. >
  148. <template slot-scope="scope">
  149. <el-button
  150. size="mini"
  151. type="text"
  152. @click="handleUpdate(scope.row)"
  153. v-hasPermi="['business:ARTICLE:edit']"
  154. v-if="scope.row.status == 0 || scope.row.status == 2"
  155. >修改</el-button
  156. >
  157. <el-button
  158. size="mini"
  159. type="text"
  160. @click="handleTask(scope.row)"
  161. v-hasPermi="['business:ARTICLE:edit']"
  162. v-if="scope.row.status == 0 || scope.row.status == 2"
  163. >提交审核</el-button
  164. >
  165. <el-button
  166. size="mini"
  167. type="text"
  168. @click="showDetail(scope.row)"
  169. v-hasPermi="['business:ARTICLE:query']"
  170. >详情</el-button
  171. >
  172. <el-button
  173. size="mini"
  174. type="text"
  175. v-if="scope.row.status == 3"
  176. @click="showEnterData(scope.row)"
  177. v-hasPermi="['business:ARTICLE:edit']"
  178. >数据填报</el-button
  179. >
  180. </template>
  181. </el-table-column>
  182. </el-table>
  183. <pagination
  184. v-show="total > 0"
  185. :total="total"
  186. :page.sync="queryParams.pageNum"
  187. :limit.sync="queryParams.pageSize"
  188. @pagination="getList"
  189. />
  190. </div>
  191. </template>
  192. <script>
  193. import {
  194. listARTICLE,
  195. getARTICLE,
  196. delARTICLE,
  197. addARTICLE,
  198. updateARTICLE,
  199. getUserInfo,
  200. } from "@/api/portal/ARTICLE/ARTICLE.js";
  201. import edit from "./edit.vue";
  202. import enterData from "./enterData.vue";
  203. import detail from "./detail.vue";
  204. export default {
  205. name: "ARTICLE",
  206. data() {
  207. return {
  208. scaleList: [
  209. { label: "小型", value: 1 },
  210. { label: "中型", value: 2 },
  211. { label: "大型", value: 3 },
  212. ],
  213. statusList: [
  214. { label: "已保存", value: 0 },
  215. { label: "审核中", value: 1 },
  216. { label: "审核驳回", value: 2 },
  217. { label: "已审核", value: 3 },
  218. ],
  219. // 根路径
  220. baseURL: process.env.VUE_APP_BASE_API,
  221. // 遮罩层
  222. loading: true,
  223. // 选中数组
  224. ids: [],
  225. // 非单个禁用
  226. single: true,
  227. // 非多个禁用
  228. multiple: true,
  229. // 显示搜索条件
  230. showSearch: true,
  231. // 总条数
  232. total: 0,
  233. // 重点项目管理表格数据
  234. ARTICLEList: [],
  235. // 弹出层标题
  236. title: "",
  237. // 是否显示弹出层
  238. open: false,
  239. // 查询参数
  240. queryParams: {
  241. pageNum: 1,
  242. pageSize: 10,
  243. id: null,
  244. createTime: null,
  245. createBy: null,
  246. updateTime: null,
  247. updateBy: null,
  248. delFlag: null,
  249. deptId: null,
  250. preview: null,
  251. atvName: null,
  252. scale: null,
  253. unit: null,
  254. content: null,
  255. plan: null,
  256. reality: null,
  257. retio: null,
  258. schedule: null,
  259. least:null,
  260. most:null
  261. },
  262. deptId: "",
  263. };
  264. },
  265. created() {
  266. this.getList();
  267. this.getDeptId();
  268. },
  269. methods: {
  270. getDeptId() {
  271. getUserInfo().then((res) => {
  272. this.deptId = res.user.deptId;
  273. });
  274. },
  275. showDetail(row) {
  276. const id = row.id || this.ids;
  277. this.iframe({
  278. obj: detail,
  279. param: { id: id },
  280. title: "详情",
  281. width: "1050px",
  282. height: "80%",
  283. });
  284. },
  285. showEnterData(param) {
  286. this.iframe({
  287. obj: enterData,
  288. param: { param: param, deptId: this.deptId },
  289. title: "数据填报",
  290. width: "500px",
  291. height: "350px",
  292. });
  293. },
  294. // 多选框选中数据
  295. handleSelectionChange(selection) {
  296. this.ids = selection.map((item) => item.id);
  297. this.single = selection.length !== 1;
  298. this.multiple = !selection.length;
  299. },
  300. /** 查询重点项目管理列表 */
  301. getList() {
  302. this.loading = true;
  303. listARTICLE(this.queryParams).then((response) => {
  304. this.ARTICLEList = response.rows;
  305. this.total = response.total;
  306. this.loading = false;
  307. });
  308. },
  309. // 取消按钮
  310. cancel() {
  311. this.open = false;
  312. this.reset();
  313. },
  314. /** 搜索按钮操作 */
  315. handleQuery() {
  316. this.queryParams.pageNum = 1;
  317. this.getList();
  318. },
  319. /** 重置按钮操作 */
  320. resetQuery() {
  321. this.queryParams.atvName = null;
  322. this.queryParams.scale = null;
  323. this.queryParams.least = null;
  324. this.queryParams.most = null;
  325. this.resetForm("queryForm");
  326. this.handleQuery();
  327. },
  328. /** 新增按钮操作 */
  329. handleAdd() {
  330. this.iframe({
  331. obj: edit,
  332. param: {},
  333. title: "添加重点项目",
  334. width: "1050px",
  335. height: "80%",
  336. });
  337. },
  338. /** 修改按钮操作 */
  339. handleUpdate(row) {
  340. const id = row.id || this.ids;
  341. this.iframe({
  342. obj: edit,
  343. param: { id: id },
  344. title: "修改重点项目",
  345. width: "1050px",
  346. height: "80%",
  347. });
  348. },
  349. handleTask(row) {
  350. row.status = 1;
  351. addARTICLE(row).then((response) => {
  352. if (response.code == 200) {
  353. this.$modal.msgSuccess("提交审核成功");
  354. this.getList();
  355. }
  356. });
  357. },
  358. /** 删除按钮操作 */
  359. handleDelete(row) {
  360. const ids = row.id || this.ids;
  361. this.$modal
  362. .confirm("是否确认删除?")
  363. .then(function () {
  364. return delARTICLE(ids);
  365. })
  366. .then(() => {
  367. this.getList();
  368. this.$modal.msgSuccess("删除成功");
  369. })
  370. .catch(() => {});
  371. },
  372. },
  373. };
  374. </script>
  375. <style scoped>
  376. .ec-input-range-divider {
  377. display: inline-block;
  378. width: 7px;
  379. height: 1px;
  380. background: #c0c4cc;
  381. margin-bottom: 4px;
  382. margin: 0 5px;
  383. }
  384. </style>