index.vue 31 KB

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