supplierDialog.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  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 class="data-table" border 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="contacts[0].name" label="联系人"></el-table-column>
  29. <el-table-column header-align='center' prop="contacts[0].phone" label="联系电话"></el-table-column>
  30. <el-table-column header-align='center' prop="contacts[0].fax" label="传真"></el-table-column>
  31. <el-table-column header-align='center' prop="contacts[0].email" label="电子邮件"></el-table-column>
  32. </el-table>
  33. </el-radio-group>
  34. <div class="right" style="background: #fff;">
  35. <p style="height:40px;line-height:40px;text-align:center;color:#9E9E9E; float: left;">
  36. 找不到想要的型号? 赶快去
  37. <i style="color:#46B0FF;cursor: pointer;">厂家库</i>维护吧
  38. </p>
  39. <my-pagination :page="page" @change="changePage" style="margin-top:10px;"></my-pagination>
  40. </div>
  41. </div>
  42. </div>
  43. <div slot="footer" class="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/ledger/lib/myPagination";
  53. import {mapGetters} from "vuex";
  54. import {getLib} from "@/api/scan/request"
  55. import tools from "@/utils/scan/tools"
  56. export default {
  57. components: {
  58. myPagination
  59. },
  60. props: {
  61. dialog: {
  62. type: Object,
  63. default: function () {
  64. return {
  65. supplier: true
  66. };
  67. }
  68. },
  69. firmDataType: {
  70. type: String
  71. }
  72. },
  73. data() {
  74. return {
  75. search: "", //搜索文案
  76. radio: "",
  77. tableData: [],
  78. page: {
  79. size: 50,
  80. sizes: [10, 30, 50, 100, 150, 200],
  81. total: 0,
  82. currentPage: 1
  83. }
  84. };
  85. },
  86. computed: {
  87. ...mapGetters("layout", ["projectId", "secret", "userId"]),
  88. },
  89. created() {
  90. // this.getData()
  91. },
  92. mounted() {
  93. },
  94. methods: {
  95. //过滤
  96. filterSearch() {
  97. this.tableData = this.allData.map(item => {
  98. if (item.name.indexOf(this.search) != -1) {
  99. return item
  100. } else {
  101. return undefined
  102. }
  103. }).filter(cb => cb)
  104. },
  105. getData() {
  106. this.page = {
  107. size: 50,
  108. sizes: [10, 30, 50, 100, 150, 200],
  109. total: 0,
  110. currentPage: 1
  111. }
  112. getLib({"type": ["supplier"]}).then(res => {
  113. if (res.data.result == "success") {
  114. this.allData = tools.deepCopy(res.data.content.supplier)
  115. this.tableData = this.pagination(this.page.currentPage, this.page.size, this.allData)
  116. this.page.total = this.allData.length
  117. } else {
  118. this.$message.error("请求失败:" + res.data.resultMsg)
  119. }
  120. })
  121. },
  122. //分页改变
  123. changePage() {
  124. this.pagination(this.page.currentPage, this.page.size, this.allData)
  125. },
  126. //发生修改
  127. getChange() {
  128. if (!!this.radio) {
  129. this.$emit("changeSupplier", this.radio, this.firmDataType)
  130. this.dialog.supplier = false
  131. this.radio = ''
  132. } else {
  133. this.$message("请选择一个生产厂商")
  134. }
  135. },
  136. //分页事件
  137. pagination(pageNo, pageSize, array) {
  138. let offset = (pageNo - 1) * pageSize;
  139. return offset + pageSize >= array.length
  140. ? array.slice(offset, array.length)
  141. : array.slice(offset, offset + pageSize);
  142. }
  143. },
  144. watch: {
  145. dialog: {
  146. deep: true,
  147. handler: function () {
  148. if (this.dialog.supplier) {
  149. this.getData()
  150. }
  151. }
  152. }
  153. }
  154. };
  155. </script>
  156. <style lang="less">
  157. #firm {
  158. height: 455px;
  159. overflow-y: auto;
  160. .el-table thead {
  161. tr {
  162. th {
  163. background-color: #f5f7fa;
  164. }
  165. }
  166. }
  167. }
  168. </style>