index.vue 30 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052
  1. <template>
  2. <div class="com-main com-margin-auto com-fixationwidth-1400">
  3. <el-breadcrumb separator-class="el-icon-arrow-right">
  4. <el-breadcrumb-item :to="{ path: '/' }">Home</el-breadcrumb-item>
  5. <el-breadcrumb-item>{{ tabName }}</el-breadcrumb-item>
  6. </el-breadcrumb>
  7. <div class="content">
  8. <el-menu background-color="#e8eaee"
  9. text-color="#4a596c" ref="menu"
  10. active-text-color="#fff"
  11. class="el-menu-vertical" :default-active="activeMenu"
  12. @select="handleClick">
  13. <el-menu-item index="profile">
  14. <i class="iconfont">&#xe630;</i>
  15. <span slot="title">My Profile</span>
  16. </el-menu-item>
  17. <!-- <el-menu-item index="enquiry">
  18. <i class="iconfont">&#xe610;</i>
  19. <span slot="title">My Enquiry</span>
  20. </el-menu-item> -->
  21. <!-- <el-menu-item index="address">
  22. <i class="iconfont">&#xe619;</i>
  23. <span slot="title">My Addresses</span>
  24. </el-menu-item> -->
  25. <el-submenu index="order">
  26. <template slot="title">
  27. <i class="iconfont">&#xe610;</i>
  28. <span slot="title">My Orders</span>
  29. </template>
  30. <el-menu-item index="all-orders">All Orders</el-menu-item>
  31. <el-menu-item index="open-orders">Open Orders</el-menu-item>
  32. <el-menu-item index="closed-orders">Closed Orders</el-menu-item>
  33. </el-submenu>
  34. <!-- <el-menu-item index="account">
  35. <i class="iconfont">&#xe638;</i>
  36. <span slot="title">Account And Password</span>
  37. </el-menu-item> -->
  38. </el-menu>
  39. <div class="content-right">
  40. <div v-show="activeMenu === 'profile'">
  41. <div class="content-form">
  42. <p class="content-title">{{ tabName }}</p>
  43. <el-form
  44. ref="form"
  45. :model="profileform"
  46. :rules="rules"
  47. label-width="220px">
  48. <el-row>
  49. <el-col :span="15">
  50. <el-form-item
  51. label="Email Address"
  52. prop="email">
  53. <el-input
  54. v-model="profileform.email"
  55. :disabled="true"></el-input>
  56. </el-form-item>
  57. </el-col>
  58. <el-col :span="9">
  59. <el-form-item class='upload-item'
  60. label="Your Logo">
  61. <image-upload :list.sync="profileform.logo" :disablePreview="true" :max="1"></image-upload>
  62. </el-form-item>
  63. </el-col>
  64. </el-row>
  65. <el-form-item
  66. label="Company Name"
  67. prop="company">
  68. <el-input v-model="profileform.company"></el-input>
  69. </el-form-item>
  70. <el-form-item
  71. label="First Name"
  72. prop="contacts">
  73. <el-input v-model="profileform.contacts"></el-input>
  74. </el-form-item>
  75. <el-form-item
  76. label="Last Name"
  77. prop="last_name">
  78. <el-input v-model="profileform.last_name"></el-input>
  79. </el-form-item>
  80. <el-form-item
  81. label="Contact Phone Number"
  82. prop="phone">
  83. <el-input v-model="profileform.phone"></el-input>
  84. </el-form-item>
  85. <!-- <el-form-item>
  86. <el-button
  87. class="saveBtn"
  88. @click="onSave('form')"
  89. >Save</el-button>
  90. </el-form-item> -->
  91. </el-form>
  92. </div>
  93. <div class="content-form" style="margin-top:20px;">
  94. <p class="content-title">Account And Password</p>
  95. <el-form
  96. ref="ruleForm"
  97. :model="accountPasswordForm"
  98. label-width="220px"
  99. class="accountPasswordForm">
  100. <el-form-item
  101. label="Enter the new password"
  102. prop="password">
  103. <el-input v-model="accountPasswordForm.password"></el-input>
  104. </el-form-item>
  105. <el-form-item
  106. label="Retype the password"
  107. prop="confirm_password">
  108. <el-input v-model="accountPasswordForm.confirm_password"></el-input>
  109. </el-form-item>
  110. <el-form-item>
  111. <el-button
  112. class="saveBtn"
  113. @click="onSave('form')">
  114. Save
  115. </el-button>
  116. </el-form-item>
  117. </el-form>
  118. </div>
  119. </div>
  120. <div v-show="activeMenu === 'enquiry'" class="content-form">
  121. <p class="content-title">{{ tabName }}</p>
  122. <div class="searchInput">
  123. <el-input
  124. placeholder="Search your job name"
  125. v-model="enquiryKeyword"
  126. clearable
  127. @keyup.enter.native="getEnquiryList"
  128. @clear="getEnquiryList"
  129. ><i
  130. slot="suffix"
  131. class="el-input__icon el-icon-search"
  132. @click="getEnquiryList"></i>
  133. </el-input>
  134. </div>
  135. <el-table
  136. :data="enquiryList"
  137. stripe
  138. style="width: 100%"
  139. @row-click="goEnquiryDetail"
  140. :header-cell-style="{ background: '#00213b', color: '#ffffff' }" v-loading="tableLoading">
  141. <el-table-column
  142. prop="Auto_Number"
  143. label="Enquiry No">
  144. </el-table-column>
  145. <el-table-column
  146. prop="Enquiry_Title"
  147. label="Job Name"
  148. width="300">
  149. </el-table-column>
  150. <el-table-column
  151. prop="Customize_Pipeline_Stage"
  152. label="Status"></el-table-column>
  153. <!-- <el-table-column
  154. prop="Rating"
  155. label="Ratiing"></el-table-column> -->
  156. <el-table-column
  157. prop="Enquiry_Created"
  158. label="Date">
  159. <template slot-scope="scope">
  160. <div>
  161. {{
  162. $utils.formatTime(
  163. scope.row.Sales_Order_Created,
  164. 'DD/MM/YYYY',
  165. true
  166. )
  167. }}
  168. </div>
  169. </template>
  170. </el-table-column>
  171. <el-table-column
  172. label="Action"
  173. width="90"
  174. align="center">
  175. <template>
  176. <el-button
  177. size="small"
  178. style="background-color: rgb(0, 33, 59); color: #fff"
  179. plain
  180. >View</el-button
  181. >
  182. </template>
  183. </el-table-column>
  184. <!-- <el-table-column label="Quote PDF">
  185. <template>
  186. <el-button>Download</el-button>
  187. </template>
  188. </el-table-column> -->
  189. </el-table>
  190. <pagination
  191. v-show="enquiryTotal > 0"
  192. :total="enquiryTotal"
  193. :page.sync="enquiryListQuery.page"
  194. :limit.sync="enquiryListQuery.limit"
  195. @pagination="getEnquiryList" />
  196. </div>
  197. <div v-show="activeMenu === 'address'" class="content-form">
  198. <p class="content-title">{{ tabName }}</p>
  199. <div class="address-content">
  200. <div
  201. class="my-addresses add-address"
  202. @click="addAddress(2)">
  203. <img
  204. src="@/assets/img/myAccount/add-address.png"
  205. alt="" />
  206. <p>Add address</p>
  207. </div>
  208. <div
  209. class="my-addresses address"
  210. v-for="item in addressList"
  211. :key="item.id">
  212. <div class="username">
  213. <p>{{ item.name }}</p>
  214. <span v-show="item.is_default">Default</span>
  215. </div>
  216. <div class="my-address-content">
  217. <p>{{ item.state }}</p>
  218. <p>{{ item.city }}</p>
  219. <p>{{ item.address }}</p>
  220. <p>{{ item.post_code }}</p>
  221. <p>{{ item.country }}</p>
  222. <p>Phone number: {{ item.phone }}</p>
  223. </div>
  224. <div class="edit-btns">
  225. <el-button
  226. size="mini"
  227. @click="editAddress(3, item.id)">
  228. Edit
  229. </el-button>
  230. <el-button
  231. size="mini"
  232. @click="delAddress(item.id)">
  233. Remove
  234. </el-button>
  235. <el-button
  236. size="mini"
  237. @click="setDefault(item.id)"
  238. v-show="!item.is_default">
  239. Set as Default
  240. </el-button>
  241. </div>
  242. </div>
  243. </div>
  244. <pagination
  245. v-show="addressTotal > 0"
  246. :total="addressTotal"
  247. :page.sync="addressListQuery.page"
  248. :limit.sync="addressListQuery.limit"
  249. @pagination="getAddressList" />
  250. </div>
  251. <!-- My Orders -->
  252. <div v-show="activeMenu.includes('orders')" class="content-form">
  253. <p class="content-title">{{ tabName }}</p>
  254. <div class="searchInput">
  255. <el-input
  256. placeholder="Search your job name"
  257. v-model="orderKeyword"
  258. clearable
  259. @keyup.enter.native="getOrdersList"
  260. @clear="getOrdersList"
  261. ><i
  262. slot="suffix"
  263. class="el-input__icon el-icon-search"
  264. @click="getOrdersList"></i>
  265. </el-input>
  266. <el-select
  267. v-if="selShow"
  268. v-model="selword" filterable
  269. clearable default-first-option
  270. placeholder="Select the status">
  271. <el-option
  272. v-for="option in orderSelList"
  273. :label="option"
  274. :value="option"
  275. :key="option"
  276. ></el-option>
  277. </el-select>
  278. <el-select
  279. v-if="$store.state.userInfo?.memberCrmcomList?.length > 1"
  280. v-model="accounts_id" filterable
  281. clearable
  282. default-first-option
  283. placeholder="Select the CRM">
  284. <el-option
  285. v-for="option in $store.state.userInfo?.memberCrmcomList"
  286. :label="option.name"
  287. :value="option.id"
  288. :key="option.id"
  289. ></el-option>
  290. </el-select>
  291. <el-button type="primary" @click="getOrdersList" style='background-color: rgb(0, 33, 59);border-color:rgb(0, 33, 59)'>Submit</el-button>
  292. </div>
  293. <el-table
  294. :data="tableData" v-loading="tableLoading"
  295. stripe
  296. style="width: 100%"
  297. :header-cell-style="{ background: '#00213b', color: '#ffffff' }">
  298. <el-table-column
  299. prop="Sales_Order_Title_Job_Name"
  300. label="Job Name">
  301. </el-table-column>
  302. <el-table-column
  303. width="100"
  304. prop="Reference"
  305. label="Order No">
  306. </el-table-column>
  307. <el-table-column
  308. width="120"
  309. prop="Sales_Order_Created"
  310. label="Order Date">
  311. <template slot-scope="scope">
  312. <div>
  313. {{
  314. $utils.formatTime(
  315. scope.row.Sales_Order_Created,
  316. 'DD/MM/YYYY'
  317. )
  318. }}
  319. </div>
  320. </template>
  321. </el-table-column>
  322. <el-table-column
  323. width="140"
  324. prop="Order_Stage_new"
  325. label="Order Status">
  326. </el-table-column>
  327. <el-table-column
  328. width="160"
  329. prop="Tracking_No_arr"
  330. label="Tracking No#">
  331. <template slot-scope="scope">
  332. <ul class="location">
  333. <li v-for="item in scope.row.Tracking_No_arr" :key="item.Tracking_No" @click="openTracking_URL(item.Tracking_URL)"><i class="el-icon-location"></i>{{item.Tracking_No}}</li>
  334. </ul>
  335. </template>
  336. </el-table-column>
  337. <el-table-column
  338. width="110"
  339. prop="Grand_Total"
  340. label="Amount">
  341. <template slot-scope="scope">
  342. ${{ transformNumber(scope.row.Grand_Total) }}
  343. </template>
  344. </el-table-column>
  345. <el-table-column
  346. label="Action"
  347. width="80"
  348. align="center">
  349. <template slot-scope="scope">
  350. <el-button
  351. @click="goOrderDetail(scope.row)"
  352. size="small"
  353. style="background-color: rgb(0, 33, 59); color: #fff"
  354. plain
  355. >View</el-button
  356. >
  357. </template>
  358. </el-table-column>
  359. </el-table>
  360. <pagination
  361. v-show="orderTotal > 0"
  362. :total="orderTotal"
  363. :page.sync="orderListQuery.page"
  364. :limit.sync="orderListQuery.limit"
  365. @pagination="getOrdersList" />
  366. </div>
  367. </div>
  368. </div>
  369. <add-address-dialog
  370. :dialogVisible.sync="dialogVisible"
  371. :data="addressDetail"
  372. :componentVisible="componentVisible"
  373. @close="closeAddressDialog"
  374. @update="update" />
  375. <dialog-XX-success
  376. :visible.sync="xxContentVisible"
  377. :content="xxContent"
  378. @notify-parent="handleNotification"></dialog-XX-success>
  379. <el-dialog
  380. :lock-scroll="false"
  381. :visible.sync="urlDialogShow"
  382. center width="850px"
  383. top="20vh">
  384. <iframe
  385. :src="Tracking_URL"
  386. style="width:100%;height:500px;"
  387. frameborder="0"></iframe>
  388. </el-dialog>
  389. </div>
  390. </template>
  391. <script>
  392. import { mapMutations } from 'vuex'
  393. import addAddressDialog from '../../../components/addAddressDialog.vue'
  394. import dialogXXSuccess from '@/components/DIalogXXSuccess.vue'
  395. import imageUpload from '@/components/ImageUpload'
  396. import { round } from '@/utils/price.js'
  397. export default {
  398. components: { addAddressDialog, 'dialog-XX-success': dialogXXSuccess,imageUpload },
  399. data() {
  400. return {
  401. xxContentVisible: false,
  402. xxContent: 'success',
  403. componentVisible: 1, // 2:add 3:edit 4:audit
  404. tabName: '',
  405. tableLoading: true,
  406. // 表单配置项
  407. profileform: {},
  408. rules: {
  409. email: [
  410. {
  411. required: true,
  412. message: 'Please enter the email',
  413. trigger: 'blur',
  414. },
  415. ],
  416. company: [
  417. {
  418. required: true,
  419. message: 'Please enter the company',
  420. trigger: 'blur',
  421. },
  422. ],
  423. contacts: [
  424. {
  425. required: true,
  426. message: 'Please enter first name',
  427. trigger: 'blur',
  428. },
  429. ],
  430. last_name: [
  431. {
  432. required: true,
  433. message: 'Please enter last name',
  434. trigger: 'blur',
  435. },
  436. ],
  437. phone: [
  438. {
  439. required: true,
  440. message: 'Please enter the phone',
  441. trigger: 'blur',
  442. },
  443. ],
  444. password: [
  445. {
  446. required: true,
  447. message: 'Please enter the password',
  448. trigger: 'blur',
  449. },
  450. ],
  451. confirm_password: [
  452. {
  453. required: true,
  454. message: 'Please enter the confirm_password',
  455. trigger: 'blur',
  456. },
  457. ],
  458. },
  459. accountPasswordForm: {
  460. password: '',
  461. confirm_password: '',
  462. },
  463. orderKeyword: '',
  464. selword: '',
  465. accounts_id: '',
  466. orderTotal: 0,
  467. orderListQuery: {
  468. page: 1,
  469. limit: 20,
  470. },
  471. tableData: [],
  472. dialogVisible: false,
  473. addressTotal: 0,
  474. addressListQuery: {
  475. page: 1,
  476. limit: 8,
  477. },
  478. addressList: [],
  479. addressDetail: {},
  480. enquiryKeyword: '',
  481. enquiryList: [],
  482. enquiryListQuery: {
  483. page: 1,
  484. limit: 20,
  485. },
  486. enquiryTotal: 0,
  487. orderSelList:[],
  488. Tracking_URL: '',
  489. urlDialogShow: false,
  490. }
  491. },
  492. computed: {
  493. activeMenu() {
  494. return this.$route.query.type ?? 'profile';
  495. },
  496. selShow(){
  497. return this.activeMenu === 'all-orders' || this.activeMenu === 'open-orders'
  498. }
  499. },
  500. watch: {
  501. $route: {
  502. handler(to) {
  503. if (process.client) {
  504. if (this.$utils.checkLogin()) {
  505. this.updateType()
  506. }
  507. }
  508. },
  509. },
  510. orderKeyword() {
  511. this.orderListQuery.page = 1;
  512. },
  513. enquiryKeyword() {
  514. this.enquiryListQuery.page = 1;
  515. }
  516. },
  517. mounted() {
  518. if (this.$utils.checkLogin()) {
  519. this.getMemberDetail()
  520. this.updateType()
  521. } else {
  522. this.$router.replace('/')
  523. }
  524. },
  525. methods: {
  526. transformNumber(value) {
  527. return round(Number(value)).toFixed(2)
  528. },
  529. handleClick(key, keyPath) {
  530. if (key) {
  531. this.$router.push({
  532. path: '/home/myDetail',
  533. query: { type: key },
  534. })
  535. }
  536. },
  537. updateType() {
  538. if (this.activeMenu === 'profile') {
  539. this.tabName = 'My Profile'
  540. } else if (this.activeMenu === 'enquiry') {
  541. this.tabName = 'My Enquiry'
  542. this.getEnquiryList()
  543. } else if (this.activeMenu === 'address') {
  544. this.tabName = 'My Address'
  545. this.getAddressList()
  546. } else {
  547. this.selword = ''
  548. if(this.activeMenu === 'all-orders'){
  549. this.orderSelList= ['Order Confirmed','In Production','In Transit','Order Completed']
  550. }
  551. if(this.activeMenu === 'open-orders'){
  552. this.orderSelList = ['Order Confirmed','In Production','In Transit']
  553. }
  554. this.tabName = 'My Orders'
  555. this.getOrdersList()
  556. }
  557. },
  558. closeAddressDialog() {
  559. this.dialogVisible = false
  560. },
  561. // 获取用户信息
  562. getMemberDetail() {
  563. this.$axios
  564. .get('/au/member/detail')
  565. .then(res => {
  566. if (res.code === 1) {
  567. this.profileform = res.result
  568. this.profileform.logo = this.profileform.logo?this.formatLogo(this.profileform.logo):[];
  569. }
  570. })
  571. .catch(() => {})
  572. },
  573. formatLogo(params){
  574. return [{ 'url': params }];
  575. },
  576. onSave(form) {
  577. if (
  578. this.accountPasswordForm.confirm_password !==
  579. this.accountPasswordForm.password
  580. ) {
  581. this.$message.error('The second password is inconsistent!')
  582. return
  583. }
  584. this.$refs[form].validate(valid => {
  585. if (valid) {
  586. const requestBody = {
  587. email: this.profileform.email,
  588. company: this.profileform.company,
  589. contacts: this.profileform.contacts,
  590. last_name: this.profileform.last_name,
  591. phone: this.profileform.phone,
  592. logo: this.profileform.logo[0]?.url ?? '',
  593. };
  594. let needLogout = false
  595. if (this.accountPasswordForm.password.trim() !== '') {
  596. requestBody.password = this.accountPasswordForm.password;
  597. requestBody.confirm_password = this.accountPasswordForm.confirm_password;
  598. needLogout = true
  599. }
  600. this.$axios
  601. .post('/au/member/edit', requestBody)
  602. .then(res => {
  603. if (res.code === 1) {
  604. this.$notify({
  605. customClass: 'custom-notify-class',
  606. title: 'success',
  607. message: 'The profile information is modified successfully',
  608. type: 'success',
  609. })
  610. if(needLogout){
  611. setTimeout(() => {
  612. this.$store.dispatch('logout').then(() => {
  613. this.$router.push('/')
  614. })
  615. }, 500)
  616. }
  617. }
  618. })
  619. .catch(() => {})
  620. } else {
  621. console.log('error submit!!')
  622. return false
  623. }
  624. })
  625. },
  626. // 获取订单列表
  627. getOrdersList() {
  628. const accounts_id = this.accounts_id ? this.accounts_id : this.$store.state.userInfo?.memberCrmcomList.map((i)=>i.id).join()
  629. const type = this.activeMenu === 'all-orders'?'':this.activeMenu === 'open-orders'? 'Open Orders':'Closed Orders'
  630. this.tableLoading = true
  631. this.$axios
  632. .post('/crmdata/order_lists', {
  633. keyword: this.orderKeyword,
  634. page: this.orderListQuery.page,
  635. limit: this.orderListQuery.limit,
  636. accounts_id,
  637. Order_Stage: this.selword,
  638. type
  639. })
  640. .then(res => {
  641. if (res.code === 1) {
  642. this.tableData = res.result.data
  643. this.orderTotal = res.result.total
  644. this.tableLoading = false
  645. }
  646. if (process.client) {
  647. this.$nextTick(() => {
  648. window.scroll(0, 0)
  649. })
  650. }
  651. })
  652. .catch(() => {})
  653. },
  654. goOrderDetail(row) {
  655. const routeUrl = this.$router.resolve({
  656. path: '/home/myDetail/orderDetail',
  657. query: { id: row.sales_orders_id,crm: row.Account_Name_id },
  658. })
  659. window.open(routeUrl.href, '_blank')
  660. },
  661. getEnquiryList() {
  662. this.tableLoading = true
  663. this.$axios
  664. .post('/crmdata/enquiries_lists', {
  665. keyword: this.enquiryKeyword,
  666. page: this.enquiryListQuery.page,
  667. limit: this.enquiryListQuery.limit,
  668. accounts_id: this.$store.state.userInfo?.crm_accounts_id || '',
  669. })
  670. .then(res => {
  671. if (res.code === 1) {
  672. this.enquiryList = res.result.data
  673. this.enquiryTotal = res.result.total
  674. this.tableLoading = false
  675. }
  676. if (process.client) {
  677. this.$nextTick(() => {
  678. window.scroll(0, 0)
  679. })
  680. }
  681. })
  682. },
  683. goEnquiryDetail(row) {
  684. const routeUrl = this.$router.resolve({
  685. path: '/home/myDetail/enquiryDetail',
  686. query: { id: row.enquiries_id },
  687. })
  688. window.open(routeUrl.href, '_blank')
  689. },
  690. // 获取地址列表
  691. getAddressList() {
  692. this.$axios
  693. .get('address/list', {
  694. params: {
  695. page: this.addressListQuery.page,
  696. limit: this.addressListQuery.limit,
  697. },
  698. })
  699. .then(res => {
  700. if (res.code === 1) {
  701. this.addressList = res.result.data
  702. this.addressTotal = res.result.total
  703. }
  704. if (process.client) {
  705. this.$nextTick(() => {
  706. window.scroll(0, 0)
  707. })
  708. }
  709. })
  710. .catch(() => {})
  711. },
  712. addAddress(num) {
  713. this.addressDetail = {}
  714. this.componentVisible = num
  715. this.dialogVisible = true
  716. },
  717. editAddress(num, id) {
  718. this.$axios
  719. .get('address/detail/' + id)
  720. .then(res => {
  721. this.addressDetail = res.result
  722. this.addressDetail.is_default = res.result.is_default === 1
  723. this.componentVisible = num
  724. this.dialogVisible = true
  725. })
  726. .catch(() => {})
  727. },
  728. delAddress(id) {
  729. this.$axios.get('address/delete/' + id).then(res => {
  730. this.$notify({
  731. title: 'success',
  732. message: 'Deleted successfully',
  733. type: 'success',
  734. duration: 3000,
  735. })
  736. this.getAddressList()
  737. })
  738. // .catch((error) => {});
  739. },
  740. setDefault(id) {
  741. this.$axios.get('address/set_default/' + id).then(res => {
  742. this.$notify({
  743. title: 'success',
  744. message: 'Default address is set successfully',
  745. type: 'success',
  746. duration: 3000,
  747. })
  748. this.getAddressList()
  749. })
  750. // .catch((error) => {});
  751. },
  752. update() {
  753. this.getAddressList()
  754. },
  755. resetPassword() {
  756. if (
  757. this.accountPasswordForm.confirm_password !==
  758. this.accountPasswordForm.password
  759. ) {
  760. this.$message.error('The second password is inconsistent!')
  761. } else {
  762. this.$axios({
  763. url: 'au/member/reset',
  764. method: 'POST',
  765. data: this.accountPasswordForm,
  766. })
  767. .then(res => {
  768. if (res.code === 1) {
  769. this.xxContentVisible = true
  770. this.xxContent = 'Password Reset Successful'
  771. }
  772. })
  773. .catch(() => {
  774. // this.$message.error(error.response.data.msg);
  775. })
  776. }
  777. },
  778. openTracking_URL(url){
  779. this.Tracking_URL= url
  780. this.urlDialogShow= true
  781. },
  782. handleNotification() {
  783. this.$router.push('/')
  784. this.$store.dispatch('logout')
  785. this.openDialog()
  786. },
  787. ...mapMutations(['openDialog']),
  788. },
  789. }
  790. </script>
  791. <style lang="scss">
  792. .custom-notify-class {
  793. .el-notification__content {
  794. text-align: left;
  795. }
  796. }
  797. </style>
  798. <style lang="scss" scoped>
  799. .content{
  800. display: flex;
  801. .el-menu-vertical{
  802. width: 260px;
  803. min-height: 606px;
  804. background: #e8eaee;
  805. .iconfont {
  806. font-size: 22px;
  807. }
  808. :deep(.el-menu-item){
  809. font-size: 16px;
  810. &:hover {
  811. background-color: #e8eaee !important;
  812. }
  813. &.is-active {
  814. background-color: #00213b !important;
  815. }
  816. }
  817. :deep(.el-submenu__title){
  818. font-size: 16px;
  819. &:hover {
  820. background-color: #e8eaee !important;
  821. }
  822. }
  823. }
  824. :deep(.content-right){
  825. flex:1;
  826. margin-left: 15px;
  827. &>div{
  828. min-height: 606px;
  829. }
  830. .content-title {
  831. margin: 15px 0px 25px 15px;
  832. position: relative;
  833. width: 282px;
  834. height: 27px;
  835. font-size: 24px;
  836. font-weight: bold;
  837. color: #102f47;
  838. &::before {
  839. content: "";
  840. position: absolute;
  841. left: -14px;
  842. top: 50%;
  843. transform: translateY(-50%);
  844. width: 4px;
  845. height: 17px;
  846. background: #e90000;
  847. border-radius: 2px;
  848. margin-right: 10px;
  849. }
  850. }
  851. .content-form{
  852. border: 1px solid #c7c7c7;
  853. padding: 0 20px;
  854. .avatar-uploader .el-upload {
  855. border: 1px dashed #d9d9d9;
  856. border-radius: 6px;
  857. cursor: pointer;
  858. position: relative;
  859. overflow: hidden;
  860. }
  861. }
  862. .searchInput {
  863. margin-bottom: 10px;
  864. display: grid;
  865. grid-template-columns: 1fr 1fr 1fr 0.5fr 1fr;
  866. gap: 10px;
  867. .el-input {
  868. .el-input__inner {
  869. border-radius: 30px;
  870. }
  871. .el-input__suffix {
  872. .el-input__icon {
  873. font-size: 16px;
  874. font-weight: bold;
  875. }
  876. .el-icon-search {
  877. cursor: pointer;
  878. }
  879. }
  880. }
  881. }
  882. .upload-item{
  883. .el-form-item__content{
  884. z-index: 1;
  885. }
  886. }
  887. .el-form-item {
  888. margin-bottom: 20px;
  889. height: 40px;
  890. .el-form-item__label {
  891. font-size: 16px;
  892. font-weight: 400;
  893. color: #333333;
  894. line-height: 35px;
  895. }
  896. .el-input__inner {
  897. width: 460px;
  898. background: #ffffff;
  899. border: 1px solid #bebebe;
  900. border-radius: 4px;
  901. }
  902. .saveBtn {
  903. min-width: 140px;
  904. height: 40px;
  905. background: #00213b;
  906. border-radius: 6px;
  907. font-size: 18px;
  908. font-weight: 400;
  909. color: #ffffff;
  910. margin-left: 180px;
  911. }
  912. }
  913. .el-table {
  914. margin-bottom: 10px;
  915. border: 1px solid #c7c7c7;
  916. .el-table__header {
  917. height: 57px;
  918. }
  919. .el-table__row {
  920. height: 57px;
  921. }
  922. }
  923. .address-content {
  924. display: flex;
  925. flex-wrap: wrap;
  926. .my-addresses {
  927. display: inline-block;
  928. width: 350px;
  929. height: 300px;
  930. box-sizing: border-box;
  931. margin-bottom: 15px;
  932. background: #f9fcfe;
  933. border: 1px solid #c7c7c7;
  934. border-radius: 10px;
  935. margin-right: 13px;
  936. &:nth-of-type(3),
  937. &:nth-of-type(6),
  938. &:nth-of-type(9) {
  939. margin-right: 0;
  940. }
  941. }
  942. .add-address {
  943. display: flex;
  944. flex-direction: column;
  945. justify-content: space-evenly;
  946. align-items: center;
  947. img {
  948. width: 77px;
  949. height: 77px;
  950. }
  951. p {
  952. width: 330px;
  953. height: 21px;
  954. font-size: 30px;
  955. font-family: Proxima Nova;
  956. font-weight: 400;
  957. color: #00213b;
  958. line-height: 30px;
  959. text-align: center;
  960. }
  961. }
  962. .address {
  963. padding: 15px;
  964. .username {
  965. display: flex;
  966. justify-content: space-between;
  967. align-items: center;
  968. height: 35px;
  969. p {
  970. height: 35px;
  971. font-size: 24px;
  972. font-family: Proxima Nova;
  973. font-weight: bold;
  974. color: #102f47;
  975. line-height: 35px;
  976. }
  977. span {
  978. height: 22px;
  979. font-size: 14px;
  980. font-family: Proxima Nova;
  981. font-weight: 400;
  982. color: #ef1f1f;
  983. line-height: 22px;
  984. }
  985. }
  986. .my-address-content {
  987. margin: 10px 0px;
  988. p {
  989. font-size: 16px;
  990. font-family: Proxima Nova;
  991. font-weight: 400;
  992. color: #666666;
  993. line-height: 30px;
  994. }
  995. }
  996. .edit-btns {
  997. display: flex;
  998. justify-content: flex-end;
  999. .el-button {
  1000. font-size: 16px;
  1001. font-family: Proxima Nova;
  1002. font-weight: 400;
  1003. color: #00213b;
  1004. border: 1px solid #00213b;
  1005. border-radius: 4px;
  1006. }
  1007. .el-button--mini {
  1008. padding: 3px 10px;
  1009. }
  1010. }
  1011. }
  1012. }
  1013. .location{
  1014. color: #004A97;
  1015. li{
  1016. cursor: pointer;
  1017. }
  1018. }
  1019. .center{
  1020. text-align: center;
  1021. }
  1022. }
  1023. }
  1024. :deep(.el-pagination.is-background) {
  1025. .el-pager {
  1026. li.number {
  1027. background-color: #f8f8f8;
  1028. border-radius: 50%;
  1029. color: #a7a7a7;
  1030. }
  1031. li:not(.disabled).active {
  1032. background-color: #00213b;
  1033. color: #d4d7da;
  1034. }
  1035. }
  1036. .btn-prev,
  1037. .btn-next {
  1038. border-radius: 50%;
  1039. background-color: #fff;
  1040. .el-icon-arrow-left:before {
  1041. content: '';
  1042. }
  1043. .el-icon-arrow-right:before {
  1044. content: '';
  1045. }
  1046. }
  1047. }
  1048. </style>