skuSelect.vue 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. <template>
  2. <div class="component-sku-select">
  3. <el-dialog
  4. v-model.sync="show"
  5. class="custom-select-sku-dialog"
  6. title="选择SKU"
  7. :close-on-click-modal="false"
  8. :close-on-press-escape="false"
  9. :before-close="close"
  10. width="1200px"
  11. >
  12. <div
  13. v-loading="loading"
  14. class="flex items-start"
  15. style="max-height: 100%"
  16. >
  17. <div>
  18. <el-input
  19. v-model="keywords"
  20. placeholder="SKU / 商品名"
  21. style="margin-bottom: 24px"
  22. >
  23. <template #append>
  24. <el-button
  25. size="small"
  26. @click="search"
  27. >
  28. 查询
  29. </el-button>
  30. </template>
  31. </el-input>
  32. <div class="catgory-area">
  33. <el-tree
  34. node-key="id"
  35. :default-expanded-keys="defaultExpandID"
  36. :data="categoryList"
  37. :props="defaultProps"
  38. @node-click="clickNode"
  39. ></el-tree>
  40. </div>
  41. </div>
  42. <div
  43. v-if="skuList.length"
  44. class="sku-area flex-auto flex flex-wrap items-center"
  45. >
  46. <div
  47. v-for="sku in skuList"
  48. :key="sku.id"
  49. class="sku-item"
  50. >
  51. <div class="image"></div>
  52. <div class="sku-name">{{ sku.product_name }}</div>
  53. <div class="flex justify-between items-center">
  54. <div class="sku-code">Product Code: {{ sku.product_sku }}</div>
  55. <el-button
  56. type="primary"
  57. size="small"
  58. plain
  59. @click="selectSku(sku)"
  60. >
  61. 使用
  62. </el-button>
  63. </div>
  64. </div>
  65. </div>
  66. <div
  67. v-else
  68. class="sku-area flex-auto flex items-center"
  69. style="padding-left: 25%"
  70. >
  71. 未找到你想要的Indent商品, 可进行
  72. <el-button
  73. link
  74. type="primary"
  75. @click="dialogApplySkuVisible = true"
  76. >
  77. 申请
  78. </el-button>
  79. </div>
  80. </div>
  81. <template #footer>
  82. <div class="flex items-center justify-end">
  83. <el-pagination
  84. v-show="total > 0"
  85. v-model:current-page="pageForm.page"
  86. v-model:page-size="pageForm.limit"
  87. :page-sizes="[10, 20, 50, 100]"
  88. :total="total"
  89. :layout="'total, sizes, prev, pager, next, jumper'"
  90. @size-change="getSku"
  91. @current-change="getSku"
  92. />
  93. </div>
  94. </template>
  95. </el-dialog>
  96. <sku-apply
  97. v-model:visible="dialogApplySkuVisible"
  98. @apply="onSkuApply"
  99. ></sku-apply>
  100. </div>
  101. </template>
  102. <script lang="ts" setup>
  103. import { defineComponent, ref, watch } from 'vue'
  104. import { ElButton, ElInput, ElTree, ElDialog, ElPagination } from 'element-plus'
  105. import { getCategoryTree, getSkuList } from '@/api/indent.js'
  106. import skuApply from './skuApply.vue'
  107. defineComponent({
  108. name: 'ComponentSkuSelect',
  109. })
  110. const { visible = false } = defineProps<{ visible: boolean }>()
  111. const $emit = defineEmits(['update:visible', 'select'])
  112. const defaultProps = {
  113. children: 'children',
  114. label: 'name',
  115. }
  116. const dialogApplySkuVisible = ref(false)
  117. const loading = ref(false)
  118. const keywords = ref('')
  119. const defaultExpandID = ref([] as any[])
  120. const show = ref(false)
  121. const currentCategory = ref('')
  122. const categoryList = ref([] as any[])
  123. const skuList = ref([] as any[])
  124. const pageForm = ref({
  125. page: 1,
  126. limit: 20,
  127. })
  128. const total = ref(0)
  129. const onSkuApply = (data: any) => {
  130. $emit('select', {
  131. product_name: data.product_name,
  132. product_sku: '申请中',
  133. id: '',
  134. })
  135. close()
  136. }
  137. const search = () => {
  138. currentCategory.value = ''
  139. skuList.value = []
  140. pageForm.value = {
  141. page: 1,
  142. limit: 20,
  143. }
  144. total.value = 0
  145. getSku()
  146. }
  147. const resetData = () => {
  148. currentCategory.value = ''
  149. categoryList.value = []
  150. skuList.value = []
  151. pageForm.value = {
  152. page: 1,
  153. limit: 20,
  154. }
  155. total.value = 0
  156. }
  157. const selectSku = (item: any) => {
  158. $emit('select', item)
  159. close()
  160. }
  161. const clickNode = (obj: any) => {
  162. currentCategory.value = obj.path
  163. }
  164. const getCategory = () => {
  165. getCategoryTree().then((response: any) => {
  166. const res = response.result
  167. categoryList.value = res
  168. categoryList.value.forEach((i) => {
  169. defaultExpandID.value.push(i.id)
  170. i.path = `${i.id}`
  171. if (Array.isArray(i.children) && i.children.length > 0) {
  172. i.children.forEach((son: any) => {
  173. son.path = `${i.id},${son.id}`
  174. if (Array.isArray(son.children) && son.children.length > 0) {
  175. defaultExpandID.value.push(son.id)
  176. son.children.forEach((grandson: any) => {
  177. grandson.path = `${i.id},${son.id},${grandson.id}`
  178. })
  179. }
  180. })
  181. }
  182. })
  183. })
  184. }
  185. const getSku = () => {
  186. const params = Object.assign(
  187. { keywords: keywords.value, category: currentCategory.value },
  188. pageForm.value,
  189. )
  190. loading.value = true
  191. getSkuList(params)
  192. .then((response: any) => {
  193. const res = response.result
  194. skuList.value = res.data
  195. total.value = res.total
  196. })
  197. .finally(() => {
  198. loading.value = false
  199. })
  200. }
  201. watch(
  202. () => visible,
  203. () => {
  204. show.value = visible
  205. resetData()
  206. if (show.value) {
  207. getSku()
  208. getCategory()
  209. }
  210. },
  211. )
  212. const close = (done = {} as any) => {
  213. $emit('update:visible', false)
  214. if (typeof done === 'function') done()
  215. }
  216. </script>
  217. <style lang="scss">
  218. .component-sku-select {
  219. .custom-select-sku-dialog {
  220. margin-top: 0 !important;
  221. margin-bottom: 0 !important;
  222. height: 100vh;
  223. .el-dialog__body {
  224. position: relative;
  225. // max-height: 87vh;
  226. // overflow-y: scroll;
  227. // overflow-x: auto;
  228. padding-top: 8px;
  229. padding-bottom: 8px;
  230. }
  231. }
  232. }
  233. </style>
  234. <style lang="scss" scoped>
  235. .component-sku-select {
  236. .catgory-area {
  237. width: 180px;
  238. min-width: 180px;
  239. border: 1px solid #eee;
  240. padding: 0 0 24px 0;
  241. }
  242. .sku-area {
  243. width: 100%;
  244. padding-left: 24px;
  245. height: 82vh;
  246. overflow-y: auto;
  247. }
  248. .sku-item {
  249. border: 1px solid #eee;
  250. padding: 12px;
  251. width: 280px;
  252. margin: 0 18px 12px 0;
  253. .sku-name {
  254. overflow: hidden;
  255. font-size: 18px;
  256. line-height: 24px;
  257. height: 48px;
  258. max-height: 48px;
  259. color: #222;
  260. margin-bottom: 8px;
  261. word-break: break-word;
  262. }
  263. .sku-code {
  264. color: #409eff;
  265. }
  266. .image {
  267. border: 1px solid #eee;
  268. position: relative;
  269. width: 100%;
  270. height: 120px;
  271. margin-bottom: 8px;
  272. }
  273. }
  274. }
  275. </style>