projects.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610
  1. <template>
  2. <div class="com-main com-width-1400 com-margin-auto main pro-wrap">
  3. <el-breadcrumb separator-class="el-icon-arrow-right">
  4. <el-breadcrumb-item :to="{ path: '/' }">Home</el-breadcrumb-item>
  5. <el-breadcrumb-item>My Projects</el-breadcrumb-item>
  6. </el-breadcrumb>
  7. <div class="topbar com-flex">
  8. <div class="search-input">
  9. <el-input @keyup.enter.native="getProjectList"
  10. v-model="keyword" clearable @clear="getProjectList"
  11. placeholder="Search Item here"
  12. ><i slot="suffix" class="el-input__icon el-icon-search" @click="getProjectList" ></i></el-input>
  13. </div>
  14. <div class="topbar-item com-flex">{{ total }} Projects</div>
  15. </div>
  16. <section class="project-wrap" v-if="total">
  17. <ul class="project">
  18. <li class="project-li" v-for="(items, index) in list" :key="items.id">
  19. <div class="head">
  20. <div class="head-item left">
  21. <img
  22. :src="items.open ? close : open"
  23. @click="toggle(index)"
  24. class="toggle"/>
  25. <el-input @keyup.enter.native="toggleEdit(items)" v-model="items.label_type" size="medium"
  26. class="edit-input"
  27. v-if="items.lableEdit"
  28. />
  29. <span v-else>{{ items.label_type }}</span>
  30. <img src="@/assets/img/edit.png" @click="toggleEdit(items)" />
  31. </div>
  32. <!-- <div class="head-item right" @click="sendEnquiry">
  33. <img src="@/assets/img/email1.png" alt="" />
  34. Send enquiry
  35. </div> -->
  36. </div>
  37. <transition name="fade">
  38. <div v-show="items.open">
  39. <ul class="content" v-if="items.lists.length">
  40. <li
  41. class="content-li"
  42. v-for="(item, idx) in items.lists"
  43. :key="item.id">
  44. <div class="content-li-wrap">
  45. <el-image lazy
  46. :src="item.info?.image"
  47. fit="cover"
  48. style="width: 335px; height: 290px"
  49. ></el-image>
  50. <div class="content-li-r">
  51. <ul class="info">
  52. <li>
  53. <div class="name">{{ item.goods?.product_name }}</div>
  54. </li>
  55. <li>
  56. <div class="left">Model</div>
  57. <div class="right">
  58. {{ item.goods?.product_code }}<span v-if="item.cycle?.name">,{{ item.cycle?.name }}</span>
  59. <span v-if="item.priceUnit?.point">, {{ item.priceUnit?.point }} </span>
  60. <span v-if="item.priceUnit?.colours_number">, {{ item.priceUnit?.colours_number }} colours</span>
  61. </div>
  62. </li>
  63. <li v-if="item.goods_cart_decunit?.length">
  64. <div class="left">Decoration</div>
  65. <div class="right">
  66. <div
  67. v-for="option in item.goods_cart_decunit"
  68. :key="option.id">
  69. {{ option.point }} , {{ option.dec_name }} <span v-if="option.colours_number"></span>
  70. </div>
  71. </div>
  72. </li>
  73. <li v-if="item.addition">
  74. <div class="left">Addon</div>
  75. <div class="right">{{ item.addition }}</div>
  76. </li>
  77. <li v-if="item.packaging_addition">
  78. <div class="left">Packaging</div>
  79. <div class="right">{{ item.packaging_addition }}</div>
  80. </li>
  81. <!-- <li>
  82. <div class="left">3D link</div>
  83. <div class="right">{{item.create_time}}</div>
  84. </li> -->
  85. <li>
  86. <div class="left">Created</div>
  87. <div class="right">
  88. {{ item.create_time | setTime }}
  89. </div>
  90. </li>
  91. <li>
  92. <div class="left">Last Edited</div>
  93. <div class="right">
  94. {{ item.update_time | setTime }}
  95. </div>
  96. </li>
  97. </ul>
  98. <div class="func">
  99. <el-tooltip
  100. content="Copy"
  101. placement="bottom"
  102. effect="light"
  103. >
  104. <img
  105. src="@/assets/img/copy.png"
  106. alt=""
  107. @click="copy(item)"
  108. />
  109. </el-tooltip>
  110. <!-- <el-tooltip content="Edit" placement="bottom" effect="light">
  111. <img src="@/assets/img/pan.png" alt="">
  112. </el-tooltip>
  113. <el-tooltip content="Build" placement="bottom" effect="light">
  114. <img src="@/assets/img/build.png" alt="">
  115. </el-tooltip> -->
  116. <el-tooltip
  117. content="Delete"
  118. placement="bottom"
  119. effect="light"
  120. >
  121. <img
  122. src="@/assets/img/del.png"
  123. alt=""
  124. @click="del(item, index, idx)"
  125. />
  126. </el-tooltip>
  127. </div>
  128. </div>
  129. </div>
  130. <div class="mask" v-if="item.goods_check_update || item.goods?.for_au==0">
  131. <p v-if="!item.goods?.for_au">This item has been discontinued and cannot be purchased</p>
  132. <p v-else>Product information changes, please revise your project</p>
  133. <div class="mask-btn">
  134. <span class="del" @click="delGoods(item.id,index, idx)">remove</span>
  135. <span class="edit" v-if="!item.goods?.for_au">Edit</span>
  136. <span class="edit" v-else @click="goCategory(item.cate_arr)">buy the same item</span>
  137. </div>
  138. </div>
  139. </li>
  140. </ul>
  141. <el-empty
  142. v-else
  143. :image="empty"
  144. description="No Data!"
  145. :image-size="180"
  146. ></el-empty>
  147. </div>
  148. </transition>
  149. </li>
  150. </ul>
  151. <pagination
  152. v-show="total > 0"
  153. :total="total"
  154. :page.sync="listQuery.page"
  155. :limit.sync="listQuery.limit"
  156. @pagination="getProjectList"
  157. />
  158. </section>
  159. <el-empty
  160. v-else
  161. :image="empty"
  162. description="No projects have been saved yet!"
  163. :image-size="180"
  164. ></el-empty>
  165. <project-dialog
  166. :visible.sync="projectdDialogVisible"
  167. :id="projectId" @sendFinish="finishCopy"
  168. ></project-dialog>
  169. <!-- 邮箱 -->
  170. <form-dialog :emailForm="emailForm" :visible.sync="formDialogVisible" @handleSend="sendPriceMail" :rules="rules" :labelWidth="90"></form-dialog>
  171. <!-- <mail-table ref="mailtable" :mailData="mailData" v-show="false"></mail-table> -->
  172. </div>
  173. </template>
  174. <script>
  175. export default {
  176. data() {
  177. return {
  178. empty: require("@/assets/img/empty.png"),
  179. open: require("@/assets/img/open.png"),
  180. close: require("@/assets/img/close.png"),
  181. keyword: "",
  182. listQuery: {
  183. page: 1,
  184. limit: 10,
  185. },
  186. total: 0,
  187. list: [],
  188. projectdDialogVisible: false,
  189. projectId: null,
  190. old_label_type:"",
  191. formDialogVisible:false,
  192. emailForm:{
  193. Name:'',
  194. Email:'',
  195. Phone:'',
  196. Quantity:'',
  197. Comments:'',
  198. },
  199. rules:{
  200. Name: [{ required: true, message: "Please enter", trigger: "blur" }],
  201. Email: [{ required: true, message: "Please enter the correct format", pattern: /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+((.[a-zA-Z0-9_-]{2,3}){1,2})$/,trigger: "blur" }],
  202. Phone: [{ required: true, message: "Please enter the correct format", pattern:/^1[0-9]{10}$/, trigger: "blur" }],
  203. Quantity: [{ required: true, message: "Please enter", trigger: "blur" }],
  204. },
  205. };
  206. },
  207. filters: {
  208. setTime(val) {
  209. if (val) {
  210. let tempArr = val.split(" ");
  211. let timeStr = tempArr[0];
  212. let timeArr = timeStr.split("-");
  213. return `${timeArr[2]}/${timeArr[1]}/${timeArr[0]}`;
  214. }
  215. },
  216. },
  217. mounted() {
  218. this.getProjectList();
  219. },
  220. methods: {
  221. getProjectList() {
  222. this.$axios
  223. .post("/api/goods_cart/lists", {
  224. keyword: this.keyword,
  225. page: this.listQuery.page,
  226. limit: this.listQuery.limit,
  227. })
  228. .then((res) => {
  229. if (res.code == 1) {
  230. this.list = res.result.data;
  231. this.total = res.result.total;
  232. this.list.forEach((items, i) => {
  233. this.$set(items, "lableEdit", false);
  234. i == 0
  235. ? this.$set(items, "open", true)
  236. : this.$set(items, "open", false);
  237. });
  238. }
  239. })
  240. .catch(() => {});
  241. },
  242. // 修改input
  243. toggleEdit(items,) {
  244. // this.$nextTick(function() {
  245. // this.$refs[row.id].querySelector('input').focus();
  246. // })
  247. if (items.lableEdit) {
  248. if(!items.label_type){
  249. this.$message.warning('Please enter');
  250. return
  251. }
  252. this.$axios
  253. .post("/api/goods_cart/cartLabelEdit", {
  254. label_type_new: items.label_type,
  255. label_type_used: this.old_label_type
  256. })
  257. .then((res) => {});
  258. }else{
  259. this.old_label_type=items.label_type
  260. }
  261. items.lableEdit = !items.lableEdit;
  262. },
  263. toggle(i) {
  264. this.list[i].open = !this.list[i].open;
  265. },
  266. sendEnquiry(){
  267. this.formDialogVisible=true
  268. },
  269. sendPriceMail(){
  270. },
  271. copy(i) {
  272. this.projectdDialogVisible = true;
  273. this.projectId = i.id;
  274. },
  275. finishCopy(){
  276. this.projectdDialogVisible=false;
  277. location.reload()
  278. },
  279. del(item, index, idx) {
  280. this.$confirm("Are you sure that you want to delete your project?", {
  281. confirmButtonText: "Yes,remove",
  282. cancelButtonText: "No,thanks",
  283. showCancelButton: true,
  284. type: "error",
  285. center: true,
  286. confirmButtonClass: "project-sure",
  287. cancelButtonClass: "project-cancel",
  288. showClose: false,
  289. customClass: "message_style",
  290. }).then(() => {
  291. this.$axios.post("/api/goods_cart/delete", { id: item.id }).then((res) => {
  292. this.list[index].lists.splice(idx, 1);
  293. if (!this.list[index].lists.length) {
  294. this.list.splice(index, 1);
  295. this.total-=1;
  296. }
  297. this.projectdDialogVisible = false;
  298. this.$message.success("successfully deleted");
  299. });
  300. });
  301. },
  302. delGoods(id,index,idx){
  303. this.$axios.post("/api/goods_cart/delete", { id: id }).then((res) => {
  304. this.list[index].lists.splice(idx, 1);
  305. if (!this.list[index].lists.length) {
  306. this.list.splice(index, 1);
  307. this.total-=1;
  308. }
  309. this.$message.success("successfully deleted");
  310. });
  311. },
  312. goCategory(cate_arr){
  313. let index=cate_arr.length-1
  314. console.log('index: ', index);
  315. switch (index) {
  316. case 0:
  317. this.$router.push({
  318. name: "category-firstCategory",
  319. params: {
  320. firstCategory: cate_arr[0].name
  321. .replace(/\s+/g, "-")
  322. .replace("-&", "")
  323. .toLowerCase(),
  324. },
  325. });
  326. break;
  327. case 1:
  328. this.$router.push({
  329. name: "category-firstCategory-secondCategory",
  330. params: {
  331. firstCategory: cate_arr[0].name
  332. .replace(/\s+/g, "-")
  333. .replace("-&", "")
  334. .toLowerCase(),
  335. secondCategory: cate_arr[1].name
  336. .replace(/\s+/g, "-")
  337. .replace("-&", "")
  338. .toLowerCase(),
  339. },
  340. });
  341. break;
  342. case 2:
  343. this.$router.push({
  344. name: "category-firstCategory-secondCategory-thirdCategory",
  345. params: {
  346. firstCategory: cate_arr[0].name
  347. .replace(/\s+/g, "-")
  348. .replace("-&", "")
  349. .toLowerCase(),
  350. secondCategory: cate_arr[1].name
  351. .replace(/\s+/g, "-")
  352. .replace("-&", "")
  353. .toLowerCase(),
  354. thirdCategory: cate_arr[2].name
  355. .replace(/\s+/g, "-")
  356. .replace("-&", "")
  357. .toLowerCase()
  358. },
  359. });
  360. break;
  361. default:
  362. this.$router.push({ path: '/category' })
  363. }
  364. }
  365. },
  366. };
  367. </script>
  368. <style lang="scss" >
  369. .pro-wrap {
  370. :deep(.el-breadcrumb) {
  371. font-family: Proxima Nova;
  372. font-style: italic;
  373. margin-top: 15px;
  374. line-height: 19px;
  375. .el-breadcrumb__item {
  376. .el-breadcrumb__inner.is-link {
  377. color: #4a596c;
  378. }
  379. .el-breadcrumb__inner {
  380. color: #0b6dc9;
  381. }
  382. }
  383. }
  384. :deep(.el-empty) {
  385. p {
  386. font-size: 24px;
  387. font-family: ProximaNova-Regular;
  388. }
  389. }
  390. .main {
  391. font-size: 16px;
  392. }
  393. .topbar {
  394. display: flex;
  395. justify-content: space-between;
  396. margin: 20px 0;
  397. padding: 0 10px;
  398. .search-input {
  399. width: 60%;
  400. padding: 0 26px 0 0;
  401. position: relative;
  402. i{
  403. cursor: pointer;
  404. }
  405. }
  406. :deep(.el-input) {
  407. .el-input__inner {
  408. border-radius: 18px;
  409. }
  410. }
  411. .topbar-item {
  412. color: #102f47;
  413. }
  414. }
  415. .project-wrap {
  416. ul.project {
  417. .project-li {
  418. border-radius: 5px;
  419. overflow: hidden;
  420. margin-bottom: 14px;
  421. .head {
  422. position: relative;
  423. z-index: 1;
  424. padding: 0 20px;
  425. height: 45px;
  426. line-height: 45px;
  427. background-color: #00213b;
  428. color: #fff;
  429. display: flex;
  430. justify-content: space-between;
  431. align-items: center;
  432. .head-item {
  433. display: flex;
  434. align-items: center;
  435. }
  436. .edit-input {
  437. display: inline-block;
  438. width: 150px;
  439. margin: 0 10px;
  440. :deep(.el-input__inner) {
  441. font-size: 16px;
  442. border-top: none;
  443. border-left: none;
  444. border-right: none;
  445. border-bottom: 1px solid rgb(196, 194, 194);
  446. color: #fff;
  447. border-radius: 0;
  448. background-color: #00213b;
  449. }
  450. }
  451. .left {
  452. img {
  453. cursor: pointer;
  454. }
  455. span {
  456. margin: 0 10px;
  457. }
  458. }
  459. .right {
  460. font-size: 12px;
  461. border: 1px solid #fff;
  462. padding: 0 8px;
  463. height: 36px;
  464. border-radius: 2px;
  465. cursor: pointer;
  466. img {
  467. margin-right: 10px;
  468. }
  469. }
  470. }
  471. ul.content {
  472. border-right: 1px solid #eee;
  473. border-left: 1px solid #eee;
  474. border-bottom: 1px solid #eee;
  475. // display: flex;
  476. // flex-direction: row;
  477. // align-items: center;
  478. .content-li {
  479. &:not(:first-child){
  480. border-top: 1px solid #eee;
  481. }
  482. position:relative;
  483. .content-li-wrap{
  484. padding: 14px 20px;
  485. display: flex;
  486. align-items: center;
  487. }
  488. .content-li-r {
  489. flex: 1;
  490. display: flex;
  491. ul.info {
  492. flex: 1;
  493. color: #666;
  494. margin-left: 20px;
  495. font-size: 16px;
  496. li {
  497. display: flex;
  498. margin-bottom: 20px;
  499. .name {
  500. font-size: 24px;
  501. color: #333;
  502. font-family: ProximaNova-Bold;
  503. font-weight: bold;
  504. }
  505. .left {
  506. width: 110px;
  507. text-align: right;
  508. margin-right: 24px;
  509. }
  510. .right {
  511. div:nth-child(1) {
  512. margin-bottom: 15px;
  513. }
  514. }
  515. }
  516. }
  517. .func {
  518. // align-self:flex-start;
  519. img {
  520. cursor: pointer;
  521. margin-left: 20px;
  522. }
  523. }
  524. }
  525. .mask{
  526. position: absolute;
  527. top:0;
  528. left: 0;
  529. width: 100%;
  530. height: 100%;
  531. background-color: rgba(0,0,0,0.6);
  532. display: flex;
  533. justify-content: center;
  534. align-items: center;
  535. flex-direction: column;
  536. p{
  537. color:#fff;
  538. font-size: 22px;
  539. margin-bottom: 20px;
  540. }
  541. .mask-btn{
  542. font-size: 16px;
  543. span{
  544. display: inline-block;
  545. padding:10px 0;
  546. width: 160px;
  547. text-align: center;
  548. border-radius: 5px;
  549. cursor: pointer;
  550. }
  551. .del{
  552. border: 1px solid #e90000;
  553. color:#e90000;
  554. margin-right: 20px;
  555. &:hover{
  556. background-color: rgba(233, 0, 0,0.9);
  557. color:#fff;
  558. }
  559. }
  560. .edit{
  561. border: 1px solid #fff;
  562. color:#fff;
  563. }
  564. }
  565. }
  566. }
  567. }
  568. }
  569. }
  570. }
  571. .fade-enter-active,
  572. .fade-leave-active {
  573. transition: all 0.6s;
  574. }
  575. .fade-enter,
  576. .fade-leave-to {
  577. transform: translateY(-100%);
  578. }
  579. }
  580. .message_style {
  581. width: 550px;
  582. .el-message-box__content {
  583. font-size: 20px;
  584. }
  585. .el-message-box__btns {
  586. display: block !important;
  587. margin-top: 20px;
  588. }
  589. .project-sure {
  590. background-color: #00213b;
  591. color: #fff;
  592. }
  593. .project-cancel {
  594. color: #00213b;
  595. border: 1px solid #00213b;
  596. }
  597. }
  598. </style>