product-quote.js 98 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571
  1. exports.ids = [26,24,33,35,36,39,40];
  2. exports.modules = {
  3. /***/ 167:
  4. /***/ (function(module, exports) {
  5. // Exports
  6. module.exports = {
  7. };
  8. /***/ }),
  9. /***/ 168:
  10. /***/ (function(module, exports) {
  11. // Exports
  12. module.exports = {
  13. };
  14. /***/ }),
  15. /***/ 169:
  16. /***/ (function(module, exports) {
  17. // Exports
  18. module.exports = {
  19. };
  20. /***/ }),
  21. /***/ 170:
  22. /***/ (function(module, exports) {
  23. // Exports
  24. module.exports = {
  25. };
  26. /***/ }),
  27. /***/ 178:
  28. /***/ (function(module, exports) {
  29. // Exports
  30. module.exports = {
  31. };
  32. /***/ }),
  33. /***/ 183:
  34. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  35. "use strict";
  36. // ESM COMPAT FLAG
  37. __webpack_require__.r(__webpack_exports__);
  38. // CONCATENATED MODULE: ./node_modules/babel-loader/lib??ref--2-0!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/@nuxt/components/dist/loader.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./components/TabNav.vue?vue&type=template&id=8a32da06&scoped=true
  39. var render = function render() {
  40. var _vm = this,
  41. _c = _vm._self._c;
  42. return _c('div', {
  43. staticClass: "tabs",
  44. style: {
  45. marginTop: _vm.marginTop + 'px',
  46. marginBottom: _vm.marginBottom + 'px',
  47. fontSize: _vm.fontSize + 'px'
  48. }
  49. }, [_vm._ssrNode(Array.isArray(_vm.tabList) ? "<ul" + _vm._ssrClass(null, _vm.borderType) + " data-v-8a32da06>" + _vm._ssrList(_vm.tabList, function (item, i) {
  50. return !item.hasOwnProperty('isShow') || item.isShow ? "<li" + _vm._ssrClass(null, {
  51. active: i === _vm.currTab
  52. }) + _vm._ssrStyle(null, {
  53. minWidth: _vm.liWidth + 'px',
  54. height: _vm.liHeight + 'px',
  55. lineHeight: _vm.liHeight + 'px',
  56. marginRight: _vm.marginRight + 'px'
  57. }, null) + " data-v-8a32da06><div data-v-8a32da06>" + _vm._ssrEscape(_vm._s(item.name)) + "</div></li>" : "<!---->";
  58. }) + _vm._ssrList(_vm.comRemaining, function (item) {
  59. return "<li class=\"unclickable\"" + _vm._ssrStyle(null, {
  60. minWidth: _vm.liWidth + 'px',
  61. lineHeight: _vm.liHeight + 'px',
  62. marginRight: _vm.marginRight + 'px'
  63. }, null) + " data-v-8a32da06><div data-v-8a32da06>" + _vm._ssrEscape(_vm._s(item)) + "</div></li>";
  64. }) + "</ul>" : "<ul data-v-8a32da06>" + _vm._ssrList(Object.keys(_vm.tabList), function (val, i) {
  65. return "<li" + _vm._ssrClass(null, {
  66. active: i === _vm.currTab
  67. }) + _vm._ssrStyle(null, {
  68. minWidth: _vm.liWidth + 'px',
  69. marginRight: _vm.marginRight + 'px'
  70. }, null) + " data-v-8a32da06><div data-v-8a32da06>" + _vm._ssrEscape(_vm._s(val)) + "</div></li>";
  71. }) + "</ul>")]);
  72. };
  73. var staticRenderFns = [];
  74. // CONCATENATED MODULE: ./components/TabNav.vue?vue&type=template&id=8a32da06&scoped=true
  75. // CONCATENATED MODULE: ./node_modules/babel-loader/lib??ref--2-0!./node_modules/@nuxt/components/dist/loader.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./components/TabNav.vue?vue&type=script&lang=js
  76. /* harmony default export */ var TabNavvue_type_script_lang_js = ({
  77. props: {
  78. // color: {
  79. // type: String,
  80. // },
  81. borderType: {
  82. type: String,
  83. default: 'noBorder'
  84. },
  85. fontSize: {
  86. type: Number,
  87. default: 14
  88. },
  89. marginTop: {
  90. type: Number,
  91. default: 0
  92. },
  93. marginBottom: {
  94. type: Number,
  95. default: 10
  96. },
  97. liWidth: {
  98. type: Number,
  99. default: 0
  100. },
  101. liHeight: {
  102. type: Number,
  103. default: 28
  104. },
  105. marginRight: {
  106. type: Number,
  107. default: 0
  108. },
  109. currTab: {
  110. type: [Number, String],
  111. default: 0
  112. },
  113. tabList: {
  114. type: [Array, Object],
  115. default: () => {
  116. return [];
  117. }
  118. },
  119. allPrintTab: {
  120. type: [Array, Object],
  121. default: () => {
  122. return [];
  123. }
  124. }
  125. },
  126. data() {
  127. return {
  128. textColor: 'red'
  129. };
  130. },
  131. computed: {
  132. comRemaining() {
  133. const mapTabList = this.tabList.map(i => i.name);
  134. return this.allPrintTab.filter(element => !mapTabList.includes(element));
  135. }
  136. },
  137. methods: {
  138. selTab(i) {
  139. this.$emit('update:currTab', i);
  140. this.$emit('handle');
  141. }
  142. }
  143. });
  144. // CONCATENATED MODULE: ./components/TabNav.vue?vue&type=script&lang=js
  145. /* harmony default export */ var components_TabNavvue_type_script_lang_js = (TabNavvue_type_script_lang_js);
  146. // EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
  147. var componentNormalizer = __webpack_require__(2);
  148. // CONCATENATED MODULE: ./components/TabNav.vue
  149. function injectStyles (context) {
  150. var style0 = __webpack_require__(191)
  151. if (style0.__inject__) style0.__inject__(context)
  152. }
  153. /* normalize component */
  154. var component = Object(componentNormalizer["a" /* default */])(
  155. components_TabNavvue_type_script_lang_js,
  156. render,
  157. staticRenderFns,
  158. false,
  159. injectStyles,
  160. "8a32da06",
  161. "1ce05afc"
  162. )
  163. /* harmony default export */ var TabNav = __webpack_exports__["default"] = (component.exports);
  164. /***/ }),
  165. /***/ 188:
  166. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  167. "use strict";
  168. __webpack_require__.r(__webpack_exports__);
  169. /* harmony import */ var _node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_0_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_sass_loader_dist_cjs_js_ref_7_oneOf_1_2_node_modules_nuxt_components_dist_loader_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_NewPriceTable_vue_vue_type_style_index_0_id_8da20436_prod_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(167);
  170. /* harmony import */ var _node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_0_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_sass_loader_dist_cjs_js_ref_7_oneOf_1_2_node_modules_nuxt_components_dist_loader_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_NewPriceTable_vue_vue_type_style_index_0_id_8da20436_prod_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_0_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_sass_loader_dist_cjs_js_ref_7_oneOf_1_2_node_modules_nuxt_components_dist_loader_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_NewPriceTable_vue_vue_type_style_index_0_id_8da20436_prod_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__);
  171. /* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_0_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_sass_loader_dist_cjs_js_ref_7_oneOf_1_2_node_modules_nuxt_components_dist_loader_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_NewPriceTable_vue_vue_type_style_index_0_id_8da20436_prod_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__) if(["default"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_0_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_sass_loader_dist_cjs_js_ref_7_oneOf_1_2_node_modules_nuxt_components_dist_loader_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_NewPriceTable_vue_vue_type_style_index_0_id_8da20436_prod_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
  172. /***/ }),
  173. /***/ 189:
  174. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  175. "use strict";
  176. __webpack_require__.r(__webpack_exports__);
  177. /* harmony import */ var _node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_0_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_sass_loader_dist_cjs_js_ref_7_oneOf_1_2_node_modules_nuxt_components_dist_loader_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_TotalTable_vue_vue_type_style_index_0_id_8afd0988_prod_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(168);
  178. /* harmony import */ var _node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_0_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_sass_loader_dist_cjs_js_ref_7_oneOf_1_2_node_modules_nuxt_components_dist_loader_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_TotalTable_vue_vue_type_style_index_0_id_8afd0988_prod_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_0_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_sass_loader_dist_cjs_js_ref_7_oneOf_1_2_node_modules_nuxt_components_dist_loader_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_TotalTable_vue_vue_type_style_index_0_id_8afd0988_prod_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__);
  179. /* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_0_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_sass_loader_dist_cjs_js_ref_7_oneOf_1_2_node_modules_nuxt_components_dist_loader_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_TotalTable_vue_vue_type_style_index_0_id_8afd0988_prod_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__) if(["default"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_0_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_sass_loader_dist_cjs_js_ref_7_oneOf_1_2_node_modules_nuxt_components_dist_loader_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_TotalTable_vue_vue_type_style_index_0_id_8afd0988_prod_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
  180. /***/ }),
  181. /***/ 190:
  182. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  183. "use strict";
  184. __webpack_require__.r(__webpack_exports__);
  185. /* harmony import */ var _node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_0_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_sass_loader_dist_cjs_js_ref_7_oneOf_1_2_node_modules_nuxt_components_dist_loader_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_UnitTable_vue_vue_type_style_index_0_id_931e8840_prod_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(169);
  186. /* harmony import */ var _node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_0_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_sass_loader_dist_cjs_js_ref_7_oneOf_1_2_node_modules_nuxt_components_dist_loader_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_UnitTable_vue_vue_type_style_index_0_id_931e8840_prod_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_0_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_sass_loader_dist_cjs_js_ref_7_oneOf_1_2_node_modules_nuxt_components_dist_loader_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_UnitTable_vue_vue_type_style_index_0_id_931e8840_prod_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__);
  187. /* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_0_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_sass_loader_dist_cjs_js_ref_7_oneOf_1_2_node_modules_nuxt_components_dist_loader_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_UnitTable_vue_vue_type_style_index_0_id_931e8840_prod_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__) if(["default"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_0_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_sass_loader_dist_cjs_js_ref_7_oneOf_1_2_node_modules_nuxt_components_dist_loader_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_UnitTable_vue_vue_type_style_index_0_id_931e8840_prod_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
  188. /***/ }),
  189. /***/ 191:
  190. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  191. "use strict";
  192. __webpack_require__.r(__webpack_exports__);
  193. /* harmony import */ var _node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_0_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_sass_loader_dist_cjs_js_ref_7_oneOf_1_2_node_modules_nuxt_components_dist_loader_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_TabNav_vue_vue_type_style_index_0_id_8a32da06_prod_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(170);
  194. /* harmony import */ var _node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_0_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_sass_loader_dist_cjs_js_ref_7_oneOf_1_2_node_modules_nuxt_components_dist_loader_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_TabNav_vue_vue_type_style_index_0_id_8a32da06_prod_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_0_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_sass_loader_dist_cjs_js_ref_7_oneOf_1_2_node_modules_nuxt_components_dist_loader_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_TabNav_vue_vue_type_style_index_0_id_8a32da06_prod_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__);
  195. /* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_0_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_sass_loader_dist_cjs_js_ref_7_oneOf_1_2_node_modules_nuxt_components_dist_loader_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_TabNav_vue_vue_type_style_index_0_id_8a32da06_prod_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__) if(["default"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_0_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_sass_loader_dist_cjs_js_ref_7_oneOf_1_2_node_modules_nuxt_components_dist_loader_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_TabNav_vue_vue_type_style_index_0_id_8a32da06_prod_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
  196. /***/ }),
  197. /***/ 199:
  198. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  199. "use strict";
  200. // ESM COMPAT FLAG
  201. __webpack_require__.r(__webpack_exports__);
  202. // CONCATENATED MODULE: ./node_modules/babel-loader/lib??ref--2-0!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/@nuxt/components/dist/loader.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./components/table/NewPriceTable.vue?vue&type=template&id=8da20436&scoped=true
  203. var render = function render() {
  204. var _vm = this,
  205. _c = _vm._self._c;
  206. return _c('div', {
  207. staticClass: "wrap",
  208. style: {
  209. marginBottom: _vm.marginBottom + 'px'
  210. }
  211. }, [_vm._ssrNode((_vm.tableType != 'Addon' ? "<p class=\"tb-title\" data-v-8da20436>" + _vm._s(_vm.comTitle) + "</p>" : "<!---->") + " "), _vm._ssrNode("<div" + _vm._ssrClass(null, _vm.getTableContainerClass) + " data-v-8da20436>", "</div>", [_c('el-table', {
  212. ref: "elTable",
  213. staticStyle: {
  214. "width": "100%"
  215. },
  216. attrs: {
  217. "show-header": _vm.tableType != 'Addon',
  218. "data": _vm.comTableData,
  219. "header-cell-style": {
  220. backgroundColor: '#fff',
  221. fontWeight: 'normal',
  222. fontSize: '14px',
  223. fontFamily: 'Proxima Nova',
  224. color: '#000',
  225. '--comDisplayCss': _vm.comDisplayCss
  226. },
  227. "row-key": "id",
  228. "span-method": _vm.arraySpanMethod,
  229. "row-class-name": _vm.tableRowClassName
  230. },
  231. on: {
  232. "selection-change": _vm.handleSelectionChange,
  233. "select": _vm.dialogCheck
  234. }
  235. }, [_vm.tableType != 'Comparison' ? _c('el-table-column', {
  236. attrs: {
  237. "type": "selection",
  238. "width": "50",
  239. "align": "center",
  240. "reserve-selection": true,
  241. "selectable": _vm.handleSelectable
  242. }
  243. }) : _vm._e(), _vm._v(" "), _vm._l(_vm.tableColumns, function (item) {
  244. return [item.type ? _c('el-table-column', {
  245. key: item.prop,
  246. attrs: {
  247. "align": item.align ? item.align : 'left',
  248. "prop": item.prop,
  249. "label": item.label,
  250. "formatter": item.formatter,
  251. "width": item.width,
  252. "sortable": item.sortable
  253. },
  254. scopedSlots: _vm._u([{
  255. key: "default",
  256. fn: function ({
  257. row
  258. }) {
  259. return [item.type == 'radioInput' ? [_c('div', {
  260. staticClass: "flex between"
  261. }, [_c('span', [_vm._v(_vm._s(row.decName))]), _vm._v(" "), _c('el-input', {
  262. staticClass: "edit-input",
  263. attrs: {
  264. "min": "0",
  265. "max": row.max_num,
  266. "type": "number",
  267. "size": "small"
  268. },
  269. on: {
  270. "input": function ($event) {
  271. return _vm.getNumber($event, row, row.max_num);
  272. }
  273. },
  274. model: {
  275. value: row.num,
  276. callback: function ($$v) {
  277. _vm.$set(row, "num", $$v);
  278. },
  279. expression: "row.num"
  280. }
  281. })], 1)] : _c('div', [row.filter_boolean ? [_c('div', {
  282. staticClass: "triangle"
  283. }), _vm._v(" "), _c('div', {
  284. staticClass: "text"
  285. }, [_vm._v("Eco")])] : _vm._e(), _vm._v("\n " + _vm._s(row[item.prop]) + "\n "), _vm.tableType == 'Undecorated' ? _c('el-popover', {
  286. attrs: {
  287. "placement": "top-start",
  288. "trigger": "hover"
  289. }
  290. }, [_c('i', {
  291. staticClass: "el-icon-warning",
  292. attrs: {
  293. "slot": "reference"
  294. },
  295. slot: "reference"
  296. }), _vm._v(" "), _c('p', {
  297. staticClass: "popover-text"
  298. }, [_vm._v(_vm._s(_vm.comTitle))])]) : _vm._e()], 2)];
  299. }
  300. }], null, true)
  301. }) : _vm._e(), _vm._v(" "), !item.type ? _c('el-table-column', {
  302. key: item.prop,
  303. attrs: {
  304. "align": item.align ? item.align : 'center',
  305. "prop": item.prop,
  306. "label": item.label,
  307. "formatter": item.formatter,
  308. "sortable": item.sortable,
  309. "show-overflow-tooltip": "",
  310. "width": (798 - _vm.tableColumns[0].width - _vm.tableColumns[0].extraWidth) / (_vm.tableColumns.length - 1)
  311. },
  312. scopedSlots: _vm._u([{
  313. key: "default",
  314. fn: function ({
  315. row,
  316. $index
  317. }) {
  318. return [item.prop === 'website_setup' ? _c('div', [$index === 0 && _vm.tableType == 'Decoration' ? _c('div', [row['supplier_setup_id'] < 5 || row['supplier_setup_id'] == 7 ? _c('span', [_vm._v("£ " + _vm._s(row['supplier_setup'] ? parseFloat(row['supplier_setup']).toFixed(2) : "0.00"))]) : _vm._e(), _vm._v(" "), _c('span', [_vm._v(_vm._s(_vm.$_setupPriceFilter(row['supplier_setup_id'])))])]) : _c('div', [row['website_setup_id'] < 5 || row['website_setup_id'] == 7 ? _c('span', [_vm._v("£ " + _vm._s(row['website_setup'] ? parseFloat(row['website_setup']).toFixed(2) : "0.00"))]) : _vm._e(), _vm._v(" "), _c('span', [_vm._v(_vm._s(_vm.$_setupPriceFilter(row['website_setup_id'])))])])]) : _vm.judgeProp(row, item.prop, $index) == '111' || _vm.judgeProp(row, item.prop, $index) == '111.00' ? _c('div', [_vm._v("\n -\n ")]) : _vm.judgeProp(row, item.prop, $index) == '999' || _vm.judgeProp(row, item.prop, $index) === '999.00' ? _c('div', [_vm._v("\n POA\n ")]) : _vm.judgeProp(row, item.prop, $index) === '' ? _c('div', [_vm._v("0")]) : _c('div', [_vm.isNumber(_vm.judgeProp(row, item.prop, $index)) && !item.isFirstColumn ? _c('span', [_vm._v("£")]) : _vm._e(), _vm._v(" "), _c('span', [_vm._v(_vm._s(_vm.judgeProp(row, item.prop, $index)))])])];
  319. }
  320. }], null, true)
  321. }) : _vm._e()];
  322. })], 2)], 1)], 2);
  323. };
  324. var staticRenderFns = [];
  325. // CONCATENATED MODULE: ./components/table/NewPriceTable.vue?vue&type=template&id=8da20436&scoped=true
  326. // EXTERNAL MODULE: external "number-precision"
  327. var external_number_precision_ = __webpack_require__(122);
  328. // CONCATENATED MODULE: ./node_modules/babel-loader/lib??ref--2-0!./node_modules/@nuxt/components/dist/loader.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./components/table/NewPriceTable.vue?vue&type=script&lang=js
  329. /* harmony default export */ var NewPriceTablevue_type_script_lang_js = ({
  330. filters: {
  331. // Decoration Table:打印价格+附加价格
  332. multiplyPrice(a1, row, prop) {
  333. const rep = /^[0-9]+.?[0-9]*$/;
  334. if (!rep.test(a1)) {
  335. return a1;
  336. } else {
  337. return Object(external_number_precision_["times"])(a1, row.num);
  338. }
  339. },
  340. // Undecorated Table:基础价格+Decoration所选价格(包含附加价格)
  341. plusPrice(a1, a2) {
  342. return a2 ? Object(external_number_precision_["plus"])(a1, a2) : a1;
  343. },
  344. // Decoration Table:计算差价
  345. differencePrice(a1, row, prop, selectRow) {
  346. const rep = /^[0-9]+.?[0-9]*$/;
  347. if (rep.test(a1)) {
  348. const temp = prop.split('_');
  349. const supplier = +row[`supplier_${temp[1]}`];
  350. const suppliers = Object(external_number_precision_["times"])(row.num - 1, supplier);
  351. const noIncludePrice = Object(external_number_precision_["plus"])(a1, suppliers);
  352. const selSupplier = +selectRow[`supplier_${temp[1]}`];
  353. const selSuppliers = Object(external_number_precision_["times"])(selectRow.num - 1, selSupplier);
  354. const isIncludePrice = Object(external_number_precision_["plus"])(+selectRow[prop], selSuppliers);
  355. return noIncludePrice > isIncludePrice ? `+${Object(external_number_precision_["minus"])(noIncludePrice, isIncludePrice)}` : Object(external_number_precision_["minus"])(noIncludePrice, isIncludePrice);
  356. } else {
  357. return a1;
  358. }
  359. }
  360. },
  361. props: {
  362. hasDecAdd: {
  363. type: Number,
  364. default: 0
  365. },
  366. tableData: {
  367. type: Array,
  368. default: () => {
  369. return [];
  370. }
  371. },
  372. tableColumns: {
  373. type: Array,
  374. default: () => {
  375. return [];
  376. }
  377. },
  378. operateWith: {
  379. type: String,
  380. default: '100%'
  381. },
  382. isCheckBox: {
  383. type: Boolean,
  384. default: false
  385. },
  386. tableType: {
  387. type: String,
  388. default: 'Undecorated'
  389. },
  390. decorationObj: {
  391. type: Object,
  392. default: () => {
  393. return {};
  394. }
  395. },
  396. selectId: {
  397. type: Number,
  398. default: null
  399. },
  400. selectRow: {
  401. type: Object,
  402. default: () => {
  403. return {};
  404. }
  405. },
  406. multipleSelection: {
  407. type: Array,
  408. default: () => {
  409. return [];
  410. }
  411. },
  412. selectDecoration: {
  413. type: Object,
  414. default: () => {
  415. return {};
  416. }
  417. },
  418. curPrint: {
  419. type: String,
  420. default: ''
  421. },
  422. curModel: {
  423. type: String,
  424. default: ''
  425. },
  426. marginBottom: {
  427. type: Number,
  428. default: 20
  429. },
  430. decorationMultiple: {
  431. type: Number,
  432. default: 1
  433. },
  434. headerShow: {
  435. type: Boolean,
  436. default: true
  437. }
  438. },
  439. data() {
  440. return {
  441. setupConfigList: [{
  442. id: 1,
  443. name: '/col'
  444. }, {
  445. id: 2,
  446. name: '/desgin'
  447. }, {
  448. id: 3,
  449. name: '/pos'
  450. }, {
  451. id: 4,
  452. name: '/pos desgin'
  453. }, {
  454. id: 5,
  455. name: 'POA'
  456. }, {
  457. id: 6,
  458. name: 'Waived'
  459. }],
  460. setupTitleList: ['1st', '2nd', '3rd']
  461. };
  462. },
  463. computed: {
  464. getTableContainerClass() {
  465. // 根据tableType的值返回不同的class
  466. return {
  467. 'table-container': true,
  468. 'border-Decoration': this.tableType === 'Decoration' && this.hasDecAdd
  469. };
  470. },
  471. comTitle() {
  472. if (this.tableType === 'Undecorated') {
  473. return `Includes ${this.curModel}`;
  474. } else if (this.tableType === 'Decoration') {
  475. return `Add-Ons`;
  476. } else {
  477. return this.curPrint;
  478. }
  479. },
  480. comDisplayCss() {
  481. return this.tableType === 'Comparison' ? '1px solid #efefef' : 'none';
  482. },
  483. comMultipleSelID() {
  484. return this.multipleSelection.map(i => i.id);
  485. },
  486. comTableData() {
  487. if (this.tableType === 'Decoration') {
  488. return this.tableData;
  489. } else {
  490. return this.tableData;
  491. }
  492. }
  493. },
  494. mounted() {
  495. // 初始勾上默认选择打印项
  496. if (JSON.stringify(this.selectRow) !== '{}') {
  497. this.$refs.elTable.toggleRowSelection(this.selectRow);
  498. }
  499. },
  500. methods: {
  501. judgeProp(row, prop, $index) {
  502. if ($index === 0 && this.tableType === 'Decoration') {
  503. const temp = prop.split('_');
  504. return row[`supplier_${temp[1]}`];
  505. } else {
  506. return row[prop];
  507. }
  508. },
  509. $_setupPriceFilter(setupPriceID) {
  510. const result = this.setupConfigList.filter(item => item.id === setupPriceID);
  511. return result.length > 0 ? result[0].name : '';
  512. },
  513. isNumber(val) {
  514. const rep = /^[0-9]+.?[0-9]*$/;
  515. return rep.test(val);
  516. },
  517. /* 暂不实现此功能
  518. //点击table栏时选中按钮
  519. handleCurrentChange(currentRow, oldCurrentRow) {
  520. this.$refs.elTable.clearSelection()
  521. this.$emit('update:selectId', currentRow.id)
  522. this.addCar(currentRow)
  523. },
  524. */
  525. // table全选
  526. handleSelectionChange(val) {
  527. this.$emit('update:multipleSelection', val);
  528. },
  529. dialogCheck(selection, row) {
  530. if (this.isCheckBox) return; // 是多选框返回
  531. this.$refs.elTable.clearSelection();
  532. // 初始化
  533. if (selection.length === 0) {
  534. this.$emit('update:selectId', null);
  535. this.$emit('update:selectRow', {});
  536. return;
  537. }
  538. if (row) {
  539. this.$emit('update:selectId', row.id);
  540. this.$emit('update:selectRow', row);
  541. this.$refs.elTable.toggleRowSelection(row, true);
  542. }
  543. },
  544. addCar(currentRow) {
  545. // 加入购物车需要parentId
  546. const selrow = Object.assign({}, currentRow);
  547. selrow.parentId = this.decorationObj.parentId;
  548. this.$emit('update:selectRow', selrow);
  549. this.$refs.elTable.toggleRowSelection(currentRow);
  550. },
  551. getRowKey(row) {
  552. return row.id;
  553. },
  554. arraySpanMethod({
  555. row,
  556. column,
  557. rowIndex,
  558. columnIndex
  559. }) {
  560. // 隐藏'Decoration'选项框
  561. if (this.tableType === 'Decoration' && columnIndex === 0) {
  562. return [0, 1];
  563. }
  564. if (this.tableType === 'Decoration' && columnIndex === 1) {
  565. return [1, 2];
  566. }
  567. },
  568. tableRowClassName({
  569. row
  570. }) {
  571. if (this.tableType === 'Decoration') {
  572. return this.decorationMultiple ? 'borderNone' : 'hiddenRow';
  573. }
  574. return 'fontBold';
  575. },
  576. handleSelectable(row, index) {
  577. // website_setup_id 5为POA,不可选
  578. return row.website_setup_id !== 5;
  579. },
  580. getNumber(e, row, max) {
  581. if (parseInt(e) > max) {
  582. row.num = max;
  583. }
  584. }
  585. }
  586. });
  587. // CONCATENATED MODULE: ./components/table/NewPriceTable.vue?vue&type=script&lang=js
  588. /* harmony default export */ var table_NewPriceTablevue_type_script_lang_js = (NewPriceTablevue_type_script_lang_js);
  589. // EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
  590. var componentNormalizer = __webpack_require__(2);
  591. // CONCATENATED MODULE: ./components/table/NewPriceTable.vue
  592. function injectStyles (context) {
  593. var style0 = __webpack_require__(188)
  594. if (style0.__inject__) style0.__inject__(context)
  595. }
  596. /* normalize component */
  597. var component = Object(componentNormalizer["a" /* default */])(
  598. table_NewPriceTablevue_type_script_lang_js,
  599. render,
  600. staticRenderFns,
  601. false,
  602. injectStyles,
  603. "8da20436",
  604. "518290f4"
  605. )
  606. /* harmony default export */ var NewPriceTable = __webpack_exports__["default"] = (component.exports);
  607. /***/ }),
  608. /***/ 200:
  609. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  610. "use strict";
  611. // ESM COMPAT FLAG
  612. __webpack_require__.r(__webpack_exports__);
  613. // CONCATENATED MODULE: ./node_modules/babel-loader/lib??ref--2-0!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/@nuxt/components/dist/loader.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./components/table/TotalTable.vue?vue&type=template&id=8afd0988&scoped=true
  614. var render = function render() {
  615. var _vm = this,
  616. _c = _vm._self._c;
  617. return _c('div', {
  618. staticClass: "wrap"
  619. }, [_vm._ssrNode("<p" + _vm._ssrClass("tb-title", {
  620. 'left': _vm.tableType
  621. }) + " data-v-8afd0988><span data-v-8afd0988>" + _vm._ssrEscape(_vm._s(_vm.title)) + "</span> " + (_vm.title == 'Sell Price' && _vm.comLocationNum !== 1 ? "<span" + _vm._ssrStyle(null, {
  622. width: _vm.comWidth + 'px'
  623. }, null) + " data-v-8afd0988>Total</span>" : "<!---->") + "</p> "), _c('el-table', {
  624. ref: "elTable",
  625. attrs: {
  626. "border": "",
  627. "data": _vm.tableData,
  628. "header-cell-style": {
  629. backgroundColor: '#fff',
  630. color: '#606266',
  631. fontWeight: 500,
  632. fontSize: '16px'
  633. },
  634. "stripe": ""
  635. }
  636. }, _vm._l(_vm.tableColumns, function (item, index) {
  637. return _c('el-table-column', {
  638. key: `${_vm.curOrder}-${item.prop}`,
  639. attrs: {
  640. "align": item.align ? item.align : 'center',
  641. "prop": item.prop,
  642. "label": item.label,
  643. "formatter": item.formatter,
  644. "sortable": item.sortable
  645. },
  646. scopedSlots: _vm._u([{
  647. key: "header",
  648. fn: function (scope) {
  649. return [_vm.title == 'Buy Price' && _vm.comLocationNum === 1 ? _c('div', [_c('el-input', {
  650. directives: [{
  651. name: "show",
  652. rawName: "v-show",
  653. value: !item.isFirstColumn,
  654. expression: "!item.isFirstColumn"
  655. }],
  656. attrs: {
  657. "size": "small",
  658. "type": "number",
  659. "min": _vm.min
  660. },
  661. on: {
  662. "blur": function ($event) {
  663. return _vm.getNumber($event, index);
  664. }
  665. },
  666. model: {
  667. value: item.label,
  668. callback: function ($$v) {
  669. _vm.$set(item, "label", $$v);
  670. },
  671. expression: "item.label"
  672. }
  673. }), _vm._v(" "), _c('span', {
  674. directives: [{
  675. name: "show",
  676. rawName: "v-show",
  677. value: item.isFirstColumn,
  678. expression: "item.isFirstColumn"
  679. }]
  680. }, [_vm._v(_vm._s(item.label))])], 1) : _c('div', [_c('span', [_vm._v(_vm._s(item.label))])])];
  681. }
  682. }, {
  683. key: "default",
  684. fn: function (scope) {
  685. return [_vm.tableType && !item.isFirstColumn ? [_c('span', [_vm._v(_vm._s(_vm._f("differencePrice")(scope.row[item.prop], _vm.curDecoration[item.prop], _vm.indexDecoration[item.prop], _vm.poaConfig)))])] : [(typeof scope.row[item.prop] == 'string' && scope.row[item.prop].includes('.') || typeof scope.row[item.prop] == 'number') && !item.isFirstColumn ? _c('span', [_vm._v("£")]) : _vm._e(), _vm._v(" "), _c('span', [_vm._v(_vm._s(scope.row[item.prop] ? scope.row[item.prop] : '0.00'))])]];
  686. }
  687. }], null, true)
  688. });
  689. }), 1)], 2);
  690. };
  691. var staticRenderFns = [];
  692. // CONCATENATED MODULE: ./components/table/TotalTable.vue?vue&type=template&id=8afd0988&scoped=true
  693. // EXTERNAL MODULE: external "number-precision"
  694. var external_number_precision_ = __webpack_require__(122);
  695. // CONCATENATED MODULE: ./node_modules/babel-loader/lib??ref--2-0!./node_modules/@nuxt/components/dist/loader.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./components/table/TotalTable.vue?vue&type=script&lang=js
  696. /* harmony default export */ var TotalTablevue_type_script_lang_js = ({
  697. filters: {
  698. differencePrice(a, curDecoVal, indexDecoVal, poaConfig) {
  699. const rep = /^[0-9]+(\.[0-9]*)?$/;
  700. if (!rep.test(a)) {
  701. return a || 'Waived';
  702. }
  703. if (poaConfig.includes(curDecoVal) || poaConfig.includes(indexDecoVal)) {
  704. if (curDecoVal === '111' || curDecoVal === '111.00' || indexDecoVal === '111' || indexDecoVal === '111.00') {
  705. return '-';
  706. } else if (curDecoVal === '999' || curDecoVal === '999.00' || indexDecoVal === '999' || indexDecoVal === '999.00') {
  707. return 'POA';
  708. }
  709. } else if (curDecoVal === indexDecoVal) {
  710. return 0;
  711. } else if (+curDecoVal > +indexDecoVal) {
  712. return `-£ ${Object(external_number_precision_["minus"])(curDecoVal, indexDecoVal)}`;
  713. } else if (+curDecoVal < +indexDecoVal) {
  714. return `+£ ${Object(external_number_precision_["minus"])(indexDecoVal, curDecoVal)}`;
  715. } else {
  716. return 'Waived';
  717. }
  718. }
  719. },
  720. props: {
  721. tableData: {
  722. type: Array,
  723. default: () => []
  724. },
  725. tableColumns: {
  726. type: Array,
  727. default: () => []
  728. },
  729. tableType: {
  730. type: String,
  731. default: ''
  732. },
  733. curDecoration: {
  734. type: Object,
  735. default: () => {}
  736. },
  737. indexDecoration: {
  738. type: Object,
  739. default: () => {}
  740. },
  741. comLocationNum: {
  742. type: Number,
  743. default: 1
  744. },
  745. curOrder: {
  746. type: String,
  747. default: ''
  748. },
  749. min: {
  750. type: String,
  751. default: ''
  752. },
  753. title: {
  754. type: String,
  755. default: ''
  756. }
  757. },
  758. data() {
  759. return {
  760. poaConfig: ['111', '111.00', '999', '999.00']
  761. };
  762. },
  763. methods: {
  764. getNumber(e, index) {
  765. if (parseInt(e.target.value) < this.min) {
  766. this.$emit('send-idx', index);
  767. }
  768. }
  769. },
  770. computed: {
  771. comWidth() {
  772. return 800 / this.tableColumns.length - 1;
  773. }
  774. }
  775. });
  776. // CONCATENATED MODULE: ./components/table/TotalTable.vue?vue&type=script&lang=js
  777. /* harmony default export */ var table_TotalTablevue_type_script_lang_js = (TotalTablevue_type_script_lang_js);
  778. // EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
  779. var componentNormalizer = __webpack_require__(2);
  780. // CONCATENATED MODULE: ./components/table/TotalTable.vue
  781. function injectStyles (context) {
  782. var style0 = __webpack_require__(189)
  783. if (style0.__inject__) style0.__inject__(context)
  784. }
  785. /* normalize component */
  786. var component = Object(componentNormalizer["a" /* default */])(
  787. table_TotalTablevue_type_script_lang_js,
  788. render,
  789. staticRenderFns,
  790. false,
  791. injectStyles,
  792. "8afd0988",
  793. "35501f79"
  794. )
  795. /* harmony default export */ var TotalTable = __webpack_exports__["default"] = (component.exports);
  796. /***/ }),
  797. /***/ 201:
  798. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  799. "use strict";
  800. // ESM COMPAT FLAG
  801. __webpack_require__.r(__webpack_exports__);
  802. // CONCATENATED MODULE: ./node_modules/babel-loader/lib??ref--2-0!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/@nuxt/components/dist/loader.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./components/table/UnitTable.vue?vue&type=template&id=931e8840&scoped=true
  803. var render = function render() {
  804. var _vm = this,
  805. _c = _vm._self._c;
  806. return _c('div', [_vm._ssrNode("<p class=\"tb-title\" data-v-931e8840>Markup %</p> "), _c('el-table', {
  807. ref: "elTable",
  808. style: {
  809. width: _vm.operateWith
  810. },
  811. attrs: {
  812. "border": "",
  813. "data": _vm.tableData,
  814. "highlight-current-row": false,
  815. "header-cell-style": {
  816. backgroundColor: '#fff',
  817. color: '#606266',
  818. fontWeight: 500,
  819. fontSize: '16px'
  820. }
  821. }
  822. }, [_vm._l(_vm.tableColumns, function (item) {
  823. return [item.isText ? _c('el-table-column', {
  824. key: item.prop,
  825. attrs: {
  826. "align": "center",
  827. "prop": item.prop,
  828. "label": item.label,
  829. "formatter": item.formatter,
  830. "width": item.width,
  831. "sortable": item.sortable
  832. }
  833. }) : _vm._e(), _vm._v(" "), !item.isText ? _c('el-table-column', {
  834. key: item.prop,
  835. attrs: {
  836. "prop": item.prop,
  837. "label": item.label,
  838. "formatter": item.formatter,
  839. "width": item.width,
  840. "align": item.align ? item.align : 'center',
  841. "sortable": item.sortable
  842. },
  843. scopedSlots: _vm._u([{
  844. key: "default",
  845. fn: function ({
  846. row,
  847. $index
  848. }) {
  849. return [_c('el-input', {
  850. staticClass: "edit-input",
  851. attrs: {
  852. "size": "small",
  853. "type": "number",
  854. "min": "0"
  855. },
  856. on: {
  857. "input": function ($event) {
  858. return _vm.saveUnitData(row, $index);
  859. }
  860. },
  861. model: {
  862. value: row[item.prop],
  863. callback: function ($$v) {
  864. _vm.$set(row, item.prop, $$v);
  865. },
  866. expression: "row[item.prop]"
  867. }
  868. })];
  869. }
  870. }], null, true)
  871. }) : _vm._e()];
  872. })], 2)], 2);
  873. };
  874. var staticRenderFns = [];
  875. // CONCATENATED MODULE: ./components/table/UnitTable.vue?vue&type=template&id=931e8840&scoped=true
  876. // CONCATENATED MODULE: ./node_modules/babel-loader/lib??ref--2-0!./node_modules/@nuxt/components/dist/loader.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./components/table/UnitTable.vue?vue&type=script&lang=js
  877. /* harmony default export */ var UnitTablevue_type_script_lang_js = ({
  878. props: {
  879. tableData: {
  880. type: Array,
  881. default: []
  882. },
  883. tableColumns: {
  884. type: Array,
  885. default: []
  886. },
  887. operateWith: {
  888. type: String,
  889. default: "100%"
  890. },
  891. selectionShow: {
  892. type: Boolean,
  893. default: false
  894. },
  895. handleShow: {
  896. type: Boolean,
  897. default: false
  898. }
  899. },
  900. methods: {
  901. saveUnitData(row, idx) {
  902. this.tableData[idx] = row;
  903. localStorage.setItem('unit', JSON.stringify(this.tableData));
  904. }
  905. }
  906. });
  907. // CONCATENATED MODULE: ./components/table/UnitTable.vue?vue&type=script&lang=js
  908. /* harmony default export */ var table_UnitTablevue_type_script_lang_js = (UnitTablevue_type_script_lang_js);
  909. // EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
  910. var componentNormalizer = __webpack_require__(2);
  911. // CONCATENATED MODULE: ./components/table/UnitTable.vue
  912. function injectStyles (context) {
  913. var style0 = __webpack_require__(190)
  914. if (style0.__inject__) style0.__inject__(context)
  915. }
  916. /* normalize component */
  917. var component = Object(componentNormalizer["a" /* default */])(
  918. table_UnitTablevue_type_script_lang_js,
  919. render,
  920. staticRenderFns,
  921. false,
  922. injectStyles,
  923. "931e8840",
  924. "01507f2a"
  925. )
  926. /* harmony default export */ var UnitTable = __webpack_exports__["default"] = (component.exports);
  927. /***/ }),
  928. /***/ 202:
  929. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  930. "use strict";
  931. // ESM COMPAT FLAG
  932. __webpack_require__.r(__webpack_exports__);
  933. // CONCATENATED MODULE: ./node_modules/babel-loader/lib??ref--2-0!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/@nuxt/components/dist/loader.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./components/table/MailTable.vue?vue&type=template&id=13e7bb30&scoped=true
  934. var render = function render() {
  935. var _vm = this,
  936. _c = _vm._self._c;
  937. return _c('div', [_vm._ssrNode("<table border=\"1\" bordercolor=\"#000\" style=\"\\n border-collapse: collapse;\\n font-size: 14px;\\n table-layout: fixed;\\n width: 100%;\\n min-width: 800px;\\n \" data-v-13e7bb30>", "</table>", [_vm._ssrNode("<tbody data-v-13e7bb30>", "</tbody>", [_vm._ssrNode(_vm._ssrList(_vm.mailData, function (items, key, i) {
  938. return "<tr data-v-13e7bb30><td" + _vm._ssrStyle({
  939. "padding": "18px 0",
  940. "width": "40%",
  941. "text-align": "center",
  942. "color": "#000"
  943. }, (i == 1 || i == 10) && _vm.objStyle, null) + " data-v-13e7bb30>" + _vm._ssrEscape("\n " + _vm._s(key) + "\n ") + "</td> <td style=\"padding: 18px 10px\" data-v-13e7bb30>" + (typeof items == 'string' ? "<div data-v-13e7bb30>" + (items.indexOf('@') != -1 || items.indexOf('http') != -1 ? "<a" + _vm._ssrAttr("href", items) + " style=\"color: #6495ed; text-decoration: none\" data-v-13e7bb30><span data-v-13e7bb30>" + _vm._ssrEscape(_vm._s(items)) + "</span></a>" : "<span data-v-13e7bb30>" + _vm._ssrEscape(_vm._s(items)) + "</span>") + "</div>" : _vm.$utils.checkType(items) == 'Object' ? "<div style=\"\\n width: 100%;\\n display: flex;\\n justify-content: space-between;\\n \" data-v-13e7bb30>" + _vm._ssrList(items, function (item, i) {
  944. return "<div style=\"text-align: left; width: 100%\" data-v-13e7bb30>" + (key == 'QTY' ? "<span data-v-13e7bb30>" + _vm._ssrEscape(_vm._s(item)) + "</span>" : "<span data-v-13e7bb30>" + _vm._ssrEscape("$" + _vm._s(item)) + "</span>") + "</div>";
  945. }) + "</div>" : _vm._ssrList(items, function (item, i) {
  946. return "<div style=\"line-height: 20px\" data-v-13e7bb30><span data-v-13e7bb30>" + _vm._ssrEscape(_vm._s(item)) + "</span></div>";
  947. })) + "</td></tr>";
  948. }) + " "), _vm._ssrNode("<tr data-v-13e7bb30>", "</tr>", [_vm._ssrNode("<td colspan=\"2\" style=\"padding: 20px\" data-v-13e7bb30>", "</td>", [_vm._t("default")], 2)])], 2)])]);
  949. };
  950. var staticRenderFns = [];
  951. // CONCATENATED MODULE: ./components/table/MailTable.vue?vue&type=template&id=13e7bb30&scoped=true
  952. // CONCATENATED MODULE: ./node_modules/babel-loader/lib??ref--2-0!./node_modules/@nuxt/components/dist/loader.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./components/table/MailTable.vue?vue&type=script&lang=js
  953. /* harmony default export */ var MailTablevue_type_script_lang_js = ({
  954. props: {
  955. mailData: {},
  956. buyData: {}
  957. },
  958. data() {
  959. return {
  960. objStyle: {
  961. fontWeight: 'bold',
  962. backgroundColor: '#efefef'
  963. }
  964. };
  965. }
  966. });
  967. // CONCATENATED MODULE: ./components/table/MailTable.vue?vue&type=script&lang=js
  968. /* harmony default export */ var table_MailTablevue_type_script_lang_js = (MailTablevue_type_script_lang_js);
  969. // EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
  970. var componentNormalizer = __webpack_require__(2);
  971. // CONCATENATED MODULE: ./components/table/MailTable.vue
  972. function injectStyles (context) {
  973. }
  974. /* normalize component */
  975. var component = Object(componentNormalizer["a" /* default */])(
  976. table_MailTablevue_type_script_lang_js,
  977. render,
  978. staticRenderFns,
  979. false,
  980. injectStyles,
  981. "13e7bb30",
  982. "f622c4d0"
  983. )
  984. /* harmony default export */ var MailTable = __webpack_exports__["default"] = (component.exports);
  985. /***/ }),
  986. /***/ 203:
  987. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  988. "use strict";
  989. // ESM COMPAT FLAG
  990. __webpack_require__.r(__webpack_exports__);
  991. // CONCATENATED MODULE: ./node_modules/babel-loader/lib??ref--2-0!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/@nuxt/components/dist/loader.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./components/PriceToImg.vue?vue&type=template&id=2e991f10
  992. var render = function render() {
  993. var _vm = this,
  994. _c = _vm._self._c;
  995. return _c('div', {
  996. ref: "printArea",
  997. staticStyle: {
  998. "font-family": "ProximaNova-Regular",
  999. "background-color": "#fff",
  1000. "padding": "20px",
  1001. "word-break": "break-word",
  1002. "box-sizing": "border-box"
  1003. }
  1004. }, [_vm._ssrNode("<table><tbody><tr><td style=\"margin-right: 14px;\">" + (_vm.isImgSrc ? "<img" + _vm._ssrAttr("src", _vm.comInfo.image) + " width=\"320\" height=\"320\">" : "<img width=\"250\" height=\"250\">") + "</td> <td style=\"vertical-align: top;\"><p style=\"font-weight: bold;font-size: 22px;padding-bottom: 24px;color:#00213B\"><span style=\"margin-right: 5px;\">" + _vm._ssrEscape(_vm._s(_vm.pageData.product_code)) + "</span> <span>" + _vm._ssrEscape(_vm._s(_vm.pageData.product_name)) + "</span></p> <p style=\"line-height: 20px;color:#00213B;font-size: 14px;\">" + _vm._s(_vm.comInfo.description) + "</p></td></tr></tbody></table> <div><p style=\"font-weight: bold;font-size: 17px;margin: 12px 0 8px;color:#00213B\">Specifications</p> <table style=\"width:100%;border-collapse: collapse;font-size: 14px;table-layout: fixed;text-align:center;\"><tbody><tr style=\"background-color: #F7F8FC;font-weight: bold;\">" + _vm._ssrList(_vm.headerColumns, function (item, key) {
  1005. return "<td style=\"padding:10px 0;color:#00213B;width: 25%;font-size: 14px;border:1px solid #EFEFEF\">" + _vm._ssrEscape(_vm._s(item.label)) + "</td>";
  1006. }) + "</tr> <tr>" + _vm._ssrList(_vm.headerColumns, function (item, key) {
  1007. return "<td style=\"padding:10px 0 6px;color:#00213B;border:1px solid #EFEFEF\">" + (_vm.specificationsObj[item.prop] ? "<div>" + (item.prop != 'addonArr' ? "<span>" + _vm._ssrEscape(_vm._s(_vm.specificationsObj[item.prop])) + "</span>" : _vm._ssrList(_vm.specificationsObj.addonArr, function (opt, idx) {
  1008. return "<div style=\"padding-bottom:4px;\">" + _vm._ssrEscape(_vm._s(opt)) + "</div>";
  1009. })) + "</div>" : "<span>-</span>") + "</td>";
  1010. }) + "</tr></tbody></table></div> <div><p style=\"font-weight: bold;font-size: 17px;margin: 12px 0 8px;color:#00213B\">Quote</p> <table style=\"width:100%;border-collapse: collapse;font-size: 14px;table-layout: fixed;text-align:center;\"><tbody>" + (_vm.comLocationNum !== 1 ? "<tr style=\"background-color: #F7F8FC;font-weight: bold;\"><td" + _vm._ssrAttr("colspan", _vm.tableColumns.length - 1) + " style=\"padding:10px 0;color:#00213B;border:1px solid #EFEFEF\">Quote</td> <td" + _vm._ssrStyle({
  1011. "padding": "10px 0",
  1012. "color": "#00213B",
  1013. "border": "1px solid #EFEFEF"
  1014. }, {
  1015. width: _vm.comWidth
  1016. }, null) + ">Total</td></tr>" : "<!---->") + " <tr style=\"background-color: #F7F8FC;font-weight: bold;\">" + _vm._ssrList(_vm.tableColumns, function (item, key) {
  1017. return "<td" + _vm._ssrStyle({
  1018. "padding": "10px 0",
  1019. "color": "#00213B",
  1020. "border": "1px solid #EFEFEF"
  1021. }, {
  1022. width: _vm.comWidth
  1023. }, null) + ">" + _vm._ssrEscape(_vm._s(item.label)) + "</td>";
  1024. }) + "</tr> " + _vm._ssrList(_vm.tableData, function (row) {
  1025. return "<tr style=\"padding:10px 0;\">" + _vm._ssrList(_vm.tableColumns, function (column) {
  1026. return "<td" + _vm._ssrStyle({
  1027. "padding": "10px 0",
  1028. "color": "#00213B",
  1029. "border": "1px solid #EFEFEF",
  1030. "white-space": "nowrap"
  1031. }, _vm.getColumnHeaderStyle(column), null) + ">" + _vm._ssrEscape("\n " + _vm._s(row[column.prop].includes('.') ? '£' : '') + " " + _vm._s(row[column.prop] ? row[column.prop] : '0.00') + "\n ") + "</td>";
  1032. }) + "</tr>";
  1033. }) + "</tbody></table></div> " + (_vm.emailForm.Comments ? "<div style=\"color:#00213B\"><p style=\"margin: 20px 0;\">" + _vm._ssrEscape(_vm._s(_vm.emailForm.Comments)) + "</p></div>" : "<!---->"))]);
  1034. };
  1035. var staticRenderFns = [];
  1036. // CONCATENATED MODULE: ./components/PriceToImg.vue?vue&type=template&id=2e991f10
  1037. // EXTERNAL MODULE: external "html2canvas"
  1038. var external_html2canvas_ = __webpack_require__(142);
  1039. var external_html2canvas_default = /*#__PURE__*/__webpack_require__.n(external_html2canvas_);
  1040. // CONCATENATED MODULE: ./node_modules/babel-loader/lib??ref--2-0!./node_modules/@nuxt/components/dist/loader.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./components/PriceToImg.vue?vue&type=script&lang=js
  1041. /* harmony default export */ var PriceToImgvue_type_script_lang_js = ({
  1042. props: {
  1043. pageData: {
  1044. type: Object,
  1045. default: {}
  1046. },
  1047. specificationsObj: {
  1048. type: Object,
  1049. default: {}
  1050. },
  1051. tableData: {
  1052. type: Array,
  1053. default: []
  1054. },
  1055. tableColumns: {
  1056. type: Array,
  1057. default: []
  1058. },
  1059. comLocationNum: {
  1060. type: Number,
  1061. default: 1
  1062. },
  1063. emailForm: {
  1064. type: Object,
  1065. default: {}
  1066. },
  1067. loading: {
  1068. type: Boolean,
  1069. default: false
  1070. },
  1071. isImgSrc: {
  1072. type: Boolean,
  1073. default: true
  1074. },
  1075. width: {
  1076. type: String,
  1077. default: '100%'
  1078. }
  1079. },
  1080. data() {
  1081. return {
  1082. headerColumns: [{
  1083. label: "LeadTime",
  1084. prop: "time",
  1085. type: "pre" //去掉$符号
  1086. }, {
  1087. label: "Model",
  1088. prop: "model",
  1089. type: "pre" //去掉$符号
  1090. }, {
  1091. label: "Decoration",
  1092. prop: "decoration",
  1093. type: "pre" //去掉$符号
  1094. }, {
  1095. label: "Add On",
  1096. prop: "addonArr",
  1097. type: "pre" //去掉$符号
  1098. }]
  1099. };
  1100. },
  1101. computed: {
  1102. comInfo() {
  1103. var _this$pageData;
  1104. return (_this$pageData = this.pageData) === null || _this$pageData === void 0 ? void 0 : _this$pageData.main;
  1105. },
  1106. comWidth() {
  1107. return 100 / this.tableColumns.length + '%';
  1108. }
  1109. },
  1110. created() {
  1111. if (!this.isImgSrc) {
  1112. this.getBase64Image(this.comInfo.image, 'productImg');
  1113. }
  1114. },
  1115. methods: {
  1116. getColumnHeaderStyle(column) {
  1117. if (column.prop === 'project') {
  1118. return {
  1119. 'font-weight': 'bold'
  1120. };
  1121. }
  1122. return {};
  1123. },
  1124. //Base64生成产品图片,因为跨域
  1125. getBase64Image(url, ref) {
  1126. var that = this;
  1127. var image = new Image();
  1128. image.src = url + '?v=' + Math.random(); // 处理缓存
  1129. image.crossOrigin = '*'; // 支持跨域图片
  1130. image.onload = function () {
  1131. var base64 = that.drawBase64Image(image);
  1132. that.$refs[ref].src = base64;
  1133. };
  1134. },
  1135. drawBase64Image(img) {
  1136. var canvas = document.createElement('canvas');
  1137. canvas.width = img.width;
  1138. canvas.height = img.height;
  1139. var ctx = canvas.getContext('2d');
  1140. ctx.drawImage(img, 0, 0, img.width, img.height);
  1141. var dataURL = canvas.toDataURL('image/png');
  1142. return dataURL;
  1143. },
  1144. htmlToPdf(title) {
  1145. const element = this.$refs.printArea;
  1146. const clientWidth = element.offsetWidth;
  1147. const clientHeight = element.offsetHeight;
  1148. const kh = [clientWidth, clientHeight];
  1149. const opts = {
  1150. scale: 1.5,
  1151. // 缩放比例,提高生成图片清晰度
  1152. useCORS: true,
  1153. // 允许加载跨域的图片
  1154. // allowTaint: true, // 允许图片跨域,和 useCORS 二者不可共同使用
  1155. tainttest: true,
  1156. // 检测每张图片已经加载完成
  1157. logging: true // 日志开关,发布的时候记得改成 false
  1158. };
  1159. external_html2canvas_default()(element, opts).then(canvas => {
  1160. const dataURL = canvas.toDataURL('image/png');
  1161. this.downloadImage(dataURL, kh, title);
  1162. this.$emit('update:loading', false);
  1163. }).catch(() => {
  1164. this.$emit('update:loading', false);
  1165. // Bus.$emit("finishDownload");
  1166. });
  1167. },
  1168. getUrlBase64(url, kh) {
  1169. return new Promise(resolve => {
  1170. let canvas = document.createElement('canvas');
  1171. const ctx = canvas.getContext('2d');
  1172. const img = new Image();
  1173. img.crossOrigin = 'Anonymous'; // 允许跨域
  1174. img.src = url;
  1175. img.onload = () => {
  1176. // eslint-disable-next-line prefer-destructuring
  1177. canvas.height = kh[1];
  1178. // eslint-disable-next-line prefer-destructuring
  1179. canvas.width = kh[0];
  1180. ctx.drawImage(img, 0, 0, kh[0], kh[1]);
  1181. const dataURL = canvas.toDataURL('image/png');
  1182. canvas = null;
  1183. resolve(dataURL);
  1184. };
  1185. });
  1186. },
  1187. downloadImage(imgUrl, kh, title) {
  1188. this.getUrlBase64(imgUrl, kh).then(base64 => {
  1189. const link = document.createElement('a');
  1190. link.href = base64;
  1191. link.download = `${title}.png`;
  1192. link.click();
  1193. });
  1194. }
  1195. }
  1196. });
  1197. // CONCATENATED MODULE: ./components/PriceToImg.vue?vue&type=script&lang=js
  1198. /* harmony default export */ var components_PriceToImgvue_type_script_lang_js = (PriceToImgvue_type_script_lang_js);
  1199. // EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
  1200. var componentNormalizer = __webpack_require__(2);
  1201. // CONCATENATED MODULE: ./components/PriceToImg.vue
  1202. /* normalize component */
  1203. var component = Object(componentNormalizer["a" /* default */])(
  1204. components_PriceToImgvue_type_script_lang_js,
  1205. render,
  1206. staticRenderFns,
  1207. false,
  1208. null,
  1209. null,
  1210. "dda7dca6"
  1211. )
  1212. /* harmony default export */ var PriceToImg = __webpack_exports__["default"] = (component.exports);
  1213. /***/ }),
  1214. /***/ 216:
  1215. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  1216. "use strict";
  1217. __webpack_require__.r(__webpack_exports__);
  1218. /* harmony import */ var _node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_0_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_sass_loader_dist_cjs_js_ref_7_oneOf_1_2_node_modules_nuxt_components_dist_loader_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Quote_vue_vue_type_style_index_0_id_21f896fd_prod_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(178);
  1219. /* harmony import */ var _node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_0_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_sass_loader_dist_cjs_js_ref_7_oneOf_1_2_node_modules_nuxt_components_dist_loader_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Quote_vue_vue_type_style_index_0_id_21f896fd_prod_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_0_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_sass_loader_dist_cjs_js_ref_7_oneOf_1_2_node_modules_nuxt_components_dist_loader_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Quote_vue_vue_type_style_index_0_id_21f896fd_prod_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__);
  1220. /* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_0_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_sass_loader_dist_cjs_js_ref_7_oneOf_1_2_node_modules_nuxt_components_dist_loader_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Quote_vue_vue_type_style_index_0_id_21f896fd_prod_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__) if(["default"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_0_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_sass_loader_dist_cjs_js_ref_7_oneOf_1_2_node_modules_nuxt_components_dist_loader_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Quote_vue_vue_type_style_index_0_id_21f896fd_prod_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
  1221. /***/ }),
  1222. /***/ 223:
  1223. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  1224. "use strict";
  1225. // ESM COMPAT FLAG
  1226. __webpack_require__.r(__webpack_exports__);
  1227. // CONCATENATED MODULE: ./node_modules/babel-loader/lib??ref--2-0!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/@nuxt/components/dist/loader.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./components/product/Quote.vue?vue&type=template&id=21f896fd&scoped=true
  1228. var render = function render() {
  1229. var _vm = this,
  1230. _c = _vm._self._c;
  1231. return _c('div', [_vm.quoteLoadState == 0 ? _c('div', {
  1232. directives: [{
  1233. name: "loading",
  1234. rawName: "v-loading",
  1235. value: true,
  1236. expression: "true"
  1237. }],
  1238. staticClass: "com-loading"
  1239. }) : _vm.quoteLoadState == 1 ? _vm._ssrNode("<div data-v-21f896fd>", "</div>", [_c('tab-nav', {
  1240. attrs: {
  1241. "borderType": 'allBorder',
  1242. "liWidth": 100,
  1243. "liHeight": 40,
  1244. "marginRight": 5,
  1245. "currTab": _vm.curWeek,
  1246. "tabList": _vm.priceList
  1247. },
  1248. on: {
  1249. "update:currTab": function ($event) {
  1250. _vm.curWeek = $event;
  1251. },
  1252. "update:curr-tab": function ($event) {
  1253. _vm.curWeek = $event;
  1254. }
  1255. }
  1256. }), _vm._ssrNode(" "), _vm._l(_vm.priceList, function (items, indexs) {
  1257. var _items$basePrice, _items$decoration, _items$basePrice2, _items$basePrice2$ite, _items$basePrice2$ite2, _items$basePrice3, _items$basePrice3$ite, _items$basePrice3$ite2;
  1258. return _vm._ssrNode("<div" + _vm._ssrStyle(null, null, {
  1259. display: _vm.curWeek == indexs ? '' : 'none'
  1260. }) + " data-v-21f896fd>", "</div>", [_vm._ssrNode("<div data-v-21f896fd>", "</div>", [_c('tab-nav', {
  1261. attrs: {
  1262. "borderType": 'incompleteBorder',
  1263. "currTab": items.curPrint,
  1264. "tabList": items.basePrice,
  1265. "allPrintTab": _vm.allPrintTab,
  1266. "marginTop": 0,
  1267. "marginRight": 5,
  1268. "marginBottom": ((_items$basePrice = items.basePrice) === null || _items$basePrice === void 0 ? void 0 : _items$basePrice.length) > 1 ? 7 : 0
  1269. },
  1270. on: {
  1271. "update:currTab": function ($event) {
  1272. return _vm.$set(items, "curPrint", $event);
  1273. },
  1274. "update:curr-tab": function ($event) {
  1275. return _vm.$set(items, "curPrint", $event);
  1276. },
  1277. "handle": function ($event) {
  1278. return _vm.sortBy(items);
  1279. }
  1280. }
  1281. })], 1), _vm._ssrNode(" "), _vm._l(items.basePrice, function (item, index) {
  1282. var _items$decorationOrig;
  1283. return _vm._ssrNode("<div" + _vm._ssrStyle(null, null, {
  1284. display: items.curPrint == index ? '' : 'none'
  1285. }) + " data-v-21f896fd>", "</div>", [_c('new-price-table', {
  1286. attrs: {
  1287. "tableColumns": [..._vm.undecorated_columns, ...item.part_columns],
  1288. "tableData": item.data,
  1289. "tableType": 'Undecorated',
  1290. "curPrint": item.name,
  1291. "curModel": (_items$decorationOrig = items.decorationOrign[index]) === null || _items$decorationOrig === void 0 ? void 0 : _items$decorationOrig.model,
  1292. "data": items,
  1293. "selectRow": item.selectBaseRow
  1294. },
  1295. on: {
  1296. "update:selectRow": function ($event) {
  1297. return _vm.$set(item, "selectBaseRow", $event);
  1298. },
  1299. "update:select-row": function ($event) {
  1300. return _vm.$set(item, "selectBaseRow", $event);
  1301. }
  1302. }
  1303. })], 1);
  1304. }), _vm._ssrNode(" "), (_items$decoration = items.decoration) !== null && _items$decoration !== void 0 && _items$decoration.length || (_items$basePrice2 = items.basePrice) !== null && _items$basePrice2 !== void 0 && (_items$basePrice2$ite = _items$basePrice2[items.curPrint]) !== null && _items$basePrice2$ite !== void 0 && (_items$basePrice2$ite2 = _items$basePrice2$ite.decoration_addition) !== null && _items$basePrice2$ite2 !== void 0 && _items$basePrice2$ite2.length ? _c('new-price-table', {
  1305. attrs: {
  1306. "tableData": items.decoration,
  1307. "tableColumns": [..._vm.decoration_columns, ..._vm.comCurBaseColumns],
  1308. "tableType": 'Decoration',
  1309. "marginBottom": 0,
  1310. "hasDecAdd": (_items$basePrice3 = items.basePrice) === null || _items$basePrice3 === void 0 ? void 0 : (_items$basePrice3$ite = _items$basePrice3[items.curPrint]) === null || _items$basePrice3$ite === void 0 ? void 0 : (_items$basePrice3$ite2 = _items$basePrice3$ite.decoration_addition) === null || _items$basePrice3$ite2 === void 0 ? void 0 : _items$basePrice3$ite2.length
  1311. }
  1312. }) : _vm._e(), _vm._ssrNode(" "), _vm._l(items.basePrice, function (item, index) {
  1313. return _vm._ssrNode("<div" + _vm._ssrStyle(null, null, {
  1314. display: items.curPrint == index && item.decoration_addition.length ? '' : 'none'
  1315. }) + " data-v-21f896fd>", "</div>", [_c('new-price-table', {
  1316. attrs: {
  1317. "tableData": item.decoration_addition,
  1318. "tableColumns": [..._vm.addon_columns, ...item.part_columns],
  1319. "isCheckBox": true,
  1320. "tableType": 'Addon',
  1321. "multipleSelection": items.selectAdditionRow
  1322. },
  1323. on: {
  1324. "update:multipleSelection": function ($event) {
  1325. return _vm.$set(items, "selectAdditionRow", $event);
  1326. },
  1327. "update:multiple-selection": function ($event) {
  1328. return _vm.$set(items, "selectAdditionRow", $event);
  1329. }
  1330. }
  1331. })], 1);
  1332. })], 2);
  1333. })], 2) : _vm._ssrNode("<div class=\"quote-tips\" data-v-21f896fd>\n Current item prices are missing, please contact<a href=\"mailto:Info@promocollection.uk\" data-v-21f896fd>\n info@promocollection.uk</a></div>"), _vm._ssrNode(" "), _c('no-ssr', [_vm.quoteLoadState == 1 ? _c('div', [_c('mail-table', {
  1334. directives: [{
  1335. name: "show",
  1336. rawName: "v-show",
  1337. value: false,
  1338. expression: "false"
  1339. }],
  1340. ref: "mailtable",
  1341. attrs: {
  1342. "mailData": _vm.mailData
  1343. }
  1344. }, [_c('price-to-img', {
  1345. attrs: {
  1346. "pageData": _vm.pageData,
  1347. "specificationsObj": _vm.specificationsObj,
  1348. "tableData": _vm.comFilterSwitchSellData,
  1349. "tableColumns": _vm.comMergeColumns,
  1350. "comLocationNum": _vm.comLocationNum,
  1351. "emailForm": _vm.commentObj
  1352. }
  1353. })], 1), _vm._v(" "), _c('el-dialog', {
  1354. ref: "dialogRef",
  1355. attrs: {
  1356. "lock-scroll": false,
  1357. "title": "Customer Quote",
  1358. "visible": _vm.priceToImgVisible,
  1359. "custom-class": "price-to-img-dialog"
  1360. },
  1361. on: {
  1362. "update:visible": function ($event) {
  1363. _vm.priceToImgVisible = $event;
  1364. }
  1365. }
  1366. }, [_c('price-to-img', {
  1367. ref: "priceToImgRef",
  1368. attrs: {
  1369. "isImgSrc": false,
  1370. "loading": _vm.pdfLoading,
  1371. "pageData": _vm.pageData,
  1372. "specificationsObj": _vm.specificationsObj,
  1373. "tableData": _vm.comFilterSwitchSellData,
  1374. "tableColumns": _vm.comMergeColumns,
  1375. "comLocationNum": _vm.comLocationNum,
  1376. "emailForm": _vm.commentObj
  1377. },
  1378. on: {
  1379. "update:loading": function ($event) {
  1380. _vm.pdfLoading = $event;
  1381. }
  1382. }
  1383. }), _vm._v(" "), _c('p', {
  1384. staticClass: "tips"
  1385. }, [_vm._v("Change default standard comment:")]), _vm._v(" "), _c('el-input', {
  1386. model: {
  1387. value: _vm.commentObj.Comments,
  1388. callback: function ($$v) {
  1389. _vm.$set(_vm.commentObj, "Comments", $$v);
  1390. },
  1391. expression: "commentObj.Comments"
  1392. }
  1393. }), _vm._v(" "), _c('div', {
  1394. staticClass: "btn-wrap"
  1395. }, [_c('el-button', {
  1396. staticClass: "button-black button-margin",
  1397. attrs: {
  1398. "size": "medium",
  1399. "loading": _vm.pdfLoading
  1400. },
  1401. on: {
  1402. "click": _vm.handleDownloadPdf
  1403. }
  1404. }, [_vm._v("Download")])], 1)], 1), _vm._v(" "), _c('price-to-img', {
  1405. directives: [{
  1406. name: "show",
  1407. rawName: "v-show",
  1408. value: false,
  1409. expression: "false"
  1410. }],
  1411. ref: "pdf",
  1412. attrs: {
  1413. "loading": _vm.pdfLoading,
  1414. "pageData": _vm.pageData,
  1415. "specificationsObj": _vm.specificationsObj,
  1416. "tableData": _vm.comFilterSwitchSellData,
  1417. "tableColumns": _vm.comMergeColumns,
  1418. "comLocationNum": _vm.comLocationNum,
  1419. "emailForm": _vm.commentObj
  1420. },
  1421. on: {
  1422. "update:loading": function ($event) {
  1423. _vm.pdfLoading = $event;
  1424. }
  1425. }
  1426. }), _vm._v(" "), _c('dialog-XX-success', {
  1427. attrs: {
  1428. "visible": _vm.xxContentVisible,
  1429. "imgType": false,
  1430. "content": 'This quantity is below the MOQ for this product'
  1431. },
  1432. on: {
  1433. "update:visible": function ($event) {
  1434. _vm.xxContentVisible = $event;
  1435. }
  1436. }
  1437. })], 1) : _vm._e()])], 2);
  1438. };
  1439. var staticRenderFns = [];
  1440. // CONCATENATED MODULE: ./components/product/Quote.vue?vue&type=template&id=21f896fd&scoped=true
  1441. // EXTERNAL MODULE: external "vuex"
  1442. var external_vuex_ = __webpack_require__(6);
  1443. // EXTERNAL MODULE: external "lodash"
  1444. var external_lodash_ = __webpack_require__(141);
  1445. var external_lodash_default = /*#__PURE__*/__webpack_require__.n(external_lodash_);
  1446. // EXTERNAL MODULE: external "number-precision"
  1447. var external_number_precision_ = __webpack_require__(122);
  1448. // EXTERNAL MODULE: ./components/table/NewPriceTable.vue + 4 modules
  1449. var NewPriceTable = __webpack_require__(199);
  1450. // EXTERNAL MODULE: ./components/table/TotalTable.vue + 4 modules
  1451. var TotalTable = __webpack_require__(200);
  1452. // EXTERNAL MODULE: ./components/table/UnitTable.vue + 4 modules
  1453. var UnitTable = __webpack_require__(201);
  1454. // EXTERNAL MODULE: ./components/table/MailTable.vue + 4 modules
  1455. var MailTable = __webpack_require__(202);
  1456. // EXTERNAL MODULE: ./components/DIalogXXSuccess.vue + 4 modules
  1457. var DIalogXXSuccess = __webpack_require__(30);
  1458. // CONCATENATED MODULE: ./node_modules/babel-loader/lib??ref--2-0!./node_modules/@nuxt/components/dist/loader.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./components/product/Quote.vue?vue&type=script&lang=js
  1459. /* harmony default export */ var Quotevue_type_script_lang_js = ({
  1460. components: {
  1461. NewPriceTable: NewPriceTable["default"],
  1462. TotalTable: TotalTable["default"],
  1463. UnitTable: UnitTable["default"],
  1464. MailTable: MailTable["default"],
  1465. 'dialog-XX-success': DIalogXXSuccess["default"]
  1466. },
  1467. props: {
  1468. pageData: {
  1469. type: Object,
  1470. default: () => {
  1471. return {};
  1472. }
  1473. },
  1474. id: {
  1475. type: Number,
  1476. default: null
  1477. }
  1478. },
  1479. data() {
  1480. return {
  1481. quoteLoadState: 0,
  1482. curWeek: 0,
  1483. allPrintTab: [],
  1484. priceList: [],
  1485. initZeroObj: {},
  1486. initSetupObj: {},
  1487. initUnitObj: {},
  1488. initChangeUnitObj: {},
  1489. initFrightObj: {},
  1490. initTotalObj: {},
  1491. xxContentVisible: false,
  1492. setup_switch: false,
  1493. freight_switch: false,
  1494. weight: {},
  1495. undecorated_columns: [{
  1496. label: 'MODEL',
  1497. prop: 'model',
  1498. type: 'text',
  1499. align: 'left',
  1500. width: 150,
  1501. extraWidth: 50,
  1502. // 配合组件 (820-tableColumns[0].width-tableColumns[0].extraWidth)/(tableColumns.length-1)
  1503. isFirstColumn: true // 去掉$符号
  1504. }, {
  1505. label: 'SETUP',
  1506. prop: 'website_setup'
  1507. }],
  1508. decoration_columns: [{
  1509. label: 'PRINT OPTION',
  1510. prop: 'dec_code',
  1511. type: 'radioInput',
  1512. align: 'left',
  1513. width: 150,
  1514. extraWidth: 50
  1515. }, {
  1516. label: 'SETUP',
  1517. prop: 'website_setup'
  1518. }],
  1519. addon_columns: [{
  1520. label: 'Addon',
  1521. prop: 'name',
  1522. type: 'text',
  1523. width: 150,
  1524. extraWidth: 50,
  1525. isFirstColumn: true // 去掉$符号
  1526. }, {
  1527. label: 'Setup',
  1528. prop: 'website_setup'
  1529. }],
  1530. buy_columns: [{
  1531. label: 'QTY',
  1532. prop: 'project',
  1533. isFirstColumn: true // 去掉$符号
  1534. }],
  1535. unit_columns: [{
  1536. label: 'QTY',
  1537. prop: 'total',
  1538. align: 'left',
  1539. isText: true
  1540. }],
  1541. buyData: [{
  1542. project: 'Setup'
  1543. }, {
  1544. project: 'Unit'
  1545. }, {
  1546. project: 'Freight'
  1547. }, {
  1548. project: 'Total'
  1549. }],
  1550. unitData: [{
  1551. total: 'Unit Rate %'
  1552. }, {
  1553. total: 'Setup %'
  1554. }, {
  1555. total: 'Freight %'
  1556. }],
  1557. sellData: [{
  1558. project: 'Postcode',
  1559. summary: '-'
  1560. }, {
  1561. project: 'Setup',
  1562. summary: 0.00
  1563. }, {
  1564. project: 'Unit',
  1565. summary: 0.00
  1566. }, {
  1567. project: 'Freight',
  1568. summary: 0.00
  1569. }, {
  1570. project: 'Total',
  1571. summary: 0.00
  1572. }],
  1573. POA_Config: ['111', '111.00', '999', '999.00'],
  1574. enquiryFormVisible: false,
  1575. enquiryForm: {
  1576. Name: '',
  1577. Email: '',
  1578. Phone: '',
  1579. 'Customer manager': null,
  1580. Comments: ''
  1581. },
  1582. enquiryConfig: [{
  1583. prop: 'Name',
  1584. type: 'input'
  1585. }, {
  1586. prop: 'Email',
  1587. type: 'input'
  1588. }, {
  1589. prop: 'Phone',
  1590. type: 'input'
  1591. }, {
  1592. prop: 'Customer manager',
  1593. type: 'select',
  1594. selectlist: [],
  1595. isShow: true
  1596. }, {
  1597. prop: 'Comments',
  1598. type: 'textarea'
  1599. }],
  1600. rules: {
  1601. Name: [{
  1602. required: true,
  1603. message: 'Please enter',
  1604. trigger: 'blur'
  1605. }],
  1606. Email: [{
  1607. required: true,
  1608. message: 'Please enter the correct format',
  1609. pattern: /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+((.[a-zA-Z0-9_-]{2,3}){1,2})$/,
  1610. trigger: 'blur'
  1611. }],
  1612. Phone: [{
  1613. required: true,
  1614. message: 'Please enter the correct format',
  1615. // pattern: /^1[0-9]{10}$/,
  1616. trigger: 'blur'
  1617. }],
  1618. 'Customer manager': [{
  1619. required: true,
  1620. message: 'Please select',
  1621. trigger: 'change'
  1622. }]
  1623. },
  1624. mailData: {
  1625. Url: ''
  1626. },
  1627. priceToImgVisible: false,
  1628. downloadDialogVisible: false,
  1629. commentObj: {
  1630. 'Email Address': '',
  1631. Comments: ''
  1632. },
  1633. enquiryConfig1: [{
  1634. prop: 'Email Address',
  1635. type: 'input'
  1636. }, {
  1637. prop: 'Comments',
  1638. type: 'input'
  1639. }],
  1640. rules1: {
  1641. 'Email Address': [{
  1642. required: true,
  1643. message: 'Please enter the correct format',
  1644. pattern: /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+((.[a-zA-Z0-9_-]{2,3}){1,2})$/,
  1645. trigger: 'blur'
  1646. }]
  1647. },
  1648. specificationsObj: {
  1649. time: null,
  1650. model: null,
  1651. decoration: null,
  1652. addonArr: null
  1653. },
  1654. pdfLoading: false
  1655. };
  1656. },
  1657. computed: {
  1658. ...Object(external_vuex_["mapState"])('config', {
  1659. configInfo: state => state.configInfo
  1660. }),
  1661. userInfo() {
  1662. return this.$store.state.userInfo;
  1663. },
  1664. comCurWeekPrice() {
  1665. return this.priceList[this.curWeek] || {};
  1666. },
  1667. comCurPrint() {
  1668. return this.comCurWeekPrice.curPrint;
  1669. },
  1670. comCurBasePrice() {
  1671. return this.comCurWeekPrice.basePrice[this.comCurPrint];
  1672. },
  1673. comLocationNum() {
  1674. return +this.comCurWeekPrice.basePrice[this.comCurPrint].locationNum;
  1675. },
  1676. comCurBaseColumns() {
  1677. return this.comCurBasePrice.part_columns;
  1678. },
  1679. comCurBaseTotalColumns() {
  1680. const d = this.comCurWeekPrice.basePrice[this.comCurPrint].total_part_columns;
  1681. const n = this.comLocationNum;
  1682. if (n === 1) {
  1683. return d;
  1684. } else {
  1685. const concatAdd = [...d, ...this.comCurWeekPrice.basePrice[this.comCurPrint].remainingAttr].slice(0, n);
  1686. return concatAdd;
  1687. }
  1688. },
  1689. comTotalLabel() {
  1690. // 计算所有元素label的和
  1691. return this.comCurBaseTotalColumns.reduce((sum, item) => sum + Number(item.label), 0);
  1692. },
  1693. comSummaryColumns() {
  1694. return [{
  1695. label: this.comTotalLabel.toString(),
  1696. prop: 'summary'
  1697. }];
  1698. },
  1699. comAttributeList() {
  1700. var _this$comCurBaseTotal;
  1701. const obj = {};
  1702. (_this$comCurBaseTotal = this.comCurBaseTotalColumns) === null || _this$comCurBaseTotal === void 0 ? void 0 : _this$comCurBaseTotal.forEach(item => {
  1703. obj[item.prop] = item.label;
  1704. });
  1705. obj.summary = this.comTotalLabel;
  1706. return obj;
  1707. },
  1708. // 当前已选基础价
  1709. comBasePrice() {
  1710. return this.comCurBasePrice.selectBaseRow;
  1711. },
  1712. // 当前累加打印价
  1713. comDecoPrice() {
  1714. var _this$comCurWeekPrice;
  1715. if (!((_this$comCurWeekPrice = this.comCurWeekPrice.decoration) !== null && _this$comCurWeekPrice !== void 0 && _this$comCurWeekPrice.length)) {
  1716. return [];
  1717. }
  1718. const arr = this.comCurWeekPrice.decoration.map((item, idx) => {
  1719. const obj = {};
  1720. if (+item.num > 0) {
  1721. for (const i in this.initUnitObj) {
  1722. if (idx === 0) {
  1723. // 首个打印价要取附加价计算
  1724. const keyArr = i.split('_');
  1725. const supplier_val = item[`supplier_${keyArr[1]}`];
  1726. if (this.POA_Config.includes(supplier_val)) {
  1727. obj[`${i}`] = supplier_val;
  1728. } else {
  1729. obj[`${i}`] = Object(external_number_precision_["times"])(+supplier_val, item.num);
  1730. }
  1731. } else {
  1732. obj[`${i}`] = this.POA_Config.includes(item[i]) ? item[i] : Object(external_number_precision_["times"])(+item[i], item.num);
  1733. }
  1734. }
  1735. }
  1736. return obj;
  1737. }).filter(obj => Object.keys(obj).length !== 0);
  1738. return arr;
  1739. },
  1740. comBuyData() {
  1741. this.calculateBuyData();
  1742. return this.buyData;
  1743. },
  1744. comNoSumCol() {
  1745. return [...this.buy_columns, ...this.comCurBaseTotalColumns];
  1746. },
  1747. comHasSumCol() {
  1748. return [...this.buy_columns, ...this.comCurBaseTotalColumns, ...this.comSummaryColumns];
  1749. },
  1750. comMergeColumns() {
  1751. return this.comLocationNum == 1 ? this.comNoSumCol : this.comHasSumCol;
  1752. },
  1753. comSellData() {
  1754. if (Object.keys(this.comAttributeList).length !== 0) {
  1755. this.calculateSellData();
  1756. }
  1757. return this.sellData;
  1758. },
  1759. comFilterSwitchSellData() {
  1760. var _this$comSellData;
  1761. return (_this$comSellData = this.comSellData) === null || _this$comSellData === void 0 ? void 0 : _this$comSellData.filter((item, i) => {
  1762. if (i === 1 && this.setup_switch) {
  1763. return false;
  1764. } else if (i === 3 && this.freight_switch) {
  1765. return false;
  1766. } else {
  1767. return item;
  1768. }
  1769. });
  1770. }
  1771. },
  1772. methods: {
  1773. ...Object(external_vuex_["mapActions"])(['getUserInfo']),
  1774. getQuote() {
  1775. this.$axios.post('/uk-api/quote/pricequote', {
  1776. id: this.id
  1777. }).then(res => {
  1778. if (localStorage.getItem('unit')) {
  1779. this.unitData = JSON.parse(localStorage.getItem('unit'));
  1780. }
  1781. const {
  1782. attributeList,
  1783. priceList,
  1784. default: defaultID
  1785. } = res.result;
  1786. if (!Object.keys(attributeList).length || !Object.keys(priceList).length) {
  1787. this.quoteLoadState = 2;
  1788. return;
  1789. }
  1790. for (const a in attributeList) {
  1791. // 过滤掉website_qty标签无数量
  1792. if (attributeList[a]) {
  1793. this.initZeroObj[a] = 0;
  1794. } else {
  1795. delete attributeList[a];
  1796. }
  1797. for (const unit of this.unitData) {
  1798. // 如果对象中缺少 attributeList 的 key,则设置为 40
  1799. if (!(a in unit) || unit[a] === '') {
  1800. this.$set(unit, a, 40);
  1801. }
  1802. }
  1803. }
  1804. // 格式化数据,对象改成数组
  1805. for (const keys in priceList) {
  1806. const vals = {};
  1807. const {
  1808. decoration,
  1809. additionlist,
  1810. ...remaining
  1811. } = priceList[keys];
  1812. vals.basePrice = [];
  1813. vals.selectAdditionRow = [];
  1814. vals.curPrint = 0;
  1815. vals.name = this.formatDurationString(keys);
  1816. vals.nameOrigin = keys;
  1817. vals.decorationOrign = [...decoration];
  1818. vals.decorationID = decoration.map(i => i.id);
  1819. vals.decoration = [...decoration].flatMap(item => {
  1820. const result = [];
  1821. if (item.max_color > 0) {
  1822. result.push({
  1823. ...item,
  1824. max_num: item.max_color,
  1825. id: `${item.id}-1`,
  1826. decName: item.max_color_name
  1827. });
  1828. }
  1829. if (item.max_point > 0) {
  1830. result.push({
  1831. ...item,
  1832. max_num: item.max_point,
  1833. id: `${item.id}-2`,
  1834. decName: item.max_point_name
  1835. });
  1836. }
  1837. return result;
  1838. });
  1839. vals.additionlist = additionlist;
  1840. for (const k in remaining) {
  1841. var _remaining$k, _remaining$k2;
  1842. const o = {};
  1843. o.attributeList = this.copyData(attributeList);
  1844. if (((_remaining$k = remaining[k]) === null || _remaining$k === void 0 ? void 0 : _remaining$k.length) > 1) {
  1845. // 检查数组中各元素的 website_qtyN 是否都等于 "-" or "POA",则删除key
  1846. for (const a in attributeList) {
  1847. const is111Poa = remaining[k].every(item => this.POA_Config.includes(item[a]));
  1848. if (is111Poa) {
  1849. delete o.attributeList[a];
  1850. }
  1851. }
  1852. } else if (((_remaining$k2 = remaining[k]) === null || _remaining$k2 === void 0 ? void 0 : _remaining$k2.length) === 1) {
  1853. // 判断 remaining[k][0] 中是否包含 vals.attributeList 的键,并且对应的值都等于 "-" or "POA",则不删除key
  1854. const obj = remaining[k][0];
  1855. const attributeKeys = Object.keys(o.attributeList);
  1856. const areAllKeysInPOAConfig = attributeKeys.every(key => {
  1857. return Object.prototype.hasOwnProperty.call(obj, key) && this.POA_Config.includes(obj[key]);
  1858. });
  1859. if (!areAllKeysInPOAConfig) {
  1860. attributeKeys.forEach(key => {
  1861. if (Object.prototype.hasOwnProperty.call(obj, key) && this.POA_Config.includes(obj[key])) {
  1862. delete o.attributeList[key];
  1863. }
  1864. });
  1865. }
  1866. }
  1867. o.name = k;
  1868. o.data = remaining[k];
  1869. o.locationNum = 1;
  1870. o.part_columns = Object.keys(o.attributeList).map(e => {
  1871. return {
  1872. label: o.attributeList[e].toString(),
  1873. prop: e
  1874. };
  1875. });
  1876. const freightParam = {
  1877. postcode: '',
  1878. freight_type: 1,
  1879. freight: {}
  1880. };
  1881. o.total_part_columns = this.copyData(o.part_columns).map(obj => ({
  1882. ...obj,
  1883. ...freightParam
  1884. }));
  1885. o.remainingAttr = [];
  1886. const firstColumns = {
  1887. ...o.part_columns[0],
  1888. ...freightParam
  1889. };
  1890. for (let i = 1; i < 9; i++) {
  1891. if (!Object.keys(o.attributeList).includes(`website_qty${i}`)) {
  1892. const newColumn = {
  1893. ...firstColumns
  1894. };
  1895. this.$set(newColumn, 'prop', `website_qty${i}`);
  1896. o.remainingAttr.push(newColumn);
  1897. }
  1898. }
  1899. ;
  1900. vals.basePrice.push(o);
  1901. if (!this.allPrintTab.includes(k)) {
  1902. this.allPrintTab.push(k);
  1903. }
  1904. }
  1905. this.priceList.push(vals);
  1906. }
  1907. this.priceList.forEach((options, index) => {
  1908. // 原始数据name没空格,需要映射到
  1909. if (options.nameOrigin === (defaultID === null || defaultID === void 0 ? void 0 : defaultID.name)) {
  1910. this.curWeek = index;
  1911. options.decorationOrign.forEach((opt, idx) => {
  1912. var _defaultID$decoration;
  1913. if (opt.id === (defaultID === null || defaultID === void 0 ? void 0 : (_defaultID$decoration = defaultID.decoration) === null || _defaultID$decoration === void 0 ? void 0 : _defaultID$decoration.id)) {
  1914. this.$set(options, 'curPrint', idx);
  1915. }
  1916. });
  1917. }
  1918. // 所有周期的所有打印,进来页面时默认勾选第一条价格
  1919. options.basePrice.forEach((opt, idx) => {
  1920. var _options$decorationOr, _options$decorationOr2;
  1921. this.$set(opt, 'selectBaseRow', opt.data[0] || {});
  1922. opt.decoration_addition = [...(((_options$decorationOr = options.decorationOrign) === null || _options$decorationOr === void 0 ? void 0 : (_options$decorationOr2 = _options$decorationOr[idx]) === null || _options$decorationOr2 === void 0 ? void 0 : _options$decorationOr2.decoration_addition) || []), ...(options.additionlist || [])];
  1923. });
  1924. options.decoration.forEach(opt => {
  1925. this.$set(opt, 'num', 0);
  1926. });
  1927. });
  1928. this.initSetupObj = Object.assign({}, this.initZeroObj);
  1929. this.initUnitObj = Object.assign({}, this.initZeroObj, {
  1930. website_setup: 0
  1931. });
  1932. this.initFrightObj = Object.assign({}, this.initZeroObj);
  1933. this.buyData = this.buyData.map(item => {
  1934. return {
  1935. ...item,
  1936. ...this.initSetupObj
  1937. };
  1938. });
  1939. this.sellData = this.sellData.map(item => {
  1940. return {
  1941. ...item,
  1942. ...this.initSetupObj
  1943. };
  1944. });
  1945. this.quoteLoadState = 1;
  1946. }).catch(e => {
  1947. console.log('this.quoteLoadState1: ', e);
  1948. this.quoteLoadState = 2;
  1949. });
  1950. },
  1951. formatDurationString(input) {
  1952. // 匹配数字和字符串的正则表达式
  1953. const regex = /(\d+)([a-zA-Z]+)/g;
  1954. const result = input.replace(regex, '$1 $2');
  1955. return result;
  1956. },
  1957. // getWeight() {
  1958. // this.$axios
  1959. // .post('/api/quote/weight', { id: this.id })
  1960. // .then(res => {
  1961. // this.weight = res.result
  1962. // })
  1963. // .catch(() => {})
  1964. // },
  1965. // getFreight(k) {
  1966. // const postcode = this.comCurBaseTotalColumns[k].postcode
  1967. // const type = this.comCurBaseTotalColumns[k].freight_type
  1968. // const init = { basic:0,pickup:0,minimum:0 }
  1969. // if (postcode.length < 3) {
  1970. // this.comCurBaseTotalColumns[k].freight = init
  1971. // return
  1972. // }
  1973. // this.$axios
  1974. // .post('/api/quote/freight', {
  1975. // postcode,
  1976. // type
  1977. // })
  1978. // .then(res => {
  1979. // this.comCurBaseTotalColumns[k].freight = Array.isArray(res.result)?init:res.result
  1980. // })
  1981. // },
  1982. getDebFreight: external_lodash_default.a.debounce(function (k) {
  1983. this.getFreight(k);
  1984. }, 200),
  1985. getNumber(e, row, min) {
  1986. if (parseInt(e.target.value) < min) {
  1987. this.xxContentVisible = true;
  1988. row.label = min;
  1989. } else {
  1990. this.xxContentVisible = false;
  1991. }
  1992. },
  1993. sortBy(items) {
  1994. // items.decoration.sort(this.customSort(items.decorationID))
  1995. // const targetElement = items.decoration.splice(items.curPrint, 1)[0]
  1996. // items.decoration.unshift(targetElement)
  1997. },
  1998. // 按原打印数组的id字段排序
  1999. customSort(decorationID) {
  2000. return (a, b) => {
  2001. return decorationID.indexOf(a.id) - decorationID.indexOf(b.id);
  2002. };
  2003. },
  2004. dividePrice(a) {
  2005. return Object(external_number_precision_["divide"])(+a, 100);
  2006. },
  2007. // openMailDialog() {
  2008. // if (this.$utils.checkLogin()) {
  2009. // this.getUserInfo()
  2010. // const { contacts, email, phone, crm_users_id:crmUsersId } = this.userInfo
  2011. // this.enquiryForm.Name = contacts
  2012. // this.enquiryForm.Email = email
  2013. // this.enquiryForm.Phone = phone
  2014. // if (crmUsersId?.length) {
  2015. // this.enquiryConfig[3].selectlist = crmUsersId
  2016. // if (crmUsersId?.length === 1) {
  2017. // this.enquiryForm['Customer manager'] = crmUsersId[0].name
  2018. // }
  2019. // } else {
  2020. // this.enquiryConfig[3].isShow = false
  2021. // this.$delete(this.enquiryForm, 'Customer manager')
  2022. // }
  2023. // this.enquiryFormVisible = true
  2024. // } else {
  2025. // this.openDialog()
  2026. // }
  2027. // },
  2028. getMailData() {
  2029. this.mailData.Url = window.location.href;
  2030. const {
  2031. Name,
  2032. Email,
  2033. Phone,
  2034. Comments
  2035. } = this.enquiryForm;
  2036. this.mailData['Customer Name'] = Name;
  2037. this.mailData['Customer Email'] = Email;
  2038. this.mailData['Customer Phone'] = Phone;
  2039. this.mailData.Comments = Comments;
  2040. const {
  2041. email,
  2042. level,
  2043. createTime
  2044. } = this.userInfo;
  2045. this.mailData['Member Account'] = email;
  2046. this.mailData['Member Grade'] = level.name;
  2047. this.mailData['Member Registration time'] = createTime;
  2048. this.mailData['Quote time'] = this.$utils.formatTime(new Date());
  2049. },
  2050. // 发送价格邮件 Enquiry按钮
  2051. // async sendPriceMail() {
  2052. // await this.getMailData()
  2053. // await this.getCustomerQuoteData()
  2054. // const {
  2055. // Name,
  2056. // Email,
  2057. // Phone,
  2058. // Comments,
  2059. // 'Customer manager': customerManager,
  2060. // } = this.enquiryForm
  2061. // this.$axios
  2062. // .post('/uk-api/quote/sendenquiry', {
  2063. // content: this.$refs.mailtable.$el.innerHTML,
  2064. // name: Name,
  2065. // email: Email,
  2066. // phone: Phone,
  2067. // customer_manager: customerManager || '',
  2068. // url: this.mailData.Url,
  2069. // product_code: this.pageData.product_code,
  2070. // comments: Comments,
  2071. // member_id: this.userInfo.id,
  2072. // })
  2073. // .then(res => {
  2074. // this.setLoading(false)
  2075. // this.enquiryFormVisible = false
  2076. // this.$confirm('Enquiry Sent', {
  2077. // confirmButtonText: 'OK',
  2078. // showCancelButton: false,
  2079. // type: 'success',
  2080. // center: true,
  2081. // showClose: false,
  2082. // confirmButtonClass: 'com-btnblack',
  2083. // }).then(() => {})
  2084. // })
  2085. // .catch(() => {
  2086. // this.setLoading(false)
  2087. // })
  2088. // },
  2089. // getCustomerQuoteData() {
  2090. // const { name, selectAdditionRow } = this.comCurWeekPrice
  2091. // this.specificationsObj.time = name
  2092. // this.specificationsObj.model = this.comBasePrice.model
  2093. // this.specificationsObj.decoration = this.comCurBasePrice.name
  2094. // if (selectAdditionRow.length) {
  2095. // this.specificationsObj.addonArr = selectAdditionRow.map(
  2096. // item => item.name
  2097. // )
  2098. // } else {
  2099. // this.specificationsObj.addonArr = null
  2100. // }
  2101. // },
  2102. // openDownloadDialog(type) {
  2103. // this.getCustomerQuoteData()
  2104. // type
  2105. // ? (this.downloadDialogVisible = true)
  2106. // : (this.priceToImgVisible = true)
  2107. // },
  2108. handleDownloadPdf() {
  2109. this.pdfLoading = true;
  2110. this.$nextTick(() => {
  2111. this.$refs.priceToImgRef.htmlToPdf(this.pageData.product_code);
  2112. });
  2113. },
  2114. // 发送PDF邮件
  2115. // sendPdfMail() {
  2116. // this.$axios
  2117. // .post('/api/quote/sendpdf', {
  2118. // content: this.$refs.pdf.$el.innerHTML,
  2119. // product_code: this.pageData.product_code,
  2120. // email: this.commentObj['Email Address'],
  2121. // })
  2122. // .then(res => {
  2123. // this.setLoading(false)
  2124. // this.downloadDialogVisible = false
  2125. // this.$confirm('Enquiry Sent', {
  2126. // confirmButtonText: 'OK',
  2127. // showCancelButton: false,
  2128. // type: 'success',
  2129. // center: true,
  2130. // showClose: false,
  2131. // confirmButtonClass: 'com-btnblack',
  2132. // })
  2133. // })
  2134. // .catch(() => {
  2135. // this.setLoading(false)
  2136. // })
  2137. // },
  2138. copyData(data) {
  2139. return JSON.parse(JSON.stringify(data));
  2140. },
  2141. calculateBuyData() {
  2142. const selPriceArr = [];
  2143. if (JSON.stringify(this.comBasePrice) !== '{}') {
  2144. selPriceArr.push(this.comBasePrice);
  2145. }
  2146. selPriceArr.push(...this.comDecoPrice, ...this.comCurWeekPrice.selectAdditionRow);
  2147. if (selPriceArr.length === 0) {
  2148. this.buyData = this.buyData.map(item => ({
  2149. ...item,
  2150. ...this.initZeroObj
  2151. }));
  2152. return;
  2153. }
  2154. // 累加所选,初始数量对应的单价。赋值给this.initUnitObj
  2155. for (const i in this.initUnitObj) {
  2156. const columnSum = this.copyData(selPriceArr).reduce(function (prev, cur) {
  2157. if (cur[i] === '111' || cur[i] === '111.00') {
  2158. return cur[i] = '-';
  2159. } else if (cur[i] === '999' || cur[i] === '999.00') {
  2160. return cur[i] = 'POA';
  2161. } else {
  2162. // 当基础价格是-POA,后续累加价格是正常数字价,依然返回-POA
  2163. if (prev === '-' || prev === 'POA') {
  2164. return prev;
  2165. }
  2166. return Object(external_number_precision_["plus"])(+cur[i], prev).toFixed(2);
  2167. }
  2168. }, 0);
  2169. this.$set(this.initUnitObj, i, columnSum);
  2170. }
  2171. for (const a in this.comAttributeList) {
  2172. // 每次更改选择价格,必须遍历整个comAttributeList
  2173. const tempIdx = this.comCurBaseColumns.findIndex(items => +this.comAttributeList[a] < +items.label);
  2174. if (tempIdx > 0) {
  2175. const key = this.comCurBaseColumns[tempIdx - 1].prop;
  2176. this.$set(this.initChangeUnitObj, a, this.initUnitObj[key]);
  2177. } else {
  2178. const length = this.comCurBaseColumns.length;
  2179. const key = this.comCurBaseColumns[length - 1].prop;
  2180. this.$set(this.initChangeUnitObj, a, this.initUnitObj[key]);
  2181. }
  2182. if (this.initChangeUnitObj[a] === 'POA' || this.initChangeUnitObj[a] === '-') {
  2183. this.$set(this.initSetupObj, a, this.initChangeUnitObj[a]);
  2184. this.$set(this.initFrightObj, a, this.initChangeUnitObj[a]);
  2185. } else {
  2186. this.$set(this.initSetupObj, a, this.initUnitObj.website_setup);
  2187. // 计算运费
  2188. // 单独批次数量的总重
  2189. // weight定义是{},后端没数据传回[]
  2190. const unitWLocal = this.weight.unit_w_local ? +this.weight.unit_w_local : 0;
  2191. const totalWeight = Math.ceil(Object(external_number_precision_["times"])(unitWLocal, this.comAttributeList[a]));
  2192. // Road express 1 AAE:AAEFactor 2
  2193. const setupFuel = this.dividePrice(this.configInfo.fuel);
  2194. const setupBagFreight = this.dividePrice(this.configInfo.bag_freight);
  2195. const setupExpressFreight = this.dividePrice(this.configInfo.express_freight);
  2196. const AAEFactor = Object(external_number_precision_["plus"])(1, setupBagFreight, setupFuel);
  2197. const expressFactor = Object(external_number_precision_["plus"])(1, setupExpressFreight, setupFuel);
  2198. let frightCost = 0;
  2199. let freightType;
  2200. let postcode;
  2201. let freight = {};
  2202. const matchIndex = this.comCurBaseTotalColumns.findIndex(item => item.prop === a);
  2203. // 1,所有按第一个运费统计;不为1,则只计算 comCurBaseTotalColumns的[地址数]长度
  2204. if (+this.comLocationNum === 1 || this.comLocationNum >= matchIndex + 1) {
  2205. ({
  2206. freight,
  2207. freight_type: freightType,
  2208. postcode
  2209. } = this.comCurBaseTotalColumns[+this.comLocationNum === 1 ? 0 : matchIndex] || {});
  2210. }
  2211. if (freightType === 1 && postcode >= 3) {
  2212. if (totalWeight > 20) {
  2213. const a1 = Object(external_number_precision_["minus"])(totalWeight, 20);
  2214. const a2 = Object(external_number_precision_["times"])(a1, +freight.basic);
  2215. const a3 = Object(external_number_precision_["plus"])(+freight.pickup, a2);
  2216. frightCost = Object(external_number_precision_["times"])(a3, expressFactor);
  2217. } else {
  2218. frightCost = Object(external_number_precision_["times"])(+freight.pickup, expressFactor);
  2219. }
  2220. } else if (freightType === 2 && postcode >= 3) {
  2221. const a1 = Object(external_number_precision_["divide"])(totalWeight, 5);
  2222. const a2 = Object(external_number_precision_["times"])(+freight.minimum, Math.ceil(a1));
  2223. frightCost = Object(external_number_precision_["times"])(a2, AAEFactor);
  2224. } else {
  2225. frightCost = 0;
  2226. }
  2227. this.$set(this.initFrightObj, a, Math.ceil(frightCost).toFixed(2));
  2228. }
  2229. if (this.initChangeUnitObj[a] === '-' || this.initChangeUnitObj[a] === 'POA') {
  2230. this.$set(this.initTotalObj, a, this.initChangeUnitObj[a]);
  2231. } else {
  2232. const unitQTY = Object(external_number_precision_["times"])(this.initChangeUnitObj[a], this.comAttributeList[a]);
  2233. this.$set(this.initTotalObj, a, Object(external_number_precision_["plus"])(this.initUnitObj.website_setup, unitQTY, this.initFrightObj[a]).toFixed(2));
  2234. }
  2235. if (this.setup_switch) {
  2236. // 业务:Setup价格/对应数量后向上取整
  2237. if (this.initChangeUnitObj[a] === '-' || this.initChangeUnitObj[a] === 'POA') {
  2238. this.$set(this.initChangeUnitObj, a, this.initChangeUnitObj[a]);
  2239. } else {
  2240. const num = Math.ceil(this.initSetupObj[a] / this.comAttributeList[a] * 100) / 100;
  2241. this.$set(this.initChangeUnitObj, a, Object(external_number_precision_["plus"])(this.initChangeUnitObj[a], num).toFixed(2));
  2242. }
  2243. }
  2244. if (this.freight_switch) {
  2245. if (this.initChangeUnitObj[a] === '-' || this.initChangeUnitObj[a] === 'POA') {
  2246. this.$set(this.initChangeUnitObj, a, this.initChangeUnitObj[a]);
  2247. } else {
  2248. const num = Math.ceil(this.initFrightObj[a] / this.comAttributeList[a] * 100) / 100;
  2249. this.$set(this.initChangeUnitObj, a, Object(external_number_precision_["plus"])(this.initChangeUnitObj[a], num).toFixed(2));
  2250. }
  2251. }
  2252. }
  2253. if (this.setup_switch) {
  2254. this.$set(this.buyData, 0, {
  2255. ...this.buyData[0],
  2256. ...this.initZeroObj,
  2257. ...{
  2258. 'summary': 0.00
  2259. }
  2260. });
  2261. } else {
  2262. this.$set(this.buyData, 0, {
  2263. ...this.buyData[0],
  2264. ...this.initSetupObj
  2265. });
  2266. }
  2267. this.$set(this.buyData, 1, {
  2268. ...this.buyData[1],
  2269. ...this.initChangeUnitObj
  2270. });
  2271. if (this.freight_switch) {
  2272. this.$set(this.buyData, 2, {
  2273. ...this.buyData[2],
  2274. ...this.initZeroObj
  2275. });
  2276. } else {
  2277. this.$set(this.buyData, 2, {
  2278. ...this.buyData[2],
  2279. ...this.initFrightObj
  2280. });
  2281. }
  2282. this.$set(this.buyData, 3, {
  2283. ...this.buyData[3],
  2284. ...this.initTotalObj
  2285. });
  2286. },
  2287. calculateSellData() {
  2288. // 放置comSellData计算和副作用的代码
  2289. const buySetup = this.comBuyData[0];
  2290. const buyUnit = this.comBuyData[1];
  2291. const buyFright = this.comBuyData[2];
  2292. let frightSummary = 0;
  2293. for (const i in this.comAttributeList) {
  2294. if (buyUnit[i] === '-' || buyUnit[i] === 'POA') {
  2295. this.sellData[0][i] = '-';
  2296. this.sellData[1][i] = buyUnit[i];
  2297. this.sellData[2][i] = buyUnit[i];
  2298. this.sellData[3][i] = buyUnit[i];
  2299. this.sellData[4][i] = buyUnit[i];
  2300. } else {
  2301. var _this$comCurBaseTotal2;
  2302. const item = this.comLocationNum === 1 ? this.comCurBaseTotalColumns[0] : this.comCurBaseTotalColumns.find(element => element.prop === i);
  2303. this.sellData[0][i] = item && item.postcode !== '' ? item.postcode : '-';
  2304. // 分别乘以Markup %表格
  2305. const key = (_this$comCurBaseTotal2 = this.comCurBaseTotalColumns[0]) === null || _this$comCurBaseTotal2 === void 0 ? void 0 : _this$comCurBaseTotal2.prop;
  2306. if (this.unitData[1] && this.unitData[1][key]) {
  2307. const a = Object(external_number_precision_["plus"])(this.unitData[1][key] / 100, 1);
  2308. this.sellData[1][i] = Object(external_number_precision_["times"])(buySetup[i], a).toFixed(2);
  2309. } else {
  2310. this.sellData[1][i] = buySetup[i];
  2311. }
  2312. if (this.unitData[0][i]) {
  2313. const a = Object(external_number_precision_["plus"])(this.unitData[0][i] / 100, 1);
  2314. this.sellData[2][i] = Object(external_number_precision_["times"])(buyUnit[i], a).toFixed(2);
  2315. } else {
  2316. this.sellData[2][i] = buyUnit[i];
  2317. }
  2318. if (this.unitData[2] && this.unitData[2][key]) {
  2319. const a = Object(external_number_precision_["plus"])(this.unitData[2][key] / 100, 1);
  2320. this.sellData[3][i] = Object(external_number_precision_["times"])(buyFright[i], a).toFixed(2);
  2321. // freight_switch会使qty的运费=0无法计算,故用了initFrightObj
  2322. const fa = Object(external_number_precision_["times"])(this.initFrightObj[i], a);
  2323. frightSummary = Object(external_number_precision_["plus"])(frightSummary, fa).toFixed(2);
  2324. } else {
  2325. this.sellData[3][i] = buyFright[i];
  2326. frightSummary = Object(external_number_precision_["plus"])(frightSummary, this.initFrightObj[i]).toFixed(2);
  2327. }
  2328. const unitQTY = Object(external_number_precision_["times"])(this.sellData[2][i], this.comAttributeList[i]);
  2329. this.$set(this.sellData[4], i, Object(external_number_precision_["plus"])(this.sellData[1][i], unitQTY, this.sellData[3][i]).toFixed(2));
  2330. }
  2331. }
  2332. // 迭代加了Total列,需要统计qty的运费后才能合计运费
  2333. if (this.sellData[2].summary !== '-' && this.sellData[2].summary !== 'POA') {
  2334. if (this.freight_switch) {
  2335. const num = Math.ceil(frightSummary / this.comAttributeList.summary * 100) / 100;
  2336. this.sellData[2].summary = Object(external_number_precision_["plus"])(this.sellData[2].summary, num).toFixed(2);
  2337. this.sellData[3].summary = 0.00;
  2338. const a = Object(external_number_precision_["times"])(this.sellData[2].summary, this.comAttributeList.summary);
  2339. this.sellData[4].summary = Object(external_number_precision_["plus"])(this.sellData[1].summary, a).toFixed(2);
  2340. } else {
  2341. this.sellData[3].summary = frightSummary;
  2342. this.sellData[4].summary = Object(external_number_precision_["plus"])(frightSummary, this.sellData[4].summary).toFixed(2);
  2343. }
  2344. }
  2345. },
  2346. // 低于最小起订量 把该栏的数值重置到最小起订量
  2347. getChildIdx(idx) {
  2348. var _this$comCurBaseColum;
  2349. this.xxContentVisible = true;
  2350. this.$set(this.comCurBaseTotalColumns[idx - 1], 'label', (_this$comCurBaseColum = this.comCurBaseColumns[0]) === null || _this$comCurBaseColum === void 0 ? void 0 : _this$comCurBaseColum.label);
  2351. },
  2352. setMaxNum(val) {
  2353. if (val > 7) {
  2354. this.comCurBasePrice.locationNum = 7;
  2355. } else if (val < 1) {
  2356. this.comCurBasePrice.locationNum = 1;
  2357. }
  2358. },
  2359. ...Object(external_vuex_["mapMutations"])({
  2360. openDialog: 'openDialog',
  2361. setLoading: 'product/setLoading'
  2362. })
  2363. }
  2364. });
  2365. // CONCATENATED MODULE: ./components/product/Quote.vue?vue&type=script&lang=js
  2366. /* harmony default export */ var product_Quotevue_type_script_lang_js = (Quotevue_type_script_lang_js);
  2367. // EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
  2368. var componentNormalizer = __webpack_require__(2);
  2369. // CONCATENATED MODULE: ./components/product/Quote.vue
  2370. function injectStyles (context) {
  2371. var style0 = __webpack_require__(216)
  2372. if (style0.__inject__) style0.__inject__(context)
  2373. }
  2374. /* normalize component */
  2375. var component = Object(componentNormalizer["a" /* default */])(
  2376. product_Quotevue_type_script_lang_js,
  2377. render,
  2378. staticRenderFns,
  2379. false,
  2380. injectStyles,
  2381. "21f896fd",
  2382. "3f1d0f1e"
  2383. )
  2384. /* harmony default export */ var Quote = __webpack_exports__["default"] = (component.exports);
  2385. /* nuxt-component-imports */
  2386. installComponents(component, {TabNav: __webpack_require__(183).default,PriceToImg: __webpack_require__(203).default})
  2387. /***/ })
  2388. };;
  2389. //# sourceMappingURL=product-quote.js.map