supplierDialog.vue 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. <!--
  2. supplier 选择供应商
  3. -->
  4. <template>
  5. <el-dialog title="选择型号" :visible.sync="dialog.supplier" width="1000px">
  6. <div>
  7. <div id="firm">
  8. <div class="title-search query-form" style="padding:10px; margin-bottom: 10px;">
  9. <el-input
  10. placeholder="输入厂家名称进行查找"
  11. v-model="search"
  12. size="small"
  13. style="width:300px; margin-right:10px;"
  14. clearable
  15. ></el-input>
  16. <el-button size="small" @click="filterSearch">查找</el-button>
  17. </div>
  18. <el-radio-group v-model="radio" style="width:100%;">
  19. <el-table border class='data-table' ref="supplier" :data="tableData" style="width: 100%" height="300px">
  20. <el-table-column header-align='center' label="供应商名称">
  21. <template slot-scope="scope">
  22. <el-tooltip :content="scope.row.name" placement="top">
  23. <el-radio v-model="radio" :label="scope.row">{{scope.row.name}}</el-radio>
  24. </el-tooltip>
  25. </template>
  26. </el-table-column>
  27. <el-table-column header-align='center' prop="website" label="网址"></el-table-column>
  28. <el-table-column header-align='center' prop="man" label="联系人"></el-table-column>
  29. <el-table-column header-align='center' prop="phone" label="联系电话"></el-table-column>
  30. <el-table-column header-align='center' prop="faxes" label="传真"></el-table-column>
  31. <el-table-column header-align='center' prop="email" label="电子邮件"></el-table-column>
  32. </el-table>
  33. </el-radio-group>
  34. <div class="right">
  35. <my-pagination :page="page" @change="changePage" style="margin-top:10px;"></my-pagination>
  36. </div>
  37. <p style="height:40px;line-height:40px;text-align:center;color:#9E9E9E;">
  38. 找不到想要的型号? 赶快去
  39. <i style="color:#46B0FF;cursor: pointer;">厂家库</i>维护吧
  40. </p>
  41. </div>
  42. </div>
  43. <div slot="footer">
  44. <el-button
  45. type="primary"
  46. @click="getChange"
  47. >确 定</el-button>
  48. </div>
  49. </el-dialog>
  50. </template>
  51. <script>
  52. import myPagination from "@/components/common/myPagination";
  53. import { getLib } from "@/api/scan/request"
  54. import tools from "@/utils/scan/tools"
  55. export default {
  56. components: {
  57. myPagination
  58. },
  59. props: {
  60. dialog: {
  61. type: Object,
  62. default: function () {
  63. return {
  64. supplier: true
  65. };
  66. }
  67. }
  68. },
  69. data() {
  70. return {
  71. search: "", //搜索文案
  72. radio: "",
  73. tableData: [],
  74. page: {
  75. size: 10,
  76. sizes: [10, 30, 50, 100, 150, 200],
  77. total: 0,
  78. currentPage: 1
  79. },
  80. projectId: this.$route.query.projId,
  81. };
  82. },
  83. created() {
  84. // this.getData()
  85. },
  86. mounted() { },
  87. methods: {
  88. //过滤
  89. filterSearch() {
  90. this.tableData = this.allData.map(item => {
  91. if (item.name.indexOf(this.search) != -1) {
  92. return item
  93. } else {
  94. return undefined
  95. }
  96. }).filter(cb => cb)
  97. },
  98. getData() {
  99. this.page = {
  100. size: 10,
  101. sizes: [10, 30, 50, 100, 150, 200],
  102. total: 0,
  103. currentPage: 1
  104. }
  105. getLib({ "type": ["supplier"] }).then(res => {
  106. if (res.data.result == "success") {
  107. let data = res.data.content.supplier.map(item => {
  108. if (item.contacts && item.contacts.length) {
  109. item.contacts.map(child => {
  110. if (child.projectId == this.projectId) {
  111. item.phone = child.phone
  112. item.man = child.name
  113. item.fox = child.fox
  114. item.email = child.email
  115. }
  116. return child
  117. })
  118. }
  119. if (!item.man) {
  120. item.man = "--"
  121. item.phone = "--"
  122. item.fox = "--"
  123. item.email = "--"
  124. }
  125. return item
  126. })
  127. this.allData = tools.deepCopy(data)
  128. this.tableData = this.pagination(this.page.currentPage, this.page.size, this.allData)
  129. this.page.total = data.length
  130. } else {
  131. this.$message.error("请求失败:" + res.data.resultMsg)
  132. }
  133. })
  134. },
  135. //分页改变
  136. changePage() {
  137. this.pagination(this.page.currentPage, this.page.size, this.allData)
  138. },
  139. //发生修改
  140. getChange() {
  141. if (!!this.radio) {
  142. this.$emit("changeSupplier", this.radio)
  143. this.dialog.supplier = false
  144. } else {
  145. this.$message("请选择一个生产厂商")
  146. }
  147. },
  148. //分页事件
  149. pagination(pageNo, pageSize, array) {
  150. let offset = (pageNo - 1) * pageSize;
  151. return offset + pageSize >= array.length
  152. ? array.slice(offset, array.length)
  153. : array.slice(offset, offset + pageSize);
  154. }
  155. },
  156. watch: {
  157. dialog: {
  158. deep: true,
  159. handler: function () {
  160. if (this.dialog.supplier) {
  161. this.getData()
  162. }
  163. }
  164. }
  165. }
  166. };
  167. </script>
  168. <style lang="less">
  169. #firm {
  170. .el-table thead {
  171. tr {
  172. th {
  173. background-color: #f5f7fa;
  174. }
  175. }
  176. }
  177. }
  178. </style>