planList.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405
  1. /**
  2. * 计划管理 计划列表
  3. */
  4. <template>
  5. <div style="height: 100%">
  6. <el-row class="top-main" style="height: 15%">
  7. <!-- 面包屑导航 -->
  8. <el-breadcrumb separator-class="el-icon-arrow-right">
  9. <el-breadcrumb-item>点检管理</el-breadcrumb-item>
  10. <el-breadcrumb-item>点检保养列表</el-breadcrumb-item>
  11. </el-breadcrumb>
  12. <h3>点检保养列表</h3>
  13. </el-row>
  14. <el-row class="body-main" style="min-height: 85%">
  15. <!-- 搜索筛选 -->
  16. <el-form inline ref="searchReset" :model="searchData">
  17. <el-form-item label="点检名称:" prop="name">
  18. <el-input
  19. size="small"
  20. v-model="searchData.name"
  21. placeholder="请输入"
  22. style="width: 150px"
  23. ></el-input>
  24. </el-form-item>
  25. <el-form-item label="点检状态:" prop="checkStatus">
  26. <el-select
  27. size="small"
  28. v-model="searchData.checkStatus"
  29. placeholder="请选择"
  30. style="width: 100px"
  31. >
  32. <el-option
  33. v-for="item in planStatus"
  34. :label="item.value"
  35. :value="item.id"
  36. :key="item.id"
  37. ></el-option>
  38. </el-select>
  39. </el-form-item>
  40. <el-form-item label="责任人:" prop="principleOne">
  41. <el-select
  42. size="small"
  43. v-model="searchData.principleOne"
  44. placeholder="请选择"
  45. style="width: 100px"
  46. @visible-change="getPrincipleData"
  47. >
  48. <el-option
  49. v-for="item in principleData"
  50. :label="item.name"
  51. :value="item.id"
  52. :key="item.id"
  53. ></el-option>
  54. </el-select>
  55. </el-form-item>
  56. <el-form-item label="巡检人:" prop="tourId">
  57. <el-select
  58. size="small"
  59. v-model="searchData.tourId"
  60. placeholder="请选择"
  61. style="width: 100px"
  62. @visible-change="getTourData"
  63. >
  64. <el-option
  65. v-for="item in tourData"
  66. :label="item.name"
  67. :value="item.id"
  68. :key="item.id"
  69. ></el-option>
  70. </el-select>
  71. </el-form-item>
  72. <el-form-item label="设备名称:" prop="deviceName">
  73. <el-input
  74. size="small"
  75. v-model="searchData.deviceName"
  76. placeholder="请输入"
  77. style="width: 150px"
  78. ></el-input>
  79. </el-form-item>
  80. <el-form-item style="float: right">
  81. <el-button
  82. size="small"
  83. type="primary"
  84. @click="$router.push('/goods/addFailSafePlan')"
  85. >新建</el-button
  86. >
  87. </el-form-item>
  88. <el-form-item style="float: right">
  89. <el-button size="small" @click="reset">重置</el-button>
  90. </el-form-item>
  91. <el-form-item style="float: right">
  92. <el-button size="small" type="primary" @click="search"
  93. >查询</el-button
  94. >
  95. </el-form-item>
  96. </el-form>
  97. <el-alert type="info" :closable="false" show-icon>
  98. <slot name="title">
  99. <div style="font-size: 18px" v-html="spotCheckNum">
  100. {{ spotCheckNum }}
  101. </div>
  102. </slot>
  103. </el-alert>
  104. <!--列表-->
  105. <el-table
  106. size="mini"
  107. :data="listData"
  108. highlight-current-row
  109. v-loading="loading"
  110. element-loading-text="拼命加载中"
  111. :header-cell-style="{ 'background-color': '#FAFAFA', color: '#000' }"
  112. style="width: 100%; margin-top: 20px"
  113. >
  114. <el-table-column
  115. align="center"
  116. prop="name"
  117. label="点检保养名称"
  118. min-width="50px"
  119. >
  120. </el-table-column>
  121. <el-table-column
  122. align="center"
  123. prop="deviceNo"
  124. label="设备编号"
  125. min-width="50px"
  126. >
  127. </el-table-column>
  128. <el-table-column
  129. align="center"
  130. prop="deviceName"
  131. label="设备名称"
  132. min-width="50px"
  133. >
  134. </el-table-column>
  135. <el-table-column
  136. align="center"
  137. prop="deviceType"
  138. label="型号"
  139. min-width="40px"
  140. >
  141. </el-table-column>
  142. <el-table-column align="center" label="责任人" min-width="50px">
  143. <template slot-scope="scope">
  144. <span v-if="scope.row.principleOneName">{{
  145. scope.row.principleOneName
  146. }}</span>
  147. <span v-if="scope.row.principleTwoName"
  148. >,{{ scope.row.principleTwoName }}</span
  149. >
  150. </template>
  151. </el-table-column>
  152. <el-table-column
  153. align="center"
  154. prop="tourName"
  155. label="巡检人"
  156. min-width="30px"
  157. >
  158. </el-table-column>
  159. <el-table-column
  160. align="center"
  161. prop="nos"
  162. label="编号"
  163. min-width="20px"
  164. >
  165. </el-table-column>
  166. <el-table-column
  167. align="center"
  168. prop="checkStatus"
  169. label="计划状态"
  170. min-width="30px"
  171. >
  172. <template slot-scope="scope">
  173. <span v-if="scope.row.checkStatus === 1">待响应</span>
  174. <span v-else-if="scope.row.checkStatus === 2">处理中</span>
  175. <!-- <span v-else-if="scope.row.checkStatus === 3">已响应</span> -->
  176. <span v-else>已完成</span>
  177. </template>
  178. </el-table-column>
  179. <el-table-column
  180. align="center"
  181. prop="createdTime"
  182. label="点检保养表创建日期"
  183. min-width="50px"
  184. >
  185. </el-table-column>
  186. <el-table-column align="center" label="操作" min-width="45px">
  187. <template slot-scope="scope">
  188. <el-button size="mini" type="text" @click="jumpListinfo(scope.row)"
  189. >查看</el-button
  190. >
  191. <el-button size="mini" type="text" @click="update(scope.row)"
  192. >编辑</el-button
  193. >
  194. <el-button
  195. v-if="!scope.row.pauseFlag"
  196. size="mini"
  197. type="text"
  198. @click="userLocks(scope.row)"
  199. :disabled="scope.row.versionId === '1'"
  200. >禁用</el-button
  201. >
  202. <el-button
  203. v-else
  204. size="mini"
  205. type="text"
  206. @click="userLocks(scope.row)"
  207. >解禁</el-button
  208. >
  209. </template>
  210. </el-table-column>
  211. </el-table>
  212. <!-- 分页组件 -->
  213. <template v-if="listData.length">
  214. <Pagination
  215. :childMsg="pageInfo"
  216. style="display: flex; justify-content: flex-end; margin-top: 20px"
  217. @currentChange="get_page"
  218. >
  219. </Pagination>
  220. </template>
  221. </el-row>
  222. <!-- 新建计划 -->
  223. <el-dialog
  224. :visible.sync="showView"
  225. :close-on-click-modal="false"
  226. @close="showView = false"
  227. >
  228. <el-row class="create-plan">
  229. <el-button
  230. type="primary"
  231. style="width: 50%"
  232. @click="$router.push('/goods/addFirstPlan')"
  233. >首件检验放行计划</el-button
  234. >
  235. </el-row>
  236. <el-row class="create-plan">
  237. <el-button
  238. type="primary"
  239. style="width: 50%"
  240. @click="$router.push('/goods/addFailSafePlan')"
  241. >防错系统计划</el-button
  242. >
  243. </el-row>
  244. </el-dialog>
  245. </div>
  246. </template>
  247. <script>
  248. import Pagination from "@/components/Pagination";
  249. import { resetMixin, exportMixin } from "@/utils/mixin";
  250. import { planlist, unUsePlan, getPrinciple, getTour } from "@/api/project";
  251. export default {
  252. mixins: [resetMixin, exportMixin],
  253. data() {
  254. return {
  255. // 总数
  256. total: 0,
  257. // 处理中
  258. clz: 0,
  259. // 已完成
  260. ywc: 0,
  261. // 待响应
  262. dxy: 0,
  263. showView: false,
  264. loading: false, //是显示加载
  265. searchData: {
  266. name: "",
  267. checkStatus: "",
  268. principleOne: "",
  269. tourId: "",
  270. deviceName: "",
  271. page: 1,
  272. size: this.$store.state.pageSize,
  273. },
  274. // 责任人数据
  275. principleData: [],
  276. // 巡检人数据
  277. tourData: [],
  278. // 点检保养状态
  279. planStatus: [
  280. { id: 1, value: "待响应" },
  281. { id: 2, value: "处理中" },
  282. // { id: 3, value: "已响应" },
  283. { id: 3, value: "已完成" },
  284. ],
  285. // 计划数据
  286. listData: [],
  287. };
  288. },
  289. // 注册组件
  290. components: {
  291. Pagination,
  292. },
  293. created() {
  294. this.getdata();
  295. },
  296. computed: {
  297. spotCheckNum() {
  298. return ` 共 <span style="color:red;">${this.total}</span> 项 <span style="margin-left:50px;">处理中 : </span><span style="color:blue">${this.clz}</span> 项<span style="margin-left:50px;">已完成 : </span><span style="color:blue">${this.ywc}</span> 项<span style="margin-left:50px;">待响应 : </span><span style="color:red">${this.dxy}</span> 项`;
  299. },
  300. },
  301. methods: {
  302. // ...mapMutations(['savePlanFilterInfo']),
  303. // 获取计划列表
  304. getdata() {
  305. this.loading = true;
  306. planlist(this.searchData).then((res) => {
  307. if (res.status === "20000") {
  308. this.listData = res.data.row;
  309. this.pageInfo.total = parseInt(res.data.total)
  310. this.total = parseInt(res.data.total)
  311. let message = JSON.parse(res.message)
  312. this.dxy = message[0]
  313. this.clz = message[1]
  314. this.ywc = message[2]
  315. } else {
  316. this.listData = [];
  317. this.$message.error("暂无数据");
  318. }
  319. this.loading = false;
  320. });
  321. },
  322. // 获取责任人
  323. getPrincipleData() {
  324. getPrinciple().then((res) => {
  325. if (res.status === "20000") {
  326. this.principleData = res.data;
  327. }
  328. });
  329. },
  330. // 获取巡检人
  331. getTourData() {
  332. getTour().then((res) => {
  333. if (res.status === "20000") {
  334. this.tourData = res.data;
  335. }
  336. });
  337. },
  338. // 禁用/解禁
  339. userLocks(row) {
  340. this.$confirm(`是否${row.pauseFlag ? "解禁" : "禁用"}`, "提示", {
  341. confirmButtonText: "确定",
  342. cancelButtonText: "取消",
  343. type: "warning",
  344. })
  345. .then(() => {
  346. unUsePlan({ versionId: row.versionId, updateFlag: !row.pauseFlag }).then((res) => {
  347. if (res.status === "20000") {
  348. this.$message.success("操作成功");
  349. }
  350. this.getdata();
  351. });
  352. })
  353. .catch(() => {
  354. this.$message({
  355. type: "info",
  356. message: "已取消",
  357. });
  358. });
  359. },
  360. // 跳转编辑页
  361. update(row) {
  362. this.$router.push({
  363. path: "/goods/addFailSafePlan",
  364. query: { id: row.versionId },
  365. });
  366. },
  367. // 查看
  368. jumpListinfo(row) {
  369. console.log(row)
  370. this.$router.push({
  371. path: "/goods/failSafePlan",
  372. query: { id: row.versionId },
  373. });
  374. },
  375. },
  376. };
  377. </script>
  378. <style scoped>
  379. /deep/ .el-dialog {
  380. margin: 0 !important;
  381. position: absolute;
  382. top: 50%;
  383. left: 50%;
  384. transform: translate(-50%, -50%);
  385. width: 30%;
  386. border-radius: 20px;
  387. }
  388. .top-main {
  389. padding: 20px 20px 0 20px;
  390. height: 100%;
  391. }
  392. .body-main {
  393. border: 20px solid #f0f2f5;
  394. padding: 20px 20px 0 20px;
  395. }
  396. .create-plan {
  397. text-align: center;
  398. margin-bottom: 20px;
  399. }
  400. .el-alert{
  401. padding:6px 10px;
  402. }
  403. </style>