Quote.vue 45 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408
  1. <template>
  2. <div>
  3. <div
  4. v-if="quoteLoadState == 0"
  5. v-loading="true"
  6. class="com-loading"></div>
  7. <div v-else-if="quoteLoadState == 1">
  8. <tab-nav
  9. :borderType="'allBorder'" :liWidth="100" :liHeight="40" :marginRight="5"
  10. :currTab.sync="curWeek"
  11. :tabList="priceList" />
  12. <div
  13. v-for="(items, indexs) in priceList"
  14. :key="items.name"
  15. v-show="curWeek == indexs">
  16. <div>
  17. <tab-nav
  18. :borderType="'incompleteBorder'"
  19. :currTab.sync="items.curPrint"
  20. :tabList="items.basePrice"
  21. :allPrintTab="allPrintTab"
  22. :marginTop="0"
  23. :marginRight="5"
  24. :marginBottom="items.basePrice?.length>1?7:0"
  25. @handle="sortBy(items)" />
  26. <!-- <el-popover
  27. placement="bottom-start"
  28. trigger="hover">
  29. <div
  30. class="exclamation-icon"
  31. slot="reference">!</div>
  32. <div class="popover">
  33. <p class="title">Print Price Comparison</p>
  34. <div
  35. v-for="(item,index) in items.basePrice"
  36. :key="item.name">
  37. <total-table
  38. :tableColumns="[...undecorated_columns, ...items.part_columns]"
  39. :tableData="item.data"
  40. :tableType="'Comparison'"
  41. :title="item.name"
  42. :curDecoration="items.decorationOrign[items.curPrint]" :indexDecoration="items.decorationOrign[index]"></total-table>
  43. </div>
  44. </div>
  45. </el-popover> -->
  46. </div>
  47. <div
  48. v-for="(item, index) in items.basePrice"
  49. :key="item.name"
  50. v-show="items.curPrint == index">
  51. <new-price-table
  52. :tableColumns="[...undecorated_columns, ...item.part_columns]"
  53. :tableData="item.data"
  54. :tableType="'Undecorated'"
  55. :curPrint="item.name"
  56. :curModel="items.decorationOrign[index]?.model"
  57. :data="items"
  58. :selectRow.sync="item.selectBaseRow"></new-price-table>
  59. </div>
  60. <!-- decoration_multiple is_more_print 打印开关,ID1001092需求 ;additional_print 颜色数量开关
  61. 以上需求作废,改版为多色多面的需求-->
  62. <new-price-table
  63. v-if="items.decoration?.length || items.basePrice?.[items.curPrint]?.decoration_addition?.length"
  64. :tableData="items.decoration"
  65. :tableColumns="[...decoration_columns, ...comCurBaseColumns]"
  66. :tableType="'Decoration'"
  67. :marginBottom="0"
  68. :hasDecAdd="items.basePrice?.[items.curPrint]?.decoration_addition?.length"></new-price-table>
  69. <div
  70. v-for="(item, index) in items.basePrice"
  71. :key="item.name + index"
  72. v-show="items.curPrint == index && item.decoration_addition.length">
  73. <new-price-table
  74. :tableData="item.decoration_addition"
  75. :tableColumns="[...addon_columns, ...item.part_columns]"
  76. :isCheckBox="true"
  77. :tableType="'Addon'"
  78. :multipleSelection.sync="items.selectAdditionRow"></new-price-table>
  79. </div>
  80. </div>
  81. <section>
  82. <p class="title1">
  83. <span></span>
  84. <span>Currency AUD($)</span>
  85. </p>
  86. <total-table
  87. :comLocationNum="comLocationNum"
  88. :tableData="comBuyData"
  89. :tableColumns="[
  90. ...buy_columns,
  91. ...comCurBaseTotalColumns
  92. ]"
  93. :curOrder="`${curWeek}-${comCurPrint}`"
  94. :min="comCurBaseColumns[0]?.label"
  95. :title="'Buy Price'" @send-idx="getChildIdx"></total-table>
  96. <p class="text-red">Price is ex- gst</p>
  97. <ul>
  98. <li class="entry">
  99. <div class="entry-l">Delivery Locations</div>
  100. <el-input
  101. placeholder="Enter Num"
  102. v-model="comCurBasePrice.locationNum"
  103. size="small" max="7" min="1"
  104. style="width: 130px;"
  105. type="number" @input="setMaxNum"></el-input>
  106. </li>
  107. <li
  108. class="entry"
  109. v-if="comLocationNum > 1">
  110. <div class="entry-text">Qty / Location</div>
  111. </li>
  112. <li class="entry" v-for="(i,k) in comCurBaseTotalColumns" :key="i.prop" v-show="comLocationNum > k">
  113. <div class="entry-l">Delivery Postcode</div>
  114. <el-input
  115. clearable
  116. placeholder="Enter Postcode"
  117. v-model="
  118. i.postcode"
  119. size="small"
  120. style="width: 130px; margin-right: 20px;"
  121. @input="getDebFreight(k)"></el-input>
  122. <el-input
  123. v-if="comLocationNum > 1"
  124. placeholder="Enter Qty"
  125. type="number"
  126. :min="comCurBaseColumns[0]?.label"
  127. @blur="getNumber($event, comCurBaseTotalColumns[k],comCurBaseColumns[0]?.label)"
  128. v-model="i.label"
  129. size="small"
  130. style="width: 130px; margin-right: 20px;"></el-input>
  131. <div class="entry-r">
  132. <span>Freight Method</span>
  133. <el-radio-group
  134. v-model="i.freight_type"
  135. @change="getFreight(k)">
  136. <el-radio :label="1">Road Express</el-radio>
  137. <el-radio :label="2">Air Freight</el-radio>
  138. </el-radio-group>
  139. </div>
  140. </li>
  141. </ul>
  142. <div class="entry">
  143. <div class="entry-l">Setup</div>
  144. <div class="entry-l">include in unit price</div>
  145. <pc-switch v-model="setup_switch"></pc-switch>
  146. </div>
  147. <div class="entry">
  148. <div class="entry-l">Freight</div>
  149. <div class="entry-l">include in unit price</div>
  150. <div>
  151. <pc-switch v-model="freight_switch"></pc-switch>
  152. </div>
  153. </div>
  154. <el-button
  155. size="medium"
  156. class="button-black"
  157. @click="openMailDialog">
  158. Enquiry
  159. </el-button>
  160. <!-- 需求隐藏 加入car project弹框 -->
  161. <!-- <el-button class="button-white" @click="openProjectdDialog"><img src="@/assets/img/car.png"/><span> to my project</span></el-button> -->
  162. </section>
  163. <!-- <section>
  164. <unit-table
  165. :tableData="unitData"
  166. :tableColumns="[
  167. ...unit_columns,
  168. ...comCurBaseTotalColumns
  169. ]"></unit-table>
  170. 直接用comMergeColumns会出现summary数值问题,改用v-show="comLocationNum"控制
  171. <total-table
  172. v-show="comLocationNum == 1"
  173. :tableData="comSellData"
  174. :tableColumns="comNoSumCol"
  175. :comLocationNum="comLocationNum"
  176. :title="'Sell Price'"></total-table>
  177. <total-table
  178. v-show="comLocationNum != 1"
  179. :tableData="comSellData"
  180. :tableColumns="comHasSumCol"
  181. :comLocationNum="comLocationNum"
  182. :title="'Sell Price'"></total-table>
  183. <el-button
  184. class="button-black button-margin"
  185. size="medium"
  186. @click="openDownloadDialog(0)"
  187. >View Quote</el-button>
  188. <el-button
  189. class="button-black button-margin"
  190. size="medium"
  191. @click="openDownloadDialog(1)"
  192. >Send Order Enquiry</el-button>
  193. </section> -->
  194. </div>
  195. <!-- <div
  196. v-else
  197. class="quote-tips">
  198. Current item prices are missing, please contact<a
  199. href="mailto:Info@promocollection.com.au">
  200. info@promocollection.com.au</a>
  201. </div> -->
  202. <no-ssr>
  203. <div v-if="quoteLoadState == 1">
  204. <!-- Enquiry按钮 -->
  205. <form-dialog
  206. :emailForm="enquiryForm"
  207. :enquiryConfig="enquiryConfig"
  208. :visible.sync="enquiryFormVisible"
  209. @handleSend="sendPriceMail"
  210. :rules="rules"
  211. :labelWidth="
  212. enquiryConfig[3].selectlist?.length ? 140 : 82
  213. "></form-dialog>
  214. <mail-table
  215. ref="mailtable"
  216. :mailData="mailData"
  217. v-show="false">
  218. <price-to-img
  219. :pageData="pageData"
  220. :specificationsObj="specificationsObj"
  221. :tableData="comFilterSwitchSellData"
  222. :tableColumns="comMergeColumns"
  223. :comLocationNum="comLocationNum"
  224. :emailForm="commentObj"></price-to-img>
  225. </mail-table>
  226. <el-dialog
  227. ref="dialogRef"
  228. :lock-scroll="false"
  229. title="Customer Quote"
  230. :visible.sync="priceToImgVisible"
  231. custom-class="price-to-img-dialog">
  232. <price-to-img
  233. :isImgSrc="false"
  234. ref="priceToImgRef"
  235. :loading.sync="pdfLoading"
  236. :pageData="pageData"
  237. :specificationsObj="specificationsObj"
  238. :tableData="comFilterSwitchSellData"
  239. :tableColumns="comMergeColumns"
  240. :comLocationNum="comLocationNum"
  241. :emailForm="commentObj"></price-to-img>
  242. <p class="tips">Change default standard comment:</p>
  243. <el-input v-model="commentObj.Comments"></el-input>
  244. <div class="btn-wrap">
  245. <el-button
  246. class="button-black button-margin"
  247. size="medium"
  248. @click="handleDownloadPdf"
  249. :loading="pdfLoading"
  250. >Download</el-button>
  251. </div>
  252. </el-dialog>
  253. <form-dialog
  254. :emailForm="commentObj"
  255. :enquiryConfig="enquiryConfig1"
  256. :visible.sync="downloadDialogVisible"
  257. @handleSend="sendPdfMail"
  258. :rules="rules1"
  259. :labelWidth="120"
  260. :isSendPdf="true"></form-dialog>
  261. <price-to-img
  262. ref="pdf"
  263. v-show="false"
  264. :loading.sync="pdfLoading"
  265. :pageData="pageData"
  266. :specificationsObj="specificationsObj"
  267. :tableData="comFilterSwitchSellData"
  268. :tableColumns="comMergeColumns"
  269. :comLocationNum="comLocationNum"
  270. :emailForm="commentObj"></price-to-img>
  271. <!-- 报价图片弹框 -->
  272. <dialog-XX-success
  273. :visible.sync="xxContentVisible" :imgType="false"
  274. :content="'This quantity is below the MOQ for this product'"></dialog-XX-success>
  275. </div>
  276. </no-ssr>
  277. </div>
  278. </template>
  279. <script>
  280. import { mapState, mapMutations, mapActions } from 'vuex'
  281. import _ from 'lodash'
  282. import { times as npTimes,plus as npPlus, minus as npMinus, divide as npDivide } from 'number-precision';
  283. import NewPriceTable from '@/components/table/NewPriceTable'
  284. import TotalTable from '@/components/table/TotalTable'
  285. import UnitTable from '@/components/table/UnitTable'
  286. import MailTable from '@/components/table/MailTable'
  287. import dialogXXSuccess from '@/components/DIalogXXSuccess.vue'
  288. export default {
  289. components: {
  290. NewPriceTable,
  291. TotalTable,
  292. UnitTable,
  293. MailTable,
  294. 'dialog-XX-success': dialogXXSuccess
  295. },
  296. props: {
  297. pageData: {
  298. type: Object,
  299. default: () => {
  300. return {}
  301. },
  302. },
  303. id: {
  304. type: Number,
  305. default: null
  306. },
  307. },
  308. data() {
  309. return {
  310. quoteLoadState: 0,
  311. curWeek: 0,
  312. allPrintTab: [],
  313. priceList: [],
  314. initZeroObj: {},
  315. initSetupObj: {},
  316. initUnitObj: {},
  317. initChangeUnitObj: {},
  318. initFrightObj: {},
  319. initTotalObj: {},
  320. xxContentVisible: false,
  321. setup_switch: false,
  322. freight_switch: false,
  323. weight: {},
  324. undecorated_columns: [
  325. {
  326. label: 'MODEL',
  327. prop: 'model',
  328. type: 'text',
  329. align: 'left',
  330. width: 150,
  331. extraWidth: 50, // 配合组件 (820-tableColumns[0].width-tableColumns[0].extraWidth)/(tableColumns.length-1)
  332. isFirstColumn: true, // 去掉$符号
  333. },
  334. {
  335. label: 'SETUP',
  336. prop: 'website_setup',
  337. },
  338. ],
  339. decoration_columns: [
  340. {
  341. label: 'PRINT OPTION',
  342. prop: 'dec_code',
  343. type: 'radioInput',
  344. align: 'left',
  345. width: 150,
  346. extraWidth: 50,
  347. },
  348. {
  349. label: 'SETUP',
  350. prop: 'website_setup',
  351. },
  352. ],
  353. addon_columns: [
  354. {
  355. label: 'Addon',
  356. prop: 'name',
  357. type: 'text',
  358. width: 150,
  359. extraWidth: 50,
  360. isFirstColumn: true, // 去掉$符号
  361. },
  362. {
  363. label: 'Setup',
  364. prop: 'website_setup',
  365. },
  366. ],
  367. buy_columns: [
  368. {
  369. label: 'QTY',
  370. prop: 'project',
  371. isFirstColumn: true, // 去掉$符号
  372. },
  373. ],
  374. unit_columns: [
  375. {
  376. label: 'QTY',
  377. prop: 'total',
  378. align: 'left',
  379. isText: true,
  380. },
  381. ],
  382. buyData: [
  383. { project: 'Setup' },
  384. { project: 'Unit' },
  385. { project: 'Freight' },
  386. { project: 'Total' }
  387. ],
  388. unitData: [
  389. { total: 'Unit Rate %' },
  390. { total: 'Setup %' },
  391. { total: 'Freight %' },
  392. ],
  393. sellData: [
  394. { project: 'Postcode',summary: '-' },
  395. { project: 'Setup',summary: 0.00 },
  396. { project: 'Unit',summary: 0.00 },
  397. { project: 'Freight',summary: 0.00 },
  398. { project: 'Total',summary: 0.00 },
  399. ],
  400. POA_Config: ['111', '111.00', '999', '999.00'],
  401. enquiryFormVisible: false,
  402. enquiryForm: {
  403. Name: '',
  404. Email: '',
  405. Phone: '',
  406. // 'Customer manager': null,
  407. Comments: '',
  408. },
  409. enquiryConfig: [
  410. { prop: 'Name', type: 'input' },
  411. { prop: 'Email', type: 'input' },
  412. { prop: 'Phone', type: 'input' },
  413. {
  414. prop: 'Customer manager',
  415. type: 'select',
  416. selectlist: [],
  417. isShow: false,
  418. },
  419. { prop: 'Comments', type: 'textarea' },
  420. ],
  421. rules: {
  422. Name: [{ required: true, message: 'Please enter', trigger: 'blur' }],
  423. Email: [
  424. {
  425. required: true,
  426. message: 'Please enter the correct format',
  427. pattern:
  428. /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+((.[a-zA-Z0-9_-]{2,3}){1,2})$/,
  429. trigger: 'blur',
  430. },
  431. ],
  432. Phone: [
  433. {
  434. required: true,
  435. message: 'Please enter the correct format',
  436. // pattern: /^1[0-9]{10}$/,
  437. trigger: 'blur',
  438. },
  439. ],
  440. 'Customer manager': [
  441. { required: true, message: 'Please select', trigger: 'change' },
  442. ],
  443. },
  444. mailData: {
  445. Url: '',
  446. },
  447. priceToImgVisible: false,
  448. downloadDialogVisible: false,
  449. commentObj: {
  450. 'Email Address': '',
  451. Comments: '',
  452. },
  453. enquiryConfig1: [
  454. { prop: 'Email Address', type: 'input' },
  455. { prop: 'Comments', type: 'input' },
  456. ],
  457. rules1: {
  458. 'Email Address': [
  459. {
  460. required: true,
  461. message: 'Please enter the correct format',
  462. pattern:
  463. /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+((.[a-zA-Z0-9_-]{2,3}){1,2})$/,
  464. trigger: 'blur',
  465. },
  466. ],
  467. },
  468. specificationsObj: {
  469. time: null,
  470. model: null,
  471. decoration: null,
  472. addonArr: null,
  473. },
  474. pdfLoading: false,
  475. }
  476. },
  477. computed: {
  478. ...mapState('config', { configInfo: state => state.configInfo }),
  479. userInfo() {
  480. return this.$store.state.userInfo
  481. },
  482. comCurWeekPrice() {
  483. return this.priceList[this.curWeek] || {}
  484. },
  485. comCurPrint() {
  486. return this.comCurWeekPrice.curPrint
  487. },
  488. comCurBasePrice() {
  489. return this.comCurWeekPrice.basePrice[this.comCurPrint]
  490. },
  491. comLocationNum() {
  492. return +(this.comCurWeekPrice.basePrice[this.comCurPrint].locationNum)
  493. },
  494. comCurBaseColumns() {
  495. return this.comCurBasePrice.part_columns
  496. },
  497. comCurBaseTotalColumns() {
  498. const d = this.comCurWeekPrice.basePrice[this.comCurPrint].total_part_columns
  499. const n = this.comLocationNum
  500. if (n === 1) {
  501. return d
  502. }else{
  503. const concatAdd = [...d,...this.comCurWeekPrice.basePrice[this.comCurPrint].remainingAttr].slice(0, n);
  504. return concatAdd
  505. }
  506. },
  507. comTotalLabel(){
  508. // 计算所有元素label的和
  509. return this.comCurBaseTotalColumns.reduce((sum, item) => sum + Number(item.label), 0);
  510. },
  511. comSummaryColumns(){
  512. return [{ label: this.comTotalLabel.toString(), prop: 'summary' }];
  513. },
  514. comAttributeList() {
  515. const obj = {}
  516. this.comCurBaseTotalColumns?.forEach(item => {
  517. obj[item.prop] = item.label
  518. })
  519. obj.summary = this.comTotalLabel;
  520. return obj
  521. },
  522. // 当前已选基础价
  523. comBasePrice() {
  524. return this.comCurBasePrice.selectBaseRow
  525. },
  526. // 当前累加打印价
  527. comDecoPrice() {
  528. if (!this.comCurWeekPrice.decoration?.length) {
  529. return []
  530. }
  531. const arr = this.comCurWeekPrice.decoration
  532. .map((item, idx) => {
  533. const obj = {}
  534. if (+item.num > 0) {
  535. for (const i in this.initUnitObj) {
  536. if (idx === 0) {
  537. // 首个打印价要取附加价计算
  538. const keyArr = i.split('_')
  539. const supplier_val = item[`supplier_${keyArr[1]}`]
  540. if (this.POA_Config.includes(supplier_val)) {
  541. obj[`${i}`] = supplier_val
  542. } else {
  543. obj[`${i}`] = npTimes(+supplier_val, item.num)
  544. }
  545. } else {
  546. obj[`${i}`] = this.POA_Config.includes(item[i]) ? item[i] : npTimes(+item[i], item.num);
  547. }
  548. }
  549. }
  550. return obj
  551. })
  552. .filter(obj => Object.keys(obj).length !== 0)
  553. return arr
  554. },
  555. comBuyData() {
  556. this.calculateBuyData();
  557. return this.buyData
  558. },
  559. comNoSumCol(){
  560. return [
  561. ...this.buy_columns,
  562. ...this.comCurBaseTotalColumns
  563. ]
  564. },
  565. comHasSumCol(){
  566. return [
  567. ...this.buy_columns,
  568. ...this.comCurBaseTotalColumns,
  569. ...this.comSummaryColumns
  570. ];
  571. },
  572. comMergeColumns(){
  573. return this.comLocationNum == 1 ? this.comNoSumCol:this.comHasSumCol
  574. },
  575. comSellData() {
  576. if (Object.keys(this.comAttributeList).length !== 0) {
  577. this.calculateSellData();
  578. }
  579. return this.sellData
  580. },
  581. comFilterSwitchSellData() {
  582. return this.comSellData?.filter((item, i) => {
  583. if (i === 1 && this.setup_switch) {
  584. return false;
  585. } else if (i === 3 && this.freight_switch) {
  586. return false;
  587. } else {
  588. return item
  589. }
  590. })
  591. },
  592. },
  593. methods: {
  594. ...mapActions(['getUserInfo']),
  595. multiplyWithMargin(o, m) {
  596. return npDivide(npTimes(o, (100 + parseFloat(m))), 100)
  597. },
  598. async getQuote() {
  599. let margin = 0
  600. let setupMargin = 0
  601. await this.$store
  602. .dispatch('getShopInfo')
  603. .then(res => {
  604. margin = parseFloat(res.margin) || 0
  605. setupMargin = parseFloat(res.setup_margin) || 0
  606. })
  607. this.$axios
  608. .post('/catalog/pricequote', { id: this.id })
  609. .then(res => {
  610. if (localStorage.getItem('unit')) {
  611. this.unitData = JSON.parse(localStorage.getItem('unit'))
  612. }
  613. const { attributeList, priceList, default: defaultID } = res.result
  614. if (
  615. !Object.keys(attributeList).length ||
  616. !Object.keys(priceList).length
  617. ) {
  618. this.quoteLoadState = 2
  619. return
  620. }
  621. for (const a in attributeList) {
  622. // 过滤掉website_qty标签无数量
  623. if (attributeList[a]) {
  624. this.initZeroObj[a] = 0
  625. }else{
  626. delete attributeList[a]
  627. }
  628. for (const unit of this.unitData) {
  629. // 如果对象中缺少 attributeList 的 key,则设置为 40
  630. if (!(a in unit) || unit[a] === '') {
  631. this.$set(unit,a,40)
  632. }
  633. }
  634. }
  635. // 格式化数据,对象改成数组
  636. for (const keys in priceList) {
  637. const vals = {}
  638. const { decoration, additionlist, ...remaining } = priceList[keys]
  639. vals.basePrice = []
  640. vals.selectAdditionRow = []
  641. vals.curPrint = 0
  642. vals.name = this.formatDurationString(keys)
  643. vals.nameOrigin = keys
  644. vals.decorationOrign = [...decoration]
  645. vals.decorationID = decoration.map(i => i.id)
  646. vals.decoration = [...decoration].flatMap(item => {
  647. const result = [];
  648. if (item.max_color > 0) {
  649. result.push({ ...item, max_num: item.max_color,id:`${item.id}-1`,decName:item.max_color_name });
  650. }
  651. if (item.max_point > 0) {
  652. result.push({ ...item, max_num: item.max_point,id:`${item.id}-2`,decName:item.max_point_name });
  653. }
  654. return result;
  655. });
  656. vals.additionlist = additionlist
  657. for (const k in remaining) {
  658. const o = {}
  659. o.name = k
  660. remaining[k] = remaining[k].map(item => {
  661. const temp = {...item}
  662. for(let i = 1; i<=8; i++) {
  663. if (item[`website_qty${i}`] && !this.POA_Config.includes(item[`website_qty${i}`])) {
  664. temp[`website_qty${i}`] = this.multiplyWithMargin(parseFloat(item[`website_qty${i}`]), margin).toString()
  665. }
  666. }
  667. temp.website_setup = this.multiplyWithMargin(parseFloat(item.website_setup), setupMargin).toString()
  668. return temp
  669. })
  670. o.data = remaining[k]
  671. o.attributeList = this.copyData(attributeList)
  672. if (remaining[k]?.length>1) {
  673. // 检查数组中各元素的 website_qtyN 是否都等于 "-" or "POA",则删除key
  674. for (const a in attributeList) {
  675. const is111Poa = remaining[k].every(item => this.POA_Config.includes(item[a]));
  676. if (is111Poa) {
  677. delete o.attributeList[a]
  678. }
  679. }
  680. }else if (remaining[k]?.length === 1) {
  681. // 判断 remaining[k][0] 中是否包含 vals.attributeList 的键,并且对应的值都等于 "-" or "POA",则不删除key
  682. const obj = remaining[k][0];
  683. const attributeKeys = Object.keys(o.attributeList);
  684. const areAllKeysInPOAConfig = attributeKeys.every(key => {
  685. return Object.prototype.hasOwnProperty.call(obj, key) && this.POA_Config.includes(obj[key]);
  686. });
  687. if (!areAllKeysInPOAConfig) {
  688. attributeKeys.forEach(key => {
  689. if (Object.prototype.hasOwnProperty.call(obj, key) && this.POA_Config.includes(obj[key])) {
  690. delete o.attributeList[key];
  691. }
  692. });
  693. }
  694. }
  695. o.name = k
  696. o.data = remaining[k]
  697. o.locationNum = 1
  698. o.part_columns = Object.keys(o.attributeList).map(e => {
  699. return { label: o.attributeList[e].toString(), prop: e }
  700. })
  701. const freightParam = {
  702. postcode: '',
  703. freight_type: 1,
  704. freight: {}
  705. }
  706. o.total_part_columns = this.copyData(o.part_columns).map(obj => ({
  707. ...obj,
  708. ...freightParam
  709. }));
  710. o.remainingAttr = []
  711. const firstColumns = { ...o.part_columns[0],...freightParam}
  712. for(let i = 1; i < 9; i++){
  713. if(!Object.keys(o.attributeList).includes(`website_qty${i}`)){
  714. const newColumn = {...firstColumns}
  715. this.$set(newColumn,'prop',`website_qty${i}`)
  716. o.remainingAttr.push(newColumn)
  717. }
  718. };
  719. vals.basePrice.push(o)
  720. if (!this.allPrintTab.includes(k)) {
  721. this.allPrintTab.push(k)
  722. }
  723. }
  724. this.priceList.push(vals)
  725. }
  726. this.priceList.forEach((options, index) => {
  727. // 原始数据name没空格,需要映射到
  728. if (options.nameOrigin === defaultID?.name) {
  729. this.curWeek = index
  730. options.decorationOrign.forEach((opt, idx) => {
  731. if (opt.id === defaultID?.decoration?.id) {
  732. this.$set(options, 'curPrint', idx)
  733. }
  734. })
  735. }
  736. // 所有周期的所有打印,进来页面时默认勾选第一条价格
  737. options.basePrice.forEach((opt,idx) => {
  738. this.$set(opt, 'selectBaseRow', opt.data[0] ||{})
  739. opt.decoration_addition = [...(options.decorationOrign?.[idx]?.decoration_addition || []),...(options.additionlist || [])]
  740. })
  741. options.decoration.forEach(opt => {
  742. this.$set(opt, 'num', 0)
  743. })
  744. })
  745. this.initSetupObj = Object.assign({}, this.initZeroObj)
  746. this.initUnitObj = Object.assign({}, this.initZeroObj, {
  747. website_setup: 0,
  748. })
  749. this.initFrightObj = Object.assign({}, this.initZeroObj)
  750. this.buyData = this.buyData.map(item => {
  751. return { ...item, ...this.initSetupObj }
  752. })
  753. this.sellData = this.sellData.map(item => {
  754. return { ...item, ...this.initSetupObj }
  755. })
  756. this.quoteLoadState = 1
  757. })
  758. .catch((e) => {
  759. console.log('this.quoteLoadState1: ', e);
  760. this.quoteLoadState = 2
  761. })
  762. },
  763. formatDurationString(input) {
  764. // 匹配数字和字符串的正则表达式
  765. const regex = /(\d+)([a-zA-Z]+)/g;
  766. const result = input.replace(regex, '$1 $2');
  767. return result;
  768. },
  769. getWeight() {
  770. this.$axios
  771. .post('/catalog/weight', { id: this.id })
  772. .then(res => {
  773. this.weight = res.result
  774. })
  775. .catch(() => {})
  776. },
  777. getFreight(k) {
  778. const postcode = this.comCurBaseTotalColumns[k].postcode
  779. const type = this.comCurBaseTotalColumns[k].freight_type
  780. const init = { basic:0,pickup:0,minimum:0 }
  781. if (postcode.length < 3) {
  782. this.comCurBaseTotalColumns[k].freight = init
  783. return
  784. }
  785. this.$axios
  786. .post('/catalog/freight', {
  787. postcode,
  788. type
  789. })
  790. .then(res => {
  791. this.comCurBaseTotalColumns[k].freight = Array.isArray(res.result)?init:res.result
  792. })
  793. },
  794. getDebFreight: _.debounce(function (k) {
  795. this.getFreight(k)
  796. }, 200),
  797. getNumber(e, row, min) {
  798. if (parseInt(e.target.value) < min) {
  799. this.xxContentVisible = true;
  800. row.label = min
  801. } else {
  802. this.xxContentVisible = false;
  803. }
  804. },
  805. sortBy(items) {
  806. // items.decoration.sort(this.customSort(items.decorationID))
  807. // const targetElement = items.decoration.splice(items.curPrint, 1)[0]
  808. // items.decoration.unshift(targetElement)
  809. },
  810. // 按原打印数组的id字段排序
  811. customSort(decorationID) {
  812. return (a, b) => {
  813. return decorationID.indexOf(a.id) - decorationID.indexOf(b.id)
  814. }
  815. },
  816. dividePrice(a) {
  817. return npDivide(+a, 100)
  818. },
  819. openMailDialog() {
  820. this.enquiryFormVisible = true
  821. // if (this.$utils.checkLogin()) {
  822. // this.getUserInfo()
  823. // const { contacts, email, phone, crm_users_id:crmUsersId } = this.userInfo
  824. // this.enquiryForm.Name = contacts
  825. // this.enquiryForm.Email = email
  826. // this.enquiryForm.Phone = phone
  827. // if (crmUsersId?.length) {
  828. // this.enquiryConfig[3].selectlist = crmUsersId
  829. // if (crmUsersId?.length === 1) {
  830. // this.enquiryForm['Customer manager'] = crmUsersId[0].name
  831. // }
  832. // } else {
  833. // this.enquiryConfig[3].isShow = false
  834. // this.$delete(this.enquiryForm, 'Customer manager')
  835. // }
  836. // this.enquiryFormVisible = true
  837. // } else {
  838. // this.openDialog()
  839. // }
  840. },
  841. getMailData() {
  842. this.mailData.Url = window.location.href
  843. const { Name, Email, Phone, Comments } = this.enquiryForm
  844. this.mailData['Customer Name'] = Name
  845. this.mailData['Customer Email'] = Email
  846. this.mailData['Customer Phone'] = Phone
  847. this.mailData.Comments = Comments
  848. // const { email, level, createTime } = this.userInfo
  849. // this.mailData['Member Account'] = email
  850. // this.mailData['Member Grade'] = level.name
  851. // this.mailData['Member Registration time'] = createTime
  852. this.mailData['Quote time'] = this.$utils.formatTime(new Date())
  853. },
  854. // 发送价格邮件 Enquiry按钮
  855. async sendPriceMail() {
  856. await this.getMailData()
  857. await this.getCustomerQuoteData()
  858. const shopInfo = await this.$store.dispatch('getShopInfo').then(res => res)
  859. const {
  860. Name,
  861. Email,
  862. Phone,
  863. Comments,
  864. } = this.enquiryForm
  865. this.$axios
  866. .post('/c-api/quote/sendenquiry', {
  867. site_id: shopInfo.id || '',
  868. content: this.$refs.mailtable.$el.innerHTML,
  869. name: Name,
  870. email: Email,
  871. phone: Phone,
  872. product_code: this.pageData.product_code,
  873. comments: Comments,
  874. })
  875. .then(res => {
  876. this.setLoading(false)
  877. this.enquiryFormVisible = false
  878. this.$confirm('Enquiry Sent', {
  879. confirmButtonText: 'OK',
  880. showCancelButton: false,
  881. type: 'success',
  882. center: true,
  883. showClose: false,
  884. confirmButtonClass: 'com-btnblack',
  885. }).then(() => {})
  886. })
  887. .catch(() => {
  888. this.setLoading(false)
  889. })
  890. },
  891. getCustomerQuoteData() {
  892. const { name, selectAdditionRow } = this.comCurWeekPrice
  893. this.specificationsObj.time = name
  894. this.specificationsObj.model = this.comBasePrice.model
  895. this.specificationsObj.decoration = this.comCurBasePrice.name
  896. if (selectAdditionRow.length) {
  897. this.specificationsObj.addonArr = selectAdditionRow.map(
  898. item => item.name
  899. )
  900. } else {
  901. this.specificationsObj.addonArr = null
  902. }
  903. },
  904. openDownloadDialog(type) {
  905. this.getCustomerQuoteData()
  906. type
  907. ? (this.downloadDialogVisible = true)
  908. : (this.priceToImgVisible = true)
  909. },
  910. handleDownloadPdf() {
  911. this.pdfLoading = true
  912. this.$nextTick(() => {
  913. this.$refs.priceToImgRef.htmlToPdf(this.pageData.product_code)
  914. })
  915. },
  916. // 发送PDF邮件
  917. sendPdfMail() {
  918. this.$axios
  919. .post('/quote/sendpdf', {
  920. content: this.$refs.pdf.$el.innerHTML,
  921. product_code: this.pageData.product_code,
  922. email: this.commentObj['Email Address'],
  923. })
  924. .then(res => {
  925. this.setLoading(false)
  926. this.downloadDialogVisible = false
  927. this.$confirm('Enquiry Sent', {
  928. confirmButtonText: 'OK',
  929. showCancelButton: false,
  930. type: 'success',
  931. center: true,
  932. showClose: false,
  933. confirmButtonClass: 'com-btnblack',
  934. })
  935. })
  936. .catch(() => {
  937. this.setLoading(false)
  938. })
  939. },
  940. copyData(data) {
  941. return JSON.parse(JSON.stringify(data))
  942. },
  943. calculateBuyData(){
  944. const selPriceArr = []
  945. if (JSON.stringify(this.comBasePrice) !== '{}') {
  946. selPriceArr.push(this.comBasePrice)
  947. }
  948. selPriceArr.push(...this.comDecoPrice, ...this.comCurWeekPrice.selectAdditionRow);
  949. if(selPriceArr.length === 0){
  950. this.buyData = this.buyData.map(item => ({ ...item, ...this.initZeroObj }));
  951. return
  952. }
  953. // 累加所选,初始数量对应的单价。赋值给this.initUnitObj
  954. for (const i in this.initUnitObj) {
  955. const columnSum = this.copyData(selPriceArr).reduce(function (prev, cur) {
  956. if (cur[i] === '111' || cur[i] === '111.00') {
  957. return (cur[i] = '-')
  958. } else if (cur[i] === '999' || cur[i] === '999.00') {
  959. return (cur[i] = 'POA')
  960. } else {
  961. // 当基础价格是-POA,后续累加价格是正常数字价,依然返回-POA
  962. if (prev === '-' || prev === 'POA') {
  963. return prev
  964. }
  965. return npPlus(+cur[i], prev).toFixed(2)
  966. }
  967. }, 0)
  968. this.$set(this.initUnitObj, i, columnSum)
  969. }
  970. for (const a in this.comAttributeList) {
  971. // 每次更改选择价格,必须遍历整个comAttributeList
  972. const tempIdx = this.comCurBaseColumns.findIndex(
  973. items => +this.comAttributeList[a] < +items.label
  974. )
  975. if (tempIdx > 0) {
  976. const key = this.comCurBaseColumns[tempIdx - 1].prop
  977. this.$set(this.initChangeUnitObj, a, this.initUnitObj[key])
  978. } else {
  979. const length = this.comCurBaseColumns.length
  980. const key = this.comCurBaseColumns[length - 1].prop
  981. this.$set(this.initChangeUnitObj, a, this.initUnitObj[key])
  982. }
  983. if (
  984. this.initChangeUnitObj[a] === 'POA' ||
  985. this.initChangeUnitObj[a] === '-'
  986. ) {
  987. this.$set(this.initSetupObj, a, this.initChangeUnitObj[a])
  988. this.$set(this.initFrightObj, a, this.initChangeUnitObj[a])
  989. } else {
  990. this.$set(this.initSetupObj, a, this.initUnitObj.website_setup)
  991. // 计算运费
  992. // 单独批次数量的总重
  993. // weight定义是{},后端没数据传回[]
  994. const unitWLocal = this.weight.unit_w_local ? +this.weight.unit_w_local : 0;
  995. const totalWeight = Math.ceil(
  996. npTimes(unitWLocal, this.comAttributeList[a])
  997. )
  998. // Road express 1 AAE:AAEFactor 2
  999. const setupFuel = this.dividePrice(this.configInfo.fuel)
  1000. const setupBagFreight = this.dividePrice(this.configInfo.bag_freight)
  1001. const setupExpressFreight = this.dividePrice(
  1002. this.configInfo.express_freight
  1003. )
  1004. const AAEFactor = npPlus(1, setupBagFreight, setupFuel)
  1005. const expressFactor = npPlus(1, setupExpressFreight, setupFuel)
  1006. let frightCost = 0
  1007. let freightType
  1008. let postcode
  1009. let freight = {}
  1010. const matchIndex = this.comCurBaseTotalColumns.findIndex(item => item.prop === a)
  1011. // 1,所有按第一个运费统计;不为1,则只计算 comCurBaseTotalColumns的[地址数]长度
  1012. if (+this.comLocationNum === 1 || this.comLocationNum >= matchIndex + 1) {
  1013. ({ freight, freight_type: freightType, postcode } = this.comCurBaseTotalColumns[+this.comLocationNum === 1 ? 0 : matchIndex] || {});
  1014. }
  1015. if (freightType === 1 && postcode >= 3) {
  1016. if (totalWeight > 20) {
  1017. const a1 = npMinus(totalWeight, 20)
  1018. const a2 = npTimes(a1, +freight.basic)
  1019. const a3 = npPlus(+freight.pickup, a2)
  1020. frightCost = npTimes(a3, expressFactor)
  1021. } else {
  1022. frightCost = npTimes(+freight.pickup, expressFactor)
  1023. }
  1024. } else if (freightType === 2 && postcode >= 3) {
  1025. const a1 = npDivide(totalWeight, 5)
  1026. const a2 = npTimes(+freight.minimum, Math.ceil(a1))
  1027. frightCost = npTimes(a2, AAEFactor)
  1028. } else {
  1029. frightCost = 0
  1030. }
  1031. this.$set(this.initFrightObj, a, Math.ceil(frightCost).toFixed(2))
  1032. }
  1033. if (
  1034. this.initChangeUnitObj[a] === '-' ||
  1035. this.initChangeUnitObj[a] === 'POA'
  1036. ) {
  1037. this.$set(this.initTotalObj, a, this.initChangeUnitObj[a])
  1038. } else {
  1039. const unitQTY = npTimes(
  1040. this.initChangeUnitObj[a],
  1041. this.comAttributeList[a]
  1042. )
  1043. this.$set(
  1044. this.initTotalObj,
  1045. a,
  1046. npPlus(
  1047. this.initUnitObj.website_setup,
  1048. unitQTY,
  1049. this.initFrightObj[a]
  1050. ).toFixed(2)
  1051. )
  1052. }
  1053. if (this.setup_switch) {
  1054. // 业务:Setup价格/对应数量后向上取整
  1055. if (
  1056. this.initChangeUnitObj[a] === '-' ||
  1057. this.initChangeUnitObj[a] === 'POA'
  1058. ) {
  1059. this.$set(this.initChangeUnitObj, a, this.initChangeUnitObj[a])
  1060. } else {
  1061. const num =
  1062. Math.ceil(
  1063. (this.initSetupObj[a] / this.comAttributeList[a]) * 100
  1064. ) / 100
  1065. this.$set(
  1066. this.initChangeUnitObj,
  1067. a,
  1068. npPlus(this.initChangeUnitObj[a], num).toFixed(2)
  1069. )
  1070. }
  1071. }
  1072. if (this.freight_switch) {
  1073. if (
  1074. this.initChangeUnitObj[a] === '-' ||
  1075. this.initChangeUnitObj[a] === 'POA'
  1076. ) {
  1077. this.$set(this.initChangeUnitObj, a, this.initChangeUnitObj[a])
  1078. } else {
  1079. const num =
  1080. Math.ceil(
  1081. (this.initFrightObj[a] / this.comAttributeList[a]) * 100
  1082. ) / 100
  1083. this.$set(
  1084. this.initChangeUnitObj,
  1085. a,
  1086. npPlus(this.initChangeUnitObj[a], num).toFixed(2)
  1087. )
  1088. }
  1089. }
  1090. }
  1091. if (this.setup_switch) {
  1092. this.$set(this.buyData, 0, { ...this.buyData[0], ...this.initZeroObj, ...{'summary':0.00} })
  1093. } else {
  1094. this.$set(this.buyData, 0, { ...this.buyData[0], ...this.initSetupObj })
  1095. }
  1096. this.$set(this.buyData, 1, {
  1097. ...this.buyData[1],
  1098. ...this.initChangeUnitObj,
  1099. })
  1100. if (this.freight_switch) {
  1101. this.$set(this.buyData, 2, { ...this.buyData[2], ...this.initZeroObj })
  1102. } else {
  1103. this.$set(this.buyData, 2, {
  1104. ...this.buyData[2],
  1105. ...this.initFrightObj,
  1106. })
  1107. }
  1108. this.$set(this.buyData, 3, { ...this.buyData[3], ...this.initTotalObj })
  1109. },
  1110. calculateSellData() {
  1111. // 放置comSellData计算和副作用的代码
  1112. const buySetup = this.comBuyData[0]
  1113. const buyUnit = this.comBuyData[1]
  1114. const buyFright = this.comBuyData[2]
  1115. let frightSummary = 0
  1116. for (const i in this.comAttributeList) {
  1117. if (buyUnit[i] === '-' || buyUnit[i] === 'POA') {
  1118. this.sellData[0][i] = '-'
  1119. this.sellData[1][i] = buyUnit[i]
  1120. this.sellData[2][i] = buyUnit[i]
  1121. this.sellData[3][i] = buyUnit[i]
  1122. this.sellData[4][i] = buyUnit[i]
  1123. } else {
  1124. const item = this.comLocationNum === 1 ? this.comCurBaseTotalColumns[0] : this.comCurBaseTotalColumns.find(element => element.prop === i);
  1125. this.sellData[0][i] = item && item.postcode !== '' ? item.postcode : '-';
  1126. // 分别乘以Markup %表格
  1127. const key = this.comCurBaseTotalColumns[0]?.prop
  1128. if (this.unitData[1] && this.unitData[1][key]) {
  1129. const a = npPlus(this.unitData[1][key] / 100, 1)
  1130. this.sellData[1][i] = npTimes(buySetup[i], a).toFixed(2)
  1131. } else {
  1132. this.sellData[1][i] = buySetup[i]
  1133. }
  1134. if (this.unitData[0][i]) {
  1135. const a = npPlus(this.unitData[0][i] / 100, 1)
  1136. this.sellData[2][i] = npTimes(buyUnit[i], a).toFixed(2)
  1137. } else {
  1138. this.sellData[2][i] = buyUnit[i]
  1139. }
  1140. if (this.unitData[2] && this.unitData[2][key]) {
  1141. const a = npPlus(this.unitData[2][key] / 100, 1)
  1142. this.sellData[3][i] = npTimes(buyFright[i], a).toFixed(2)
  1143. // freight_switch会使qty的运费=0无法计算,故用了initFrightObj
  1144. const fa = npTimes(this.initFrightObj[i], a)
  1145. frightSummary = npPlus(frightSummary,fa).toFixed(2)
  1146. } else {
  1147. this.sellData[3][i] = buyFright[i]
  1148. frightSummary = npPlus(frightSummary,this.initFrightObj[i]).toFixed(2)
  1149. }
  1150. const unitQTY = npTimes(this.sellData[2][i], this.comAttributeList[i])
  1151. this.$set(
  1152. this.sellData[4],
  1153. i,
  1154. npPlus(this.sellData[1][i], unitQTY, this.sellData[3][i]).toFixed(2)
  1155. )
  1156. }
  1157. }
  1158. // 迭代加了Total列,需要统计qty的运费后才能合计运费
  1159. if (this.sellData[2].summary !== '-' && this.sellData[2].summary !== 'POA') {
  1160. if (this.freight_switch) {
  1161. const num = Math.ceil((frightSummary / this.comAttributeList.summary) * 100) / 100
  1162. this.sellData[2].summary = npPlus(this.sellData[2].summary, num).toFixed(2)
  1163. this.sellData[3].summary = 0.00
  1164. const a = npTimes(this.sellData[2].summary,this.comAttributeList.summary)
  1165. this.sellData[4].summary = npPlus(this.sellData[1].summary,a).toFixed(2)
  1166. } else {
  1167. this.sellData[3].summary = frightSummary
  1168. this.sellData[4].summary = npPlus(frightSummary,this.sellData[4].summary).toFixed(2)
  1169. }
  1170. }
  1171. },
  1172. // 低于最小起订量 把该栏的数值重置到最小起订量
  1173. getChildIdx(idx){
  1174. this.xxContentVisible = true;
  1175. this.$set(this.comCurBaseTotalColumns[idx-1],'label',this.comCurBaseColumns[0]?.label)
  1176. },
  1177. setMaxNum(val){
  1178. if(val > 7){
  1179. this.comCurBasePrice.locationNum = 7
  1180. }else if(val < 1){
  1181. this.comCurBasePrice.locationNum = 1
  1182. }
  1183. },
  1184. ...mapMutations({ openDialog: 'openDialog', setLoading: 'product/setLoading' })
  1185. },
  1186. }
  1187. </script>
  1188. <style lang='scss' scoped>
  1189. $deep-blue: #004a97;
  1190. .exclamation-icon {
  1191. width: 18px;
  1192. height: 18px;
  1193. line-height: 18px;
  1194. display: inline-block;
  1195. text-align: center;
  1196. color: #000;
  1197. border-radius: 100%;
  1198. border: 1px solid #000;
  1199. font-size: 18px;
  1200. font-weight: 550;
  1201. }
  1202. .popover {
  1203. border: 1px solid #eee;
  1204. padding: 20px;
  1205. .title {
  1206. text-align: center;
  1207. font-weight: bold;
  1208. font-size: 20px;
  1209. }
  1210. }
  1211. .title1 {
  1212. margin: 30px 0 0;
  1213. padding: 20px 0 0;
  1214. font-size: 16px;
  1215. color: #15263d;
  1216. display: flex;
  1217. font-family: ProximaNova-Regular;
  1218. font-weight: 600;
  1219. justify-content: space-between;
  1220. border-top: 1px solid #eee;
  1221. span {
  1222. &:nth-child(2) {
  1223. font-size: 14px;
  1224. color: #50596b;
  1225. }
  1226. }
  1227. }
  1228. .text-red {
  1229. text-align: right;
  1230. color: #e90000;
  1231. padding: 10px 10px 0 0;
  1232. font-size: 16px;
  1233. font-weight: bold;
  1234. }
  1235. .entry {
  1236. color: #50596b;
  1237. margin: 15px 10px;
  1238. display: flex;
  1239. flex-direction: row;
  1240. align-items: center;
  1241. .entry-l {
  1242. width: 120px;
  1243. margin-right: 10px;
  1244. }
  1245. .entry-text{
  1246. margin-left: 280px;
  1247. width: 130px;
  1248. text-align: center;
  1249. font-weight: bold;
  1250. }
  1251. :deep(.el-input__inner) {
  1252. text-align: center;
  1253. padding: 0;
  1254. }
  1255. .entry-r {
  1256. flex: 1;
  1257. text-align: right;
  1258. span {
  1259. margin-right: 10px;
  1260. }
  1261. //修改radio选中为✔样式
  1262. :deep(.el-radio__inner) {
  1263. border-radius: 0;
  1264. width: 18px;
  1265. height: 18px;
  1266. }
  1267. :deep(.el-radio__input.is-checked .el-radio__inner) {
  1268. background: $deep-blue;
  1269. border: 1px solid $deep-blue;
  1270. }
  1271. :deep(.el-radio__input.is-checked + .el-radio__label) {
  1272. color: $deep-blue;
  1273. }
  1274. :deep(.el-radio__input.is-checked .el-radio__inner::after) {
  1275. content: '';
  1276. width: 10px;
  1277. height: 5px;
  1278. border: 1px solid white;
  1279. border-top: transparent;
  1280. border-right: transparent;
  1281. text-align: center;
  1282. display: block;
  1283. position: absolute;
  1284. top: 3px;
  1285. left: 2px;
  1286. transform: rotate(-45deg);
  1287. border-radius: 0px;
  1288. background: none;
  1289. }
  1290. }
  1291. }
  1292. .button-margin {
  1293. margin: 20px 0 0;
  1294. }
  1295. .quote-tips {
  1296. font-size: 16px;
  1297. a {
  1298. color: #6495ed;
  1299. text-decoration: underline;
  1300. margin-left: 5px;
  1301. }
  1302. }
  1303. button {
  1304. font-size: 12px;
  1305. width: 200px;
  1306. height: 30px;
  1307. border-radius: 5px;
  1308. margin-right: 20px;
  1309. cursor: pointer;
  1310. border: none;
  1311. box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  1312. }
  1313. .button-black {
  1314. background-color: $deep-blue;
  1315. color: #ffffff;
  1316. &:hover {
  1317. background-color: #013269;
  1318. }
  1319. }
  1320. .button-white {
  1321. background-color: #fff;
  1322. color: #50596b;
  1323. img,
  1324. span {
  1325. vertical-align: middle;
  1326. }
  1327. }
  1328. // 报价图片弹框样式
  1329. :deep(.price-to-img-dialog) {
  1330. min-width: 840px;
  1331. margin-top: 2vh !important;
  1332. .el-dialog__header {
  1333. background-color: #00213b;
  1334. padding: 10px 20px;
  1335. .el-dialog__title {
  1336. color: #fff;
  1337. }
  1338. .el-dialog__headerbtn {
  1339. top: 15px;
  1340. }
  1341. }
  1342. .el-dialog__body {
  1343. background-color: #f1f4f9;
  1344. padding: 13px 20px;
  1345. }
  1346. .tips {
  1347. font-size: 16px;
  1348. color: #00213b;
  1349. margin: 12px 0;
  1350. }
  1351. .btn-wrap {
  1352. text-align: left;
  1353. .button-black {
  1354. margin-top: 20px;
  1355. }
  1356. }
  1357. }
  1358. :deep(.el-switch) {
  1359. .el-switch__label {
  1360. position: absolute;
  1361. display: none;
  1362. color: #fff !important;
  1363. }
  1364. /*打开时文字位置设置*/
  1365. .el-switch__label--right {
  1366. z-index: 1;
  1367. right: -3px;
  1368. }
  1369. /*关闭时文字位置设置*/
  1370. .el-switch__label--left {
  1371. z-index: 1;
  1372. left: 20px;
  1373. }
  1374. /*显示文字*/
  1375. .el-switch__label.is-active {
  1376. display: block;
  1377. }
  1378. .el-switch .el-switch__core,
  1379. .el-switch .el-switch__label {
  1380. width: 50px !important;
  1381. }
  1382. .el-switch__label * {
  1383. font-size: 13px !important;
  1384. }
  1385. }
  1386. </style>