addComponent.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735
  1. <template>
  2. <div class="style-information-component">
  3. <el-form-item label="商品图片" />
  4. <div class="upload-wrap">
  5. <el-upload
  6. list-type="picture-card" :on-preview="handlePictureCardPreview" :on-remove="handleRemove"
  7. :headers="headers" :data="dataObj" :file-list="form.imgs" :limit="20"
  8. :on-success="handleImageSuccess"
  9. :action="action"
  10. >
  11. <i slot="default" class="el-icon-plus" />
  12. <div slot="file" slot-scope="{ file }">
  13. <img class="el-upload-list__item-thumbnail" :src="file.imgPath">
  14. <span class="el-upload-list__item-actions">
  15. <span class="el-upload-list__item-preview" @click="handlePictureCardPreview(file)">
  16. <i class="el-icon-zoom-in" />
  17. </span>
  18. <span class="el-upload-list__item-delete" @click="handleRemove(file)">
  19. <i class="el-icon-delete" />
  20. </span>
  21. </span>
  22. </div>
  23. </el-upload>
  24. </div>
  25. <el-form-item label="款式设置">
  26. <el-radio-group v-model="form.attrStyle" @change="changeAttrStyle">
  27. <el-radio :label="0">单款式</el-radio>
  28. <el-radio :label="1">多款式</el-radio>
  29. </el-radio-group>
  30. </el-form-item>
  31. <div class="style-container">
  32. <div v-if="form.attrStyle === 0" class="single-style">
  33. <el-table :data="skuList" style="width: 100%" :header-cell-style="{ background: '#EEF3FF', color: '#333333' }">
  34. <el-table-column label="规格">
  35. <template slot-scope="scope">
  36. <el-input v-model="singleStyle.skuValue" :sss="scope" maxlength="10" />
  37. </template>
  38. </el-table-column>
  39. <el-table-column label="售价">
  40. <template slot-scope="scope">
  41. <!-- <el-input v-model="scope.row.price" type="number" oninput="value=value.replace(/-/, '')" /> -->
  42. <el-input-number
  43. v-model="scope.row.price" :controls="false" :max="999999999" :min="0"
  44. :precision="2"
  45. :step="0.01"
  46. />
  47. </template>
  48. </el-table-column>
  49. <el-table-column label="原价">
  50. <template slot-scope="scope">
  51. <!-- <el-input v-model="scope.row.originalPrice" type="number" oninput="value=value.replace(/-/, '')" /> -->
  52. <el-input-number
  53. v-model="scope.row.originalPrice" :controls="false" :max="999999999" :min="0"
  54. :precision="2" :step="0.01"
  55. />
  56. </template>
  57. </el-table-column>
  58. <el-table-column label="库存">
  59. <template slot-scope="scope">
  60. <!-- <el-input v-model="scope.row.stockNumber" type="number" oninput="value=value.replace(/[^\d]/g,'')" /> -->
  61. <el-input-number
  62. v-model="scope.row.stockNumber" :controls="false" :max="999999999" :min="0"
  63. :precision="0"
  64. />
  65. </template>
  66. </el-table-column>
  67. <el-table-column label="重量(KG)">
  68. <template slot-scope="scope">
  69. <!-- <el-input v-model="scope.row.weight" type="number" oninput="value=value.replace(/-/, '')" /> -->
  70. <el-input-number
  71. v-model="scope.row.weight" :controls="false" :max="999" :min="0"
  72. :precision="2"
  73. :step="0.01"
  74. />
  75. </template>
  76. </el-table-column>
  77. <el-table-column label="代金卷最大抵扣额度(一般设置全额抵扣)">
  78. <template slot-scope="scope">
  79. <!-- <el-input v-model="scope.row.weight" type="number" oninput="value=value.replace(/-/, '')" /> -->
  80. <el-input-number
  81. v-model="scope.row.voucherPrice" :controls="false" :min="0"
  82. :precision="6"
  83. :step="0.01"
  84. />
  85. </template>
  86. </el-table-column>
  87. <el-table-column label="商品绑定的代金卷">
  88. <template slot-scope="scope">
  89. <el-select v-model="scope.row.voucherId" placeholder="请选择商品绑定的代金卷">
  90. <el-option
  91. v-for="item in voucherList"
  92. :key="item.createTime"
  93. :label="item.voucherName"
  94. :value="item.id">
  95. </el-option>
  96. </el-select>
  97. </template>
  98. </el-table-column>
  99. <el-table-column label="国际条码">
  100. <template slot-scope="scope">
  101. <el-input v-model="scope.row.sku" maxlength="20" />
  102. </template>
  103. </el-table-column>
  104. </el-table>
  105. </div>
  106. <div v-else class="multiple-styles">
  107. <div v-for="(skuAttr, index) in form.skuAttrList" :key="index" class="sku-attr-list">
  108. <el-form-item label="规格名">
  109. <el-input v-model="skuAttr.skuName" maxlength="20" />
  110. <i v-if="index != 0" class="el-icon-close delImg" @click="delSkuAttrList(index)" />
  111. <el-checkbox v-if="index === 0" v-model="skuAttr.needImg" style="margin-left: 20px;">需要配图</el-checkbox>
  112. </el-form-item>
  113. <el-form-item label="规格值">
  114. <div class="attr-value-list">
  115. <div v-for="(sku, index1) in skuAttr.values" :key="index + '-' + index1" class="main-diagram m-8">
  116. <el-input v-model="sku.skuValue" maxlength="10" />
  117. <i v-if="index === 0 && index1 === 0" />
  118. <i v-else class="el-icon-close delImg" @click="delValue(index, index1)" />
  119. <div v-if="skuAttr.needImg && index === 0" class="upload-wrap diagram-upload">
  120. <div class="span-wrap">
  121. <el-upload
  122. list-type="picture-card" :show-file-list="false" :on-preview="handlePictureCardPreview"
  123. :on-remove="handleRemove" :headers="headers" :data="dataObj" :file-list="[ sku ]"
  124. :multiple="false"
  125. :on-success="handleImageSuccess1" :action="action"
  126. >
  127. <i v-if="!sku.image" slot="trigger" class="el-icon-plus" />
  128. <div v-else class="attr-value-img">
  129. <img class="attr-thumbnail" :src="sku.image">
  130. </div>
  131. </el-upload>
  132. <div v-if="sku.image" class="attr-actions">
  133. <span class="attr-preview" @click="handlePictureCardPreview({ imgPath: sku.image })">
  134. <i class="el-icon-zoom-in" />
  135. </span>
  136. <span class="attr-delete" @click="handleRemove1(sku)">
  137. <i class="el-icon-delete" />
  138. </span>
  139. </div>
  140. </div>
  141. </div>
  142. </div>
  143. <el-button type="text" style="margin-left: 10px;" @click="addAttrValue(index)">添加</el-button>
  144. </div>
  145. </el-form-item>
  146. </div>
  147. <el-button class="add-attr-btn" type="primary" @click="addSkuAttrList">添加规格</el-button>
  148. <el-table :data="skuList" style="width: 100%" :header-cell-style="{ background: '#EEF3FF', color: '#333333' }">
  149. <el-table-column v-for="(skuAttr, index) in skuAttrName" :key="index" :label="skuAttr.skuName">
  150. <template slot-scope="scope">
  151. {{
  152. scope.row.skuAttrCodeDTOList &&
  153. scope.row.skuAttrCodeDTOList[index]
  154. | attrValueFilter(form.skuAttrList)
  155. }}
  156. </template>
  157. </el-table-column>
  158. <el-table-column label="售价">
  159. <template slot-scope="scope">
  160. <!-- <el-input v-model="scope.row.price" type="number" oninput="value=value.replace(/-/, '')" /> -->
  161. <el-input-number
  162. v-model="scope.row.price" :controls="false" :max="999999999" :min="0"
  163. :precision="2"
  164. :step="0.01"
  165. />
  166. </template>
  167. </el-table-column>
  168. <el-table-column label="原价">
  169. <template slot-scope="scope">
  170. <!-- <el-input v-model="scope.row.originalPrice" type="number" oninput="value=value.replace(/-/, '')" /> -->
  171. <el-input-number
  172. v-model="scope.row.originalPrice" :controls="false" :max="999999999" :min="0"
  173. :precision="2" :step="0.01"
  174. />
  175. </template>
  176. </el-table-column>
  177. <el-table-column label="库存">
  178. <template slot-scope="scope">
  179. <!-- <el-input v-model="scope.row.stockNumber" type="number" oninput="value=value.replace(/[^\d]/g,'')" /> -->
  180. <el-input-number
  181. v-model="scope.row.stockNumber" :controls="false" :max="999999999" :min="0"
  182. :precision="0"
  183. />
  184. </template>
  185. </el-table-column>
  186. <el-table-column label="重量(KG)">
  187. <template slot-scope="scope">
  188. <!-- <el-input v-model="scope.row.weight" type="number" oninput="value=value.replace(/-/, '')" /> -->
  189. <el-input-number
  190. v-model="scope.row.weight" :controls="false" :max="999" :min="0"
  191. :precision="6"
  192. :step="0.01"
  193. />
  194. </template>
  195. </el-table-column>
  196. <el-table-column label="代金卷最大抵扣额度(一般设置全额抵扣)">
  197. <template slot-scope="scope">
  198. <!-- <el-input v-model="scope.row.weight" type="number" oninput="value=value.replace(/-/, '')" /> -->
  199. <el-input-number
  200. v-model="scope.row.voucherPrice" :controls="false" :min="0"
  201. :precision="6"
  202. :step="0.01"
  203. />
  204. </template>
  205. </el-table-column>
  206. <el-table-column label="商品绑定的代金卷">
  207. <template slot-scope="scope">
  208. <el-select v-model="scope.row.voucherId" placeholder="请选择商品绑定的代金卷">
  209. <el-option
  210. v-for="item in voucherList"
  211. :key="item.createTime"
  212. :label="item.voucherName"
  213. :value="item.id">
  214. </el-option>
  215. </el-select>
  216. </template>
  217. </el-table-column>
  218. <el-table-column label="国际条码">
  219. <template slot-scope="scope">
  220. <el-input v-model="scope.row.sku" maxlength="20" />
  221. </template>
  222. </el-table-column>
  223. <!-- <el-table-column label="操作">
  224. <template slot-scope="scope">
  225. <el-button type="text" @click="delAttrValue(scope.row,scope.$index,scope.row,scope)">删除</el-button>
  226. </template>
  227. </el-table-column> -->
  228. </el-table>
  229. </div>
  230. </div>
  231. <el-dialog
  232. :append-to-body="true" :visible.sync="dialogVisible" class="check-image-dialog" title="查看图片"
  233. center="center"
  234. >
  235. <img width="100%" :src="dialogImageUrl" alt>
  236. </el-dialog>
  237. </div>
  238. </template>
  239. <script>
  240. import { uploadUrl } from '@/utils/request'
  241. import { getToken } from '@/utils/auth'
  242. export default {
  243. filters: {
  244. attrValueFilter(map, list) {
  245. const hasChilds =
  246. list &&
  247. list.filter((skuAttr) => {
  248. const hasChild = skuAttr.values.some((attr) => attr.skuValue)
  249. return skuAttr.skuName && hasChild
  250. })
  251. if (!map) {
  252. return ''
  253. }
  254. const { code, valueCode } = map
  255. let codeStr = ''
  256. hasChilds.map((item) => {
  257. const { values } = item
  258. values &&
  259. values.some((attr) => {
  260. const isSome = item.code === code && attr.valueCode === valueCode
  261. if (isSome) {
  262. codeStr = attr.skuValue
  263. }
  264. return isSome
  265. })
  266. })
  267. return codeStr
  268. }
  269. },
  270. props: {
  271. form: {
  272. type: Object,
  273. default() {
  274. return {}
  275. }
  276. },
  277. voucherList: {
  278. type: Array,
  279. default: []
  280. }
  281. },
  282. data() {
  283. return {
  284. dialogImageUrl: '',
  285. dialogVisible: false,
  286. newform: this.form,
  287. headers: {
  288. 'Authorization-business': getToken()
  289. },
  290. action: uploadUrl,
  291. dataObj: {
  292. folderId: 1
  293. },
  294. fileList: []
  295. }
  296. },
  297. computed: {
  298. skuAttrName() {
  299. return (
  300. this.form.skuAttrList &&
  301. this.form.skuAttrList.filter((skuAttr) => {
  302. const hasChilds = skuAttr.values.some((attr) => attr.skuValue)
  303. return skuAttr.skuName && hasChilds
  304. })
  305. )
  306. },
  307. singleStyle() {
  308. if (this.form.skuAttrList && this.form.skuAttrList[0]) {
  309. return this.form.skuAttrList && this.form.skuAttrList[0].values[0]
  310. }
  311. return {
  312. skuValue: ''
  313. }
  314. },
  315. skuList() {
  316. // console.log(this.form)
  317. if (this.form.attrStyle === 0) {
  318. return this.form.skuList.slice(0, 1)
  319. }
  320. return this.form.skuList
  321. }
  322. },
  323. watch: {
  324. 'form.skuAttrList': {
  325. handler(newVal, oldVal) {
  326. // 判断是否有规格值
  327. const hasChilds =
  328. this.form.skuAttrList &&
  329. this.form.skuAttrList.filter((skuAttr) => {
  330. const hasChild = skuAttr.values.some((attr) => attr.skuValue)
  331. return skuAttr.skuName && hasChild
  332. })
  333. if (this.form.attrStyle === 1 && hasChilds.length) {
  334. this.skuFormat()
  335. }
  336. // console.log(newVal);
  337. // console.log(oldVal);
  338. },
  339. deep: true
  340. },
  341. 'form.skuList': {
  342. handler(newVal, oldVal) {
  343. // console.log(newVal);
  344. // console.log(oldVal);
  345. },
  346. deep: true
  347. }
  348. },
  349. created() {
  350. // console.log(this.voucherList)
  351. this.headers.tenant = 'MDAwMA=='
  352. },
  353. methods: {
  354. // proving1(e) {
  355. // var keynum = window.event ? e.keyCode : e.which // 获取键盘码
  356. // // var keychar = String.fromCharCode(keynum) // 获取键盘码对应的字符
  357. // console.log(
  358. // e.key
  359. // .replace(/[^\d^\.]+/g, '')
  360. // .replace('.', '$#$')
  361. // .replace(/\./g, '')
  362. // .replace('$#$', '.')
  363. // )
  364. // console.log(keynum)
  365. // if (
  366. // e.key
  367. // .replace(/[^\d^\.]+/g, '')
  368. // .replace('.', '$#$')
  369. // .replace(/\./g, '')
  370. // .replace('$#$', '.') === '' &&
  371. // keynum !== 8
  372. // ) {
  373. // this.$message.warning('禁止输入中文或空')
  374. // e.target.value = ' '
  375. // }
  376. // },
  377. handleImageSuccess(response) {
  378. const url = response.data.url
  379. this.form.imgs.push({
  380. imgPath: url
  381. })
  382. },
  383. // 移除图片
  384. handleRemove(file) {
  385. const { imgPath } = file
  386. this.form.imgs = this.form.imgs.filter((item) => item.imgPath !== imgPath)
  387. },
  388. handleRemove1(file) {
  389. file.image = ''
  390. },
  391. handlePictureCardPreview(file) {
  392. this.dialogImageUrl = file.imgPath
  393. this.dialogVisible = true
  394. },
  395. handleImageSuccess1(response, file, fileList) {
  396. const url = response.data.url
  397. fileList[0].image = url
  398. },
  399. del(row, index, arr) {
  400. console.log(row, index)
  401. // this.form.skuList.splice(index, 1);
  402. // console.log(this.form.skuAttrList);
  403. // console.log(this.form.skuList);
  404. console.log(arr)
  405. },
  406. //
  407. changeAttrStyle(index) {
  408. console.log(index)
  409. console.log(this.form)
  410. // if (index === 0) {
  411. // this.form.skuAttrList = []
  412. // }
  413. },
  414. addSkuAttrList() {
  415. this.form.skuAttrList.push({
  416. code: '',
  417. skuName: '',
  418. values: [
  419. {
  420. skuValue: '',
  421. valueCode: '',
  422. image: '',
  423. isDelete: 0,
  424. sortOrder: 0
  425. }
  426. ],
  427. isDelete: 0,
  428. needImg: 0,
  429. sortOrder: 0
  430. })
  431. },
  432. addAttrValue(index) {
  433. this.form.skuAttrList[index].values.push({
  434. skuValue: '',
  435. valueCode: '',
  436. image: ''
  437. })
  438. },
  439. // 删除规格值
  440. delValue(index, index1) {
  441. const newList = JSON.parse(JSON.stringify(this.form.skuAttrList[index]))
  442. const valueObj = {
  443. code: newList.code,
  444. skuId: newList.skuId,
  445. valueCode: newList.values[index1].valueCode
  446. }
  447. this.form.deletes.push(valueObj)
  448. this.form.skuAttrList[index].values.splice(index1, 1)
  449. },
  450. // 删除规格名
  451. delSkuAttrList(index) {
  452. const newList = JSON.parse(JSON.stringify(this.form.skuAttrList[index]))
  453. newList.values.forEach((item) => {
  454. const valueObj = {
  455. code: newList.code,
  456. skuId: newList.skuId,
  457. valueCode: ''
  458. }
  459. valueObj.valueCode = item.valueCode
  460. this.form.deletes.push(valueObj)
  461. })
  462. this.form.skuAttrList.splice(index, 1)
  463. },
  464. delAttrValue1(row, index, arr) {
  465. },
  466. skuFormat() {
  467. const skuListArray = []
  468. const result = {
  469. isDelete: 0,
  470. productId: '',
  471. skuAttrCodeDTOList: [
  472. {
  473. code: '',
  474. valueCode: ''
  475. }
  476. ],
  477. sku: '',
  478. skuImg: '',
  479. price: 0,
  480. originalPrice: 0,
  481. stockNumber: 0,
  482. weight: 0
  483. }
  484. const doExchange = (arr, depth) => {
  485. const map = {
  486. arr: []
  487. }
  488. for (var i = 0; i < arr[depth].length; i++) {
  489. map.arr.push(arr[depth][i])
  490. const { code, valueCode, attrId } = arr[depth][i]
  491. result.skuAttrCodeDTOList[depth] = {
  492. code,
  493. valueCode,
  494. attrId
  495. }
  496. if (depth !== arr.length - 1) {
  497. doExchange(arr, depth + 1)
  498. } else {
  499. skuListArray.push(JSON.parse(JSON.stringify(result)))
  500. }
  501. }
  502. }
  503. // this.form.skuList = skuListArray
  504. // 获取规格值的所有组合
  505. const values = []
  506. this.form.skuAttrList.map((skuItem, index) => {
  507. const attrList = []
  508. skuItem.code = skuItem.code || 'attr_code_' + index
  509. const { code } = skuItem
  510. skuItem.values &&
  511. skuItem.values.map((attrItem, index1) => {
  512. attrItem.valueCode = skuItem.valueCode || code + '_value_' + index1
  513. const skuId = attrItem.skuId
  514. const attrId = attrItem.attrId
  515. if (attrItem.skuValue) {
  516. attrList.push({
  517. skuId,
  518. attrId,
  519. code,
  520. valueCode: attrItem.valueCode
  521. })
  522. }
  523. })
  524. if (attrList.length) {
  525. values.push(attrList)
  526. }
  527. })
  528. // 相互组合
  529. if (values.length) {
  530. doExchange(values, 0)
  531. }
  532. this.form.skuList = skuListArray.map((sku1) => {
  533. const { skuAttrList, skuAttrCodeDTOList } = sku1
  534. const skuAttrList1 = skuAttrCodeDTOList || skuAttrList
  535. const skuMap = this.form.skuList.filter((sku2) => {
  536. const skuAttrList2 = sku2.skuAttrList
  537. sku2.skuAttrCodeDTOList = skuAttrList2
  538. if (!skuAttrList2) return false
  539. const ids = []
  540. skuAttrList1.filter((item) => ids.push(item.id))
  541. const result = skuAttrList2.every((item) => ids.indexOf(item.attrValueId) !== -1)
  542. return result
  543. })
  544. let selectMap = sku1
  545. if (skuMap && skuMap.length) {
  546. selectMap = JSON.parse(JSON.stringify(skuMap[0]))
  547. selectMap.skuAttrCodeDTOList = skuAttrCodeDTOList
  548. }
  549. return selectMap
  550. })
  551. }
  552. }
  553. }
  554. </script>
  555. <style lang="scss" scoped>
  556. @import url("../../../styles/elDialog.scss");
  557. .style-information-component {
  558. width: 100%;
  559. min-height: 300px;
  560. padding: 24px;
  561. background-color: rgb(255, 255, 255);
  562. .el-form-item {
  563. margin-bottom: 10px;
  564. }
  565. .attr-value-list {
  566. display: flex;
  567. flex-wrap: wrap;
  568. .main-diagram {
  569. width: 180px;
  570. .span-wrap {
  571. position: relative;
  572. display: inline-block;
  573. margin-top: 10px;
  574. .attr-actions {
  575. line-height: 100px;
  576. position: absolute;
  577. width: 100%;
  578. height: 100%;
  579. left: 0;
  580. top: 0;
  581. cursor: default;
  582. text-align: center;
  583. color: #fff;
  584. opacity: 0;
  585. font-size: 20px;
  586. background-color: rgba(0, 0, 0, 0.5);
  587. -webkit-transition: opacity 0.3s;
  588. transition: opacity 0.3s;
  589. z-index: 1;
  590. &:hover {
  591. opacity: 1;
  592. .attr-preview {
  593. display: inline-block;
  594. }
  595. i {
  596. color: #fff;
  597. font-size: 20px;
  598. }
  599. }
  600. }
  601. .attr-preview {
  602. display: none;
  603. cursor: pointer;
  604. font-size: 20px;
  605. color: #fff;
  606. }
  607. .attr-delete {
  608. margin-left: 15px;
  609. color: #fff;
  610. }
  611. }
  612. .attr-value-img {
  613. width: 100%;
  614. height: 100%;
  615. img {
  616. width: 100%;
  617. height: 100%;
  618. object-fit: contain;
  619. }
  620. }
  621. }
  622. }
  623. .m-8 {
  624. margin-right: 8px;
  625. }
  626. .upload-btn {
  627. box-sizing: border-box;
  628. display: flex;
  629. align-items: center;
  630. justify-content: center;
  631. width: 100%;
  632. height: 110px;
  633. cursor: pointer;
  634. border: 2px dashed #2e60f8;
  635. border-radius: 2px;
  636. background-color: #f8f9fb;
  637. text-align: center;
  638. font-size: 20px;
  639. color: #2e60f8;
  640. i {
  641. color: #2e60f8;
  642. font-size: 20px;
  643. }
  644. .upload-title {
  645. margin-left: 10px;
  646. font-size: 14px;
  647. }
  648. }
  649. .upload-wrap {
  650. margin-bottom: 25px;
  651. .el-upload-list__item {
  652. transition: none !important;
  653. }
  654. .el-upload,
  655. .el-upload-list__item {
  656. width: 100px;
  657. height: 100px;
  658. line-height: 100px;
  659. }
  660. .el-progress,
  661. .el-progress-circle {
  662. width: 80px !important;
  663. height: 80px !important;
  664. }
  665. }
  666. .sku-attr-list {
  667. .el-input {
  668. width: 180px;
  669. }
  670. }
  671. .single-style {
  672. .el-input {
  673. max-width: 180px;
  674. }
  675. }
  676. .add-attr-btn {
  677. margin-bottom: 25px;
  678. }
  679. .check-image-dialog {
  680. .el-dialog {
  681. margin-top: 25px;
  682. .el-dialog__body {
  683. img {
  684. max-width: 100%;
  685. max-height: 100%;
  686. height: 500px;
  687. object-fit: contain;
  688. }
  689. }
  690. }
  691. }
  692. .delImg {
  693. position: absolute;
  694. top: 12px;
  695. margin-left: -24px
  696. }
  697. .delImg:hover {
  698. border-radius: 50%;
  699. color: #ffffff;
  700. background: #2e60f8;
  701. cursor: pointer;
  702. }
  703. }
  704. </style>