selectsop.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. /**
  2. @author:fugy
  3. @date:2018.10.24
  4. @info:项目sop配置列表的查看详情
  5. */
  6. <template>
  7. <el-dialog
  8. title="选择SOP"
  9. :visible.sync="dialogVisible"
  10. width="50%"
  11. center>
  12. <div class="select-sop-box">
  13. <!-- top搜索框 -->
  14. <div class="top">
  15. <el-input
  16. style="width: 400px;"
  17. placeholder="请先输入SOP名称进行查询"
  18. v-model.trim="searchValue"
  19. clearable>
  20. </el-input>
  21. <el-button type="primary" @click="getSearch">查询</el-button>
  22. </div>
  23. <div class="table-box">
  24. <el-table
  25. :data="selectSopData"
  26. border
  27. style="width: 100%">
  28. <el-table-column
  29. prop="sopName"
  30. label="SOP名称"
  31. header-align="center">
  32. </el-table-column>
  33. <el-table-column
  34. :show-header="false"
  35. label="选择"
  36. width="50"
  37. header-align="center">
  38. <template slot-scope="scope">
  39. <el-checkbox v-model="scope.row.checked"></el-checkbox>
  40. </template>
  41. </el-table-column>
  42. </el-table>
  43. </div>
  44. <div class="btn-box">
  45. <el-button size="medium" @click="cancel">取消</el-button>
  46. <el-button type="primary" size="medium" class="save-btn" @click="save">保存</el-button>
  47. </div>
  48. </div>
  49. </el-dialog>
  50. </template>
  51. <script>
  52. import api from "@/api/fm/sop";
  53. export default {
  54. name: "sop-look-item",
  55. data() {
  56. return {
  57. dialogVisible: false,
  58. searchValue: null, //查询search
  59. selectSopData: [], //sop数组
  60. }
  61. },
  62. props:["selectSopVisibleFlag", "checkedSopArr","projectId"],
  63. methods: {
  64. // 获取sopList数据
  65. async getSopList() {
  66. this.selectSopData = [];
  67. let params = {
  68. sopName: this.searchValue || null,
  69. projectId: this.projectId
  70. };
  71. let {result, content} = await api.getSopList(params);
  72. if(result === "success" && content && content.length) {
  73. this.handleData(content);
  74. }
  75. },
  76. handleData(arr) {
  77. arr.forEach((ele, index) => {
  78. ele.checked = false;
  79. })
  80. if(this.checkedSopArr.length) {
  81. arr.forEach((item, index) => {
  82. this.checkedSopArr.forEach((ele, ind) => {
  83. if(item.sopId == ele.sopId) {
  84. item.checked = true;
  85. }
  86. })
  87. })
  88. }
  89. this.selectSopData = arr;
  90. },
  91. // 查询
  92. getSearch() {
  93. this.getSopList();
  94. },
  95. // 取消
  96. cancel() {
  97. this.dialogVisible = false;
  98. },
  99. // 保存
  100. save() {
  101. let arr = this.selectSopData.filter((ele, index) => {
  102. return ele.checked == true
  103. })
  104. if(arr.length) {
  105. this.$emit("sop-checked", arr);
  106. this.dialogVisible = false;
  107. } else {
  108. this.$message({
  109. message: '请选择SOP',
  110. type: 'warning'
  111. });
  112. }
  113. }
  114. },
  115. watch: {
  116. selectSopVisibleFlag:function(){
  117. this.dialogVisible = true;
  118. this.searchValue = null; //置空搜索项
  119. this.selectSopData = [];
  120. this.getSopList();
  121. },
  122. }
  123. }
  124. </script>
  125. <style lang='less' scoped>
  126. .select-sop-box {
  127. .top{
  128. text-align: center;
  129. }
  130. .table-box {
  131. margin-top: 10px;
  132. max-height: 450px;
  133. overflow-y: auto;
  134. }
  135. .btn-box {
  136. margin-top: 10px;
  137. text-align: center;
  138. .save-btn{margin-left: 50px;}
  139. }
  140. }
  141. </style>