|
@@ -5,10 +5,13 @@
|
|
<el-breadcrumb-item>{{ tabName }}</el-breadcrumb-item>
|
|
<el-breadcrumb-item>{{ tabName }}</el-breadcrumb-item>
|
|
</el-breadcrumb>
|
|
</el-breadcrumb>
|
|
<div class="content">
|
|
<div class="content">
|
|
- <el-menu background-color="#e8eaee"
|
|
|
|
- text-color="#4a596c" ref="menu"
|
|
|
|
|
|
+ <el-menu
|
|
|
|
+ background-color="#e8eaee"
|
|
|
|
+ text-color="#4a596c"
|
|
|
|
+ ref="menu"
|
|
active-text-color="#fff"
|
|
active-text-color="#fff"
|
|
- class="el-menu-vertical" :default-active="activeMenu"
|
|
|
|
|
|
+ class="el-menu-vertical"
|
|
|
|
+ :default-active="activeMenu"
|
|
@select="handleClick">
|
|
@select="handleClick">
|
|
<el-menu-item index="profile">
|
|
<el-menu-item index="profile">
|
|
<i class="iconfont"></i>
|
|
<i class="iconfont"></i>
|
|
@@ -27,62 +30,66 @@
|
|
<i class="iconfont"></i>
|
|
<i class="iconfont"></i>
|
|
<span slot="title">My Orders</span>
|
|
<span slot="title">My Orders</span>
|
|
</template>
|
|
</template>
|
|
- <el-menu-item index="all-orders">All Orders</el-menu-item>
|
|
|
|
- <el-menu-item index="open-orders">Open Orders</el-menu-item>
|
|
|
|
- <el-menu-item index="closed-orders">Closed Orders</el-menu-item>
|
|
|
|
- </el-submenu>
|
|
|
|
|
|
+ <el-menu-item index="all-orders">All Orders</el-menu-item>
|
|
|
|
+ <el-menu-item index="open-orders">Open Orders</el-menu-item>
|
|
|
|
+ <el-menu-item index="closed-orders">Closed Orders</el-menu-item>
|
|
|
|
+ </el-submenu>
|
|
<!-- <el-menu-item index="account">
|
|
<!-- <el-menu-item index="account">
|
|
<i class="iconfont"></i>
|
|
<i class="iconfont"></i>
|
|
<span slot="title">Account And Password</span>
|
|
<span slot="title">Account And Password</span>
|
|
</el-menu-item> -->
|
|
</el-menu-item> -->
|
|
</el-menu>
|
|
</el-menu>
|
|
<div class="content-right">
|
|
<div class="content-right">
|
|
- <div v-show="activeMenu === 'profile'">
|
|
|
|
- <div class="content-form">
|
|
|
|
|
|
+ <div v-show="activeMenu === 'profile'">
|
|
|
|
+ <div class="content-form">
|
|
<p class="content-title">{{ tabName }}</p>
|
|
<p class="content-title">{{ tabName }}</p>
|
|
<el-form
|
|
<el-form
|
|
- ref="form"
|
|
|
|
- :model="profileform"
|
|
|
|
- :rules="rules"
|
|
|
|
- label-width="220px">
|
|
|
|
- <el-row>
|
|
|
|
- <el-col :span="15">
|
|
|
|
- <el-form-item
|
|
|
|
- label="Email Address"
|
|
|
|
- prop="email">
|
|
|
|
- <el-input
|
|
|
|
- v-model="profileform.email"
|
|
|
|
- :disabled="true"></el-input>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :span="9">
|
|
|
|
- <el-form-item class='upload-item'
|
|
|
|
- label="Your Logo">
|
|
|
|
- <image-upload :list.sync="profileform.logo" :disablePreview="true" :max="1"></image-upload>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- </el-row>
|
|
|
|
- <el-form-item
|
|
|
|
- label="Company Name"
|
|
|
|
- prop="company">
|
|
|
|
- <el-input v-model="profileform.company"></el-input>
|
|
|
|
- </el-form-item>
|
|
|
|
- <el-form-item
|
|
|
|
- label="First Name"
|
|
|
|
- prop="contacts">
|
|
|
|
- <el-input v-model="profileform.contacts"></el-input>
|
|
|
|
- </el-form-item>
|
|
|
|
- <el-form-item
|
|
|
|
- label="Last Name"
|
|
|
|
- prop="last_name">
|
|
|
|
- <el-input v-model="profileform.last_name"></el-input>
|
|
|
|
- </el-form-item>
|
|
|
|
- <el-form-item
|
|
|
|
- label="Contact Phone Number"
|
|
|
|
- prop="phone">
|
|
|
|
- <el-input v-model="profileform.phone"></el-input>
|
|
|
|
- </el-form-item>
|
|
|
|
- <!-- <el-form-item>
|
|
|
|
|
|
+ ref="form"
|
|
|
|
+ :model="profileform"
|
|
|
|
+ :rules="rules"
|
|
|
|
+ label-width="220px">
|
|
|
|
+ <el-row>
|
|
|
|
+ <el-col :span="15">
|
|
|
|
+ <el-form-item
|
|
|
|
+ label="Email Address"
|
|
|
|
+ prop="email">
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="profileform.email"
|
|
|
|
+ :disabled="true"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="9">
|
|
|
|
+ <el-form-item
|
|
|
|
+ class="upload-item"
|
|
|
|
+ label="Your Logo">
|
|
|
|
+ <image-upload
|
|
|
|
+ :list.sync="profileform.logo"
|
|
|
|
+ :disablePreview="true"
|
|
|
|
+ :max="1"></image-upload>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ </el-row>
|
|
|
|
+ <el-form-item
|
|
|
|
+ label="Company Name"
|
|
|
|
+ prop="company">
|
|
|
|
+ <el-input v-model="profileform.company"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item
|
|
|
|
+ label="First Name"
|
|
|
|
+ prop="contacts">
|
|
|
|
+ <el-input v-model="profileform.contacts"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item
|
|
|
|
+ label="Last Name"
|
|
|
|
+ prop="last_name">
|
|
|
|
+ <el-input v-model="profileform.last_name"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item
|
|
|
|
+ label="Contact Phone Number"
|
|
|
|
+ prop="phone">
|
|
|
|
+ <el-input v-model="profileform.phone"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <!-- <el-form-item>
|
|
<el-button
|
|
<el-button
|
|
class="saveBtn"
|
|
class="saveBtn"
|
|
@click="onSave('form')"
|
|
@click="onSave('form')"
|
|
@@ -90,67 +97,73 @@
|
|
</el-form-item> -->
|
|
</el-form-item> -->
|
|
</el-form>
|
|
</el-form>
|
|
</div>
|
|
</div>
|
|
- <div class="content-form" style="margin-top:20px;">
|
|
|
|
|
|
+ <div
|
|
|
|
+ class="content-form"
|
|
|
|
+ style="margin-top: 20px">
|
|
<p class="content-title">Account And Password</p>
|
|
<p class="content-title">Account And Password</p>
|
|
<el-form
|
|
<el-form
|
|
- ref="ruleForm"
|
|
|
|
- :model="accountPasswordForm"
|
|
|
|
- label-width="220px"
|
|
|
|
- class="accountPasswordForm">
|
|
|
|
- <el-form-item
|
|
|
|
- label="Enter the new password"
|
|
|
|
- prop="password">
|
|
|
|
- <el-input v-model="accountPasswordForm.password"></el-input>
|
|
|
|
- </el-form-item>
|
|
|
|
- <el-form-item
|
|
|
|
- label="Retype the password"
|
|
|
|
- prop="confirm_password">
|
|
|
|
- <el-input v-model="accountPasswordForm.confirm_password"></el-input>
|
|
|
|
- </el-form-item>
|
|
|
|
- <el-form-item>
|
|
|
|
- <el-button
|
|
|
|
- class="saveBtn"
|
|
|
|
- @click="onSave('form')">
|
|
|
|
- Save
|
|
|
|
- </el-button>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-form>
|
|
|
|
|
|
+ ref="ruleForm"
|
|
|
|
+ :model="accountPasswordForm"
|
|
|
|
+ label-width="220px"
|
|
|
|
+ class="accountPasswordForm">
|
|
|
|
+ <el-form-item
|
|
|
|
+ label="Enter the new password"
|
|
|
|
+ prop="password">
|
|
|
|
+ <el-input v-model="accountPasswordForm.password"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item
|
|
|
|
+ label="Retype the password"
|
|
|
|
+ prop="confirm_password">
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="accountPasswordForm.confirm_password"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item>
|
|
|
|
+ <el-button
|
|
|
|
+ class="saveBtn"
|
|
|
|
+ @click="onSave('form')">
|
|
|
|
+ Save
|
|
|
|
+ </el-button>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
- <div v-show="activeMenu === 'enquiry'" class="content-form">
|
|
|
|
|
|
+ <div
|
|
|
|
+ v-show="activeMenu === 'enquiry'"
|
|
|
|
+ class="content-form">
|
|
<p class="content-title">{{ tabName }}</p>
|
|
<p class="content-title">{{ tabName }}</p>
|
|
<div class="searchInput">
|
|
<div class="searchInput">
|
|
- <el-input
|
|
|
|
- placeholder="Search your job name"
|
|
|
|
- v-model="enquiryKeyword"
|
|
|
|
- clearable
|
|
|
|
- @keyup.enter.native="getEnquiryList"
|
|
|
|
- @clear="getEnquiryList"
|
|
|
|
- ><i
|
|
|
|
- slot="suffix"
|
|
|
|
- class="el-input__icon el-icon-search"
|
|
|
|
- @click="getEnquiryList"></i>
|
|
|
|
- </el-input>
|
|
|
|
- </div>
|
|
|
|
- <el-table
|
|
|
|
- :data="enquiryList"
|
|
|
|
- stripe
|
|
|
|
- style="width: 100%"
|
|
|
|
- @row-click="goEnquiryDetail"
|
|
|
|
- :header-cell-style="{ background: '#00213b', color: '#ffffff' }" v-loading="tableLoading">
|
|
|
|
- <el-table-column
|
|
|
|
- prop="Auto_Number"
|
|
|
|
- label="Enquiry No">
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- prop="Enquiry_Title"
|
|
|
|
- label="Job Name"
|
|
|
|
- width="300">
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- prop="Customize_Pipeline_Stage"
|
|
|
|
- label="Status"></el-table-column>
|
|
|
|
- <!-- <el-table-column
|
|
|
|
|
|
+ <el-input
|
|
|
|
+ placeholder="Search your job name"
|
|
|
|
+ v-model="enquiryKeyword"
|
|
|
|
+ clearable
|
|
|
|
+ @keyup.enter.native="getEnquiryList"
|
|
|
|
+ @clear="getEnquiryList"
|
|
|
|
+ ><i
|
|
|
|
+ slot="suffix"
|
|
|
|
+ class="el-input__icon el-icon-search"
|
|
|
|
+ @click="getEnquiryList"></i>
|
|
|
|
+ </el-input>
|
|
|
|
+ </div>
|
|
|
|
+ <el-table
|
|
|
|
+ :data="enquiryList"
|
|
|
|
+ stripe
|
|
|
|
+ style="width: 100%"
|
|
|
|
+ @row-click="goEnquiryDetail"
|
|
|
|
+ :header-cell-style="{ background: '#00213b', color: '#ffffff' }"
|
|
|
|
+ v-loading="tableLoading">
|
|
|
|
+ <el-table-column
|
|
|
|
+ prop="Auto_Number"
|
|
|
|
+ label="Enquiry No">
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column
|
|
|
|
+ prop="Enquiry_Title"
|
|
|
|
+ label="Job Name"
|
|
|
|
+ width="300">
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column
|
|
|
|
+ prop="Customize_Pipeline_Stage"
|
|
|
|
+ label="Status"></el-table-column>
|
|
|
|
+ <!-- <el-table-column
|
|
prop="Rating"
|
|
prop="Rating"
|
|
label="Ratiing"></el-table-column> -->
|
|
label="Ratiing"></el-table-column> -->
|
|
<el-table-column
|
|
<el-table-column
|
|
@@ -186,70 +199,74 @@
|
|
<el-button>Download</el-button>
|
|
<el-button>Download</el-button>
|
|
</template>
|
|
</template>
|
|
</el-table-column> -->
|
|
</el-table-column> -->
|
|
- </el-table>
|
|
|
|
- <pagination
|
|
|
|
- v-show="enquiryTotal > 0"
|
|
|
|
- :total="enquiryTotal"
|
|
|
|
- :page.sync="enquiryListQuery.page"
|
|
|
|
- :limit.sync="enquiryListQuery.limit"
|
|
|
|
- @pagination="getEnquiryList" />
|
|
|
|
|
|
+ </el-table>
|
|
|
|
+ <pagination
|
|
|
|
+ v-show="enquiryTotal > 0"
|
|
|
|
+ :total="enquiryTotal"
|
|
|
|
+ :page.sync="enquiryListQuery.page"
|
|
|
|
+ :limit.sync="enquiryListQuery.limit"
|
|
|
|
+ @pagination="getEnquiryList" />
|
|
</div>
|
|
</div>
|
|
- <div v-show="activeMenu === 'address'" class="content-form">
|
|
|
|
|
|
+ <!-- <div
|
|
|
|
+ v-show="activeMenu === 'address'"
|
|
|
|
+ class="content-form">
|
|
<p class="content-title">{{ tabName }}</p>
|
|
<p class="content-title">{{ tabName }}</p>
|
|
<div class="address-content">
|
|
<div class="address-content">
|
|
- <div
|
|
|
|
- class="my-addresses add-address"
|
|
|
|
- @click="addAddress(2)">
|
|
|
|
- <img
|
|
|
|
- src="@/assets/img/myAccount/add-address.png"
|
|
|
|
- alt="" />
|
|
|
|
- <p>Add address</p>
|
|
|
|
- </div>
|
|
|
|
- <div
|
|
|
|
- class="my-addresses address"
|
|
|
|
- v-for="item in addressList"
|
|
|
|
- :key="item.id">
|
|
|
|
- <div class="username">
|
|
|
|
- <p>{{ item.name }}</p>
|
|
|
|
- <span v-show="item.is_default">Default</span>
|
|
|
|
|
|
+ <div
|
|
|
|
+ class="my-addresses add-address"
|
|
|
|
+ @click="addAddress(2)">
|
|
|
|
+ <img
|
|
|
|
+ src="@/assets/img/myAccount/add-address.png"
|
|
|
|
+ alt="" />
|
|
|
|
+ <p>Add address</p>
|
|
</div>
|
|
</div>
|
|
- <div class="my-address-content">
|
|
|
|
- <p>{{ item.state }}</p>
|
|
|
|
- <p>{{ item.city }}</p>
|
|
|
|
- <p>{{ item.address }}</p>
|
|
|
|
- <p>{{ item.post_code }}</p>
|
|
|
|
- <p>{{ item.country }}</p>
|
|
|
|
- <p>Phone number: {{ item.phone }}</p>
|
|
|
|
- </div>
|
|
|
|
- <div class="edit-btns">
|
|
|
|
- <el-button
|
|
|
|
- size="mini"
|
|
|
|
- @click="editAddress(3, item.id)">
|
|
|
|
- Edit
|
|
|
|
- </el-button>
|
|
|
|
- <el-button
|
|
|
|
- size="mini"
|
|
|
|
- @click="delAddress(item.id)">
|
|
|
|
- Remove
|
|
|
|
- </el-button>
|
|
|
|
- <el-button
|
|
|
|
- size="mini"
|
|
|
|
- @click="setDefault(item.id)"
|
|
|
|
- v-show="!item.is_default">
|
|
|
|
- Set as Default
|
|
|
|
- </el-button>
|
|
|
|
|
|
+ <div
|
|
|
|
+ class="my-addresses address"
|
|
|
|
+ v-for="item in addressList"
|
|
|
|
+ :key="item.id">
|
|
|
|
+ <div class="username">
|
|
|
|
+ <p>{{ item.name }}</p>
|
|
|
|
+ <span v-show="item.is_default">Default</span>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="my-address-content">
|
|
|
|
+ <p>{{ item.state }}</p>
|
|
|
|
+ <p>{{ item.city }}</p>
|
|
|
|
+ <p>{{ item.address }}</p>
|
|
|
|
+ <p>{{ item.post_code }}</p>
|
|
|
|
+ <p>{{ item.country }}</p>
|
|
|
|
+ <p>Phone number: {{ item.phone }}</p>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="edit-btns">
|
|
|
|
+ <el-button
|
|
|
|
+ size="mini"
|
|
|
|
+ @click="editAddress(3, item.id)">
|
|
|
|
+ Edit
|
|
|
|
+ </el-button>
|
|
|
|
+ <el-button
|
|
|
|
+ size="mini"
|
|
|
|
+ @click="delAddress(item.id)">
|
|
|
|
+ Remove
|
|
|
|
+ </el-button>
|
|
|
|
+ <el-button
|
|
|
|
+ size="mini"
|
|
|
|
+ @click="setDefault(item.id)"
|
|
|
|
+ v-show="!item.is_default">
|
|
|
|
+ Set as Default
|
|
|
|
+ </el-button>
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
- </div>
|
|
|
|
- <pagination
|
|
|
|
- v-show="addressTotal > 0"
|
|
|
|
- :total="addressTotal"
|
|
|
|
- :page.sync="addressListQuery.page"
|
|
|
|
- :limit.sync="addressListQuery.limit"
|
|
|
|
- @pagination="getAddressList" />
|
|
|
|
- </div>
|
|
|
|
|
|
+ <pagination
|
|
|
|
+ v-show="addressTotal > 0"
|
|
|
|
+ :total="addressTotal"
|
|
|
|
+ :page.sync="addressListQuery.page"
|
|
|
|
+ :limit.sync="addressListQuery.limit"
|
|
|
|
+ @pagination="getAddressList" />
|
|
|
|
+ </div> -->
|
|
<!-- My Orders -->
|
|
<!-- My Orders -->
|
|
- <div v-show="activeMenu.includes('orders')" class="content-form">
|
|
|
|
|
|
+ <div
|
|
|
|
+ v-show="activeMenu.includes('orders')"
|
|
|
|
+ class="content-form">
|
|
<p class="content-title">{{ tabName }}</p>
|
|
<p class="content-title">{{ tabName }}</p>
|
|
<div class="searchInput">
|
|
<div class="searchInput">
|
|
<el-input
|
|
<el-input
|
|
@@ -263,35 +280,45 @@
|
|
class="el-input__icon el-icon-search"
|
|
class="el-input__icon el-icon-search"
|
|
@click="getOrdersList"></i>
|
|
@click="getOrdersList"></i>
|
|
</el-input>
|
|
</el-input>
|
|
- <el-select
|
|
|
|
|
|
+ <el-select
|
|
v-if="selShow"
|
|
v-if="selShow"
|
|
- v-model="selword" filterable
|
|
|
|
- clearable default-first-option
|
|
|
|
|
|
+ v-model="selword"
|
|
|
|
+ filterable
|
|
|
|
+ clearable
|
|
|
|
+ default-first-option
|
|
placeholder="Select the status">
|
|
placeholder="Select the status">
|
|
<el-option
|
|
<el-option
|
|
v-for="option in orderSelList"
|
|
v-for="option in orderSelList"
|
|
:label="option"
|
|
:label="option"
|
|
:value="option"
|
|
:value="option"
|
|
- :key="option"
|
|
|
|
- ></el-option>
|
|
|
|
|
|
+ :key="option"></el-option>
|
|
</el-select>
|
|
</el-select>
|
|
- <el-select
|
|
|
|
|
|
+ <el-select
|
|
v-if="$store.state.userInfo?.memberCrmcomList?.length > 1"
|
|
v-if="$store.state.userInfo?.memberCrmcomList?.length > 1"
|
|
- v-model="accounts_id" filterable
|
|
|
|
|
|
+ v-model="accounts_id"
|
|
|
|
+ filterable
|
|
clearable
|
|
clearable
|
|
- default-first-option
|
|
|
|
|
|
+ default-first-option
|
|
placeholder="Select the CRM">
|
|
placeholder="Select the CRM">
|
|
<el-option
|
|
<el-option
|
|
v-for="option in $store.state.userInfo?.memberCrmcomList"
|
|
v-for="option in $store.state.userInfo?.memberCrmcomList"
|
|
:label="option.name"
|
|
:label="option.name"
|
|
:value="option.id"
|
|
:value="option.id"
|
|
- :key="option.id"
|
|
|
|
- ></el-option>
|
|
|
|
|
|
+ :key="option.id"></el-option>
|
|
</el-select>
|
|
</el-select>
|
|
- <el-button type="primary" @click="getOrdersList" style='background-color: rgb(0, 33, 59);border-color:rgb(0, 33, 59)'>Submit</el-button>
|
|
|
|
|
|
+ <el-button
|
|
|
|
+ type="primary"
|
|
|
|
+ @click="getOrdersList"
|
|
|
|
+ style="
|
|
|
|
+ background-color: rgb(0, 33, 59);
|
|
|
|
+ border-color: rgb(0, 33, 59);
|
|
|
|
+ "
|
|
|
|
+ >Submit</el-button
|
|
|
|
+ >
|
|
</div>
|
|
</div>
|
|
<el-table
|
|
<el-table
|
|
- :data="tableData" v-loading="tableLoading"
|
|
|
|
|
|
+ :data="tableData"
|
|
|
|
+ v-loading="tableLoading"
|
|
stripe
|
|
stripe
|
|
style="width: 100%"
|
|
style="width: 100%"
|
|
:header-cell-style="{ background: '#00213b', color: '#ffffff' }">
|
|
:header-cell-style="{ background: '#00213b', color: '#ffffff' }">
|
|
@@ -330,7 +357,12 @@
|
|
label="Tracking No#">
|
|
label="Tracking No#">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<ul class="location">
|
|
<ul class="location">
|
|
- <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>
|
|
|
|
|
|
+ <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>
|
|
</ul>
|
|
</ul>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
@@ -347,7 +379,7 @@
|
|
width="80"
|
|
width="80"
|
|
align="center">
|
|
align="center">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <el-button
|
|
|
|
|
|
+ <el-button
|
|
@click="goOrderDetail(scope.row)"
|
|
@click="goOrderDetail(scope.row)"
|
|
size="small"
|
|
size="small"
|
|
style="background-color: rgb(0, 33, 59); color: #fff"
|
|
style="background-color: rgb(0, 33, 59); color: #fff"
|
|
@@ -366,38 +398,43 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
- <add-address-dialog
|
|
|
|
|
|
+ <!-- <add-address-dialog
|
|
:dialogVisible.sync="dialogVisible"
|
|
:dialogVisible.sync="dialogVisible"
|
|
:data="addressDetail"
|
|
:data="addressDetail"
|
|
:componentVisible="componentVisible"
|
|
:componentVisible="componentVisible"
|
|
@close="closeAddressDialog"
|
|
@close="closeAddressDialog"
|
|
- @update="update" />
|
|
|
|
|
|
+ @update="update" /> -->
|
|
<dialog-XX-success
|
|
<dialog-XX-success
|
|
:visible.sync="xxContentVisible"
|
|
:visible.sync="xxContentVisible"
|
|
:content="xxContent"
|
|
:content="xxContent"
|
|
@notify-parent="handleNotification"></dialog-XX-success>
|
|
@notify-parent="handleNotification"></dialog-XX-success>
|
|
- <el-dialog
|
|
|
|
- :lock-scroll="false"
|
|
|
|
- :visible.sync="urlDialogShow"
|
|
|
|
- center width="850px"
|
|
|
|
- top="20vh">
|
|
|
|
- <iframe
|
|
|
|
- :src="Tracking_URL"
|
|
|
|
- style="width:100%;height:500px;"
|
|
|
|
- frameborder="0"></iframe>
|
|
|
|
|
|
+ <el-dialog
|
|
|
|
+ :lock-scroll="false"
|
|
|
|
+ :visible.sync="urlDialogShow"
|
|
|
|
+ center
|
|
|
|
+ width="850px"
|
|
|
|
+ top="20vh">
|
|
|
|
+ <iframe
|
|
|
|
+ :src="Tracking_URL"
|
|
|
|
+ style="width: 100%; height: 500px"
|
|
|
|
+ frameborder="0"></iframe>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
import { mapMutations } from 'vuex'
|
|
import { mapMutations } from 'vuex'
|
|
-import addAddressDialog from '../../../components/addAddressDialog.vue'
|
|
|
|
|
|
+// import addAddressDialog from '../../../components/addAddressDialog.vue'
|
|
import dialogXXSuccess from '@/components/DIalogXXSuccess.vue'
|
|
import dialogXXSuccess from '@/components/DIalogXXSuccess.vue'
|
|
import imageUpload from '@/components/ImageUpload'
|
|
import imageUpload from '@/components/ImageUpload'
|
|
import { round } from '@/utils/price.js'
|
|
import { round } from '@/utils/price.js'
|
|
|
|
|
|
export default {
|
|
export default {
|
|
- components: { addAddressDialog, 'dialog-XX-success': dialogXXSuccess,imageUpload },
|
|
|
|
|
|
+ components: {
|
|
|
|
+ // addAddressDialog,
|
|
|
|
+ 'dialog-XX-success': dialogXXSuccess,
|
|
|
|
+ imageUpload,
|
|
|
|
+ },
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
xxContentVisible: false,
|
|
xxContentVisible: false,
|
|
@@ -486,18 +523,20 @@ export default {
|
|
limit: 20,
|
|
limit: 20,
|
|
},
|
|
},
|
|
enquiryTotal: 0,
|
|
enquiryTotal: 0,
|
|
- orderSelList:[],
|
|
|
|
|
|
+ orderSelList: [],
|
|
Tracking_URL: '',
|
|
Tracking_URL: '',
|
|
urlDialogShow: false,
|
|
urlDialogShow: false,
|
|
}
|
|
}
|
|
},
|
|
},
|
|
computed: {
|
|
computed: {
|
|
activeMenu() {
|
|
activeMenu() {
|
|
- return this.$route.query.type ?? 'profile';
|
|
|
|
|
|
+ return this.$route.query.type ?? 'profile'
|
|
|
|
+ },
|
|
|
|
+ selShow() {
|
|
|
|
+ return (
|
|
|
|
+ this.activeMenu === 'all-orders' || this.activeMenu === 'open-orders'
|
|
|
|
+ )
|
|
},
|
|
},
|
|
- selShow(){
|
|
|
|
- return this.activeMenu === 'all-orders' || this.activeMenu === 'open-orders'
|
|
|
|
- }
|
|
|
|
},
|
|
},
|
|
watch: {
|
|
watch: {
|
|
$route: {
|
|
$route: {
|
|
@@ -510,15 +549,14 @@ export default {
|
|
},
|
|
},
|
|
},
|
|
},
|
|
orderKeyword() {
|
|
orderKeyword() {
|
|
- this.orderListQuery.page = 1;
|
|
|
|
|
|
+ this.orderListQuery.page = 1
|
|
},
|
|
},
|
|
enquiryKeyword() {
|
|
enquiryKeyword() {
|
|
- this.enquiryListQuery.page = 1;
|
|
|
|
- }
|
|
|
|
|
|
+ this.enquiryListQuery.page = 1
|
|
|
|
+ },
|
|
},
|
|
},
|
|
mounted() {
|
|
mounted() {
|
|
if (this.$utils.checkLogin()) {
|
|
if (this.$utils.checkLogin()) {
|
|
- this.getMemberDetail()
|
|
|
|
this.updateType()
|
|
this.updateType()
|
|
} else {
|
|
} else {
|
|
this.$router.replace('/')
|
|
this.$router.replace('/')
|
|
@@ -539,19 +577,25 @@ export default {
|
|
updateType() {
|
|
updateType() {
|
|
if (this.activeMenu === 'profile') {
|
|
if (this.activeMenu === 'profile') {
|
|
this.tabName = 'My Profile'
|
|
this.tabName = 'My Profile'
|
|
|
|
+ this.getMemberDetail()
|
|
} else if (this.activeMenu === 'enquiry') {
|
|
} else if (this.activeMenu === 'enquiry') {
|
|
this.tabName = 'My Enquiry'
|
|
this.tabName = 'My Enquiry'
|
|
this.getEnquiryList()
|
|
this.getEnquiryList()
|
|
} else if (this.activeMenu === 'address') {
|
|
} else if (this.activeMenu === 'address') {
|
|
- this.tabName = 'My Address'
|
|
|
|
- this.getAddressList()
|
|
|
|
|
|
+ // this.tabName = 'My Address'
|
|
|
|
+ // this.getAddressList()
|
|
} else {
|
|
} else {
|
|
this.selword = ''
|
|
this.selword = ''
|
|
- if(this.activeMenu === 'all-orders'){
|
|
|
|
- this.orderSelList= ['Order Confirmed','In Production','In Transit','Order Completed']
|
|
|
|
|
|
+ if (this.activeMenu === 'all-orders') {
|
|
|
|
+ this.orderSelList = [
|
|
|
|
+ 'Order Confirmed',
|
|
|
|
+ 'In Production',
|
|
|
|
+ 'In Transit',
|
|
|
|
+ 'Order Completed',
|
|
|
|
+ ]
|
|
}
|
|
}
|
|
- if(this.activeMenu === 'open-orders'){
|
|
|
|
- this.orderSelList = ['Order Confirmed','In Production','In Transit']
|
|
|
|
|
|
+ if (this.activeMenu === 'open-orders') {
|
|
|
|
+ this.orderSelList = ['Order Confirmed', 'In Production', 'In Transit']
|
|
}
|
|
}
|
|
this.tabName = 'My Orders'
|
|
this.tabName = 'My Orders'
|
|
this.getOrdersList()
|
|
this.getOrdersList()
|
|
@@ -563,17 +607,19 @@ export default {
|
|
// 获取用户信息
|
|
// 获取用户信息
|
|
getMemberDetail() {
|
|
getMemberDetail() {
|
|
this.$axios
|
|
this.$axios
|
|
- .get('/api/au/member/detail')
|
|
|
|
|
|
+ .get('/uk-api/uk/member/detail')
|
|
.then(res => {
|
|
.then(res => {
|
|
if (res.code === 1) {
|
|
if (res.code === 1) {
|
|
this.profileform = res.result
|
|
this.profileform = res.result
|
|
- this.profileform.logo = this.profileform.logo?this.formatLogo(this.profileform.logo):[];
|
|
|
|
|
|
+ this.profileform.logo = this.profileform.logo
|
|
|
|
+ ? this.formatLogo(this.profileform.logo)
|
|
|
|
+ : []
|
|
}
|
|
}
|
|
})
|
|
})
|
|
.catch(() => {})
|
|
.catch(() => {})
|
|
},
|
|
},
|
|
- formatLogo(params){
|
|
|
|
- return [{ 'url': params }];
|
|
|
|
|
|
+ formatLogo(params) {
|
|
|
|
+ return [{ url: params }]
|
|
},
|
|
},
|
|
onSave(form) {
|
|
onSave(form) {
|
|
if (
|
|
if (
|
|
@@ -592,30 +638,31 @@ export default {
|
|
last_name: this.profileform.last_name,
|
|
last_name: this.profileform.last_name,
|
|
phone: this.profileform.phone,
|
|
phone: this.profileform.phone,
|
|
logo: this.profileform.logo[0]?.url ?? '',
|
|
logo: this.profileform.logo[0]?.url ?? '',
|
|
- };
|
|
|
|
|
|
+ }
|
|
let needLogout = false
|
|
let needLogout = false
|
|
if (this.accountPasswordForm.password.trim() !== '') {
|
|
if (this.accountPasswordForm.password.trim() !== '') {
|
|
- requestBody.password = this.accountPasswordForm.password;
|
|
|
|
- requestBody.confirm_password = this.accountPasswordForm.confirm_password;
|
|
|
|
|
|
+ requestBody.password = this.accountPasswordForm.password
|
|
|
|
+ requestBody.confirm_password =
|
|
|
|
+ this.accountPasswordForm.confirm_password
|
|
needLogout = true
|
|
needLogout = true
|
|
}
|
|
}
|
|
this.$axios
|
|
this.$axios
|
|
- .post('/api/au/member/edit', requestBody)
|
|
|
|
|
|
+ .post('/uk-api/uk/member/edit', requestBody)
|
|
.then(res => {
|
|
.then(res => {
|
|
if (res.code === 1) {
|
|
if (res.code === 1) {
|
|
- this.$notify({
|
|
|
|
- customClass: 'custom-notify-class',
|
|
|
|
- title: 'success',
|
|
|
|
- message: 'The profile information is modified successfully',
|
|
|
|
- type: 'success',
|
|
|
|
- })
|
|
|
|
- if(needLogout){
|
|
|
|
- setTimeout(() => {
|
|
|
|
- this.$store.dispatch('logout').then(() => {
|
|
|
|
- this.$router.push('/')
|
|
|
|
- })
|
|
|
|
- }, 500)
|
|
|
|
- }
|
|
|
|
|
|
+ this.$notify({
|
|
|
|
+ customClass: 'custom-notify-class',
|
|
|
|
+ title: 'success',
|
|
|
|
+ message: 'The profile information is modified successfully',
|
|
|
|
+ type: 'success',
|
|
|
|
+ })
|
|
|
|
+ if (needLogout) {
|
|
|
|
+ setTimeout(() => {
|
|
|
|
+ this.$store.dispatch('logout').then(() => {
|
|
|
|
+ this.$router.push('/')
|
|
|
|
+ })
|
|
|
|
+ }, 500)
|
|
|
|
+ }
|
|
}
|
|
}
|
|
})
|
|
})
|
|
.catch(() => {})
|
|
.catch(() => {})
|
|
@@ -627,17 +674,24 @@ export default {
|
|
},
|
|
},
|
|
// 获取订单列表
|
|
// 获取订单列表
|
|
getOrdersList() {
|
|
getOrdersList() {
|
|
- const accounts_id = this.accounts_id ? this.accounts_id : this.$store.state.userInfo?.memberCrmcomList.map((i)=>i.id).join()
|
|
|
|
- const type = this.activeMenu === 'all-orders'?'':this.activeMenu === 'open-orders'? 'Open Orders':'Closed Orders'
|
|
|
|
|
|
+ const accounts_id = this.accounts_id
|
|
|
|
+ ? this.accounts_id
|
|
|
|
+ : this.$store.state.userInfo?.memberCrmcomList.map(i => i.id).join()
|
|
|
|
+ const type =
|
|
|
|
+ this.activeMenu === 'all-orders'
|
|
|
|
+ ? ''
|
|
|
|
+ : this.activeMenu === 'open-orders'
|
|
|
|
+ ? 'Open Orders'
|
|
|
|
+ : 'Closed Orders'
|
|
this.tableLoading = true
|
|
this.tableLoading = true
|
|
this.$axios
|
|
this.$axios
|
|
- .post('/api/crmdata/order_lists', {
|
|
|
|
|
|
+ .post('/uk-api/crmdata/order_lists', {
|
|
keyword: this.orderKeyword,
|
|
keyword: this.orderKeyword,
|
|
page: this.orderListQuery.page,
|
|
page: this.orderListQuery.page,
|
|
limit: this.orderListQuery.limit,
|
|
limit: this.orderListQuery.limit,
|
|
accounts_id,
|
|
accounts_id,
|
|
Order_Stage: this.selword,
|
|
Order_Stage: this.selword,
|
|
- type
|
|
|
|
|
|
+ type,
|
|
})
|
|
})
|
|
.then(res => {
|
|
.then(res => {
|
|
if (res.code === 1) {
|
|
if (res.code === 1) {
|
|
@@ -656,14 +710,14 @@ export default {
|
|
goOrderDetail(row) {
|
|
goOrderDetail(row) {
|
|
const routeUrl = this.$router.resolve({
|
|
const routeUrl = this.$router.resolve({
|
|
path: '/home/myDetail/orderDetail',
|
|
path: '/home/myDetail/orderDetail',
|
|
- query: { id: row.sales_orders_id,crm: row.Account_Name_id },
|
|
|
|
|
|
+ query: { id: row.sales_orders_id, crm: row.Account_Name_id },
|
|
})
|
|
})
|
|
window.open(routeUrl.href, '_blank')
|
|
window.open(routeUrl.href, '_blank')
|
|
},
|
|
},
|
|
getEnquiryList() {
|
|
getEnquiryList() {
|
|
this.tableLoading = true
|
|
this.tableLoading = true
|
|
this.$axios
|
|
this.$axios
|
|
- .post('/api/crmdata/enquiries_lists', {
|
|
|
|
|
|
+ .post('/uk-api/crmdata/enquiries_lists', {
|
|
keyword: this.enquiryKeyword,
|
|
keyword: this.enquiryKeyword,
|
|
page: this.enquiryListQuery.page,
|
|
page: this.enquiryListQuery.page,
|
|
limit: this.enquiryListQuery.limit,
|
|
limit: this.enquiryListQuery.limit,
|
|
@@ -690,70 +744,68 @@ export default {
|
|
window.open(routeUrl.href, '_blank')
|
|
window.open(routeUrl.href, '_blank')
|
|
},
|
|
},
|
|
// 获取地址列表
|
|
// 获取地址列表
|
|
- getAddressList() {
|
|
|
|
- this.$axios
|
|
|
|
- .get('/api/address/list', {
|
|
|
|
- params: {
|
|
|
|
- page: this.addressListQuery.page,
|
|
|
|
- limit: this.addressListQuery.limit,
|
|
|
|
- },
|
|
|
|
- })
|
|
|
|
- .then(res => {
|
|
|
|
- if (res.code === 1) {
|
|
|
|
- this.addressList = res.result.data
|
|
|
|
- this.addressTotal = res.result.total
|
|
|
|
- }
|
|
|
|
- if (process.client) {
|
|
|
|
- this.$nextTick(() => {
|
|
|
|
- window.scroll(0, 0)
|
|
|
|
- })
|
|
|
|
- }
|
|
|
|
- })
|
|
|
|
- .catch(() => {})
|
|
|
|
- },
|
|
|
|
- addAddress(num) {
|
|
|
|
- this.addressDetail = {}
|
|
|
|
- this.componentVisible = num
|
|
|
|
- this.dialogVisible = true
|
|
|
|
- },
|
|
|
|
- editAddress(num, id) {
|
|
|
|
- this.$axios
|
|
|
|
- .get('/api/address/detail/' + id)
|
|
|
|
- .then(res => {
|
|
|
|
- this.addressDetail = res.result
|
|
|
|
- this.addressDetail.is_default = res.result.is_default === 1
|
|
|
|
- this.componentVisible = num
|
|
|
|
- this.dialogVisible = true
|
|
|
|
- })
|
|
|
|
- .catch(() => {})
|
|
|
|
- },
|
|
|
|
- delAddress(id) {
|
|
|
|
- this.$axios.get('/api/address/delete/' + id).then(res => {
|
|
|
|
- this.$notify({
|
|
|
|
- title: 'success',
|
|
|
|
- message: 'Deleted successfully',
|
|
|
|
- type: 'success',
|
|
|
|
- duration: 3000,
|
|
|
|
- })
|
|
|
|
- this.getAddressList()
|
|
|
|
- })
|
|
|
|
- // .catch((error) => {});
|
|
|
|
- },
|
|
|
|
- setDefault(id) {
|
|
|
|
- this.$axios.get('/api/address/set_default/' + id).then(res => {
|
|
|
|
- this.$notify({
|
|
|
|
- title: 'success',
|
|
|
|
- message: 'Default address is set successfully',
|
|
|
|
- type: 'success',
|
|
|
|
- duration: 3000,
|
|
|
|
- })
|
|
|
|
- this.getAddressList()
|
|
|
|
- })
|
|
|
|
- // .catch((error) => {});
|
|
|
|
- },
|
|
|
|
- update() {
|
|
|
|
- this.getAddressList()
|
|
|
|
- },
|
|
|
|
|
|
+ // getAddressList() {
|
|
|
|
+ // this.$axios
|
|
|
|
+ // .get('/api/address/list', {
|
|
|
|
+ // params: {
|
|
|
|
+ // page: this.addressListQuery.page,
|
|
|
|
+ // limit: this.addressListQuery.limit,
|
|
|
|
+ // },
|
|
|
|
+ // })
|
|
|
|
+ // .then(res => {
|
|
|
|
+ // if (res.code === 1) {
|
|
|
|
+ // this.addressList = res.result.data
|
|
|
|
+ // this.addressTotal = res.result.total
|
|
|
|
+ // }
|
|
|
|
+ // if (process.client) {
|
|
|
|
+ // this.$nextTick(() => {
|
|
|
|
+ // window.scroll(0, 0)
|
|
|
|
+ // })
|
|
|
|
+ // }
|
|
|
|
+ // })
|
|
|
|
+ // .catch(() => {})
|
|
|
|
+ // },
|
|
|
|
+ // addAddress(num) {
|
|
|
|
+ // this.addressDetail = {}
|
|
|
|
+ // this.componentVisible = num
|
|
|
|
+ // this.dialogVisible = true
|
|
|
|
+ // },
|
|
|
|
+ // editAddress(num, id) {
|
|
|
|
+ // this.$axios
|
|
|
|
+ // .get('/api/address/detail/' + id)
|
|
|
|
+ // .then(res => {
|
|
|
|
+ // this.addressDetail = res.result
|
|
|
|
+ // this.addressDetail.is_default = res.result.is_default === 1
|
|
|
|
+ // this.componentVisible = num
|
|
|
|
+ // this.dialogVisible = true
|
|
|
|
+ // })
|
|
|
|
+ // .catch(() => {})
|
|
|
|
+ // },
|
|
|
|
+ // delAddress(id) {
|
|
|
|
+ // this.$axios.get('/api/address/delete/' + id).then(res => {
|
|
|
|
+ // this.$notify({
|
|
|
|
+ // title: 'success',
|
|
|
|
+ // message: 'Deleted successfully',
|
|
|
|
+ // type: 'success',
|
|
|
|
+ // duration: 3000,
|
|
|
|
+ // })
|
|
|
|
+ // this.getAddressList()
|
|
|
|
+ // })
|
|
|
|
+ // },
|
|
|
|
+ // setDefault(id) {
|
|
|
|
+ // this.$axios.get('/api/address/set_default/' + id).then(res => {
|
|
|
|
+ // this.$notify({
|
|
|
|
+ // title: 'success',
|
|
|
|
+ // message: 'Default address is set successfully',
|
|
|
|
+ // type: 'success',
|
|
|
|
+ // duration: 3000,
|
|
|
|
+ // })
|
|
|
|
+ // this.getAddressList()
|
|
|
|
+ // })
|
|
|
|
+ // },
|
|
|
|
+ // update() {
|
|
|
|
+ // this.getAddressList()
|
|
|
|
+ // },
|
|
resetPassword() {
|
|
resetPassword() {
|
|
if (
|
|
if (
|
|
this.accountPasswordForm.confirm_password !==
|
|
this.accountPasswordForm.confirm_password !==
|
|
@@ -762,7 +814,7 @@ export default {
|
|
this.$message.error('The second password is inconsistent!')
|
|
this.$message.error('The second password is inconsistent!')
|
|
} else {
|
|
} else {
|
|
this.$axios({
|
|
this.$axios({
|
|
- url: '/api/au/member/reset',
|
|
|
|
|
|
+ url: '/uk-api/uk/member/reset',
|
|
method: 'POST',
|
|
method: 'POST',
|
|
data: this.accountPasswordForm,
|
|
data: this.accountPasswordForm,
|
|
})
|
|
})
|
|
@@ -777,9 +829,9 @@ export default {
|
|
})
|
|
})
|
|
}
|
|
}
|
|
},
|
|
},
|
|
- openTracking_URL(url){
|
|
|
|
- this.Tracking_URL= url
|
|
|
|
- this.urlDialogShow= true
|
|
|
|
|
|
+ openTracking_URL(url) {
|
|
|
|
+ this.Tracking_URL = url
|
|
|
|
+ this.urlDialogShow = true
|
|
},
|
|
},
|
|
handleNotification() {
|
|
handleNotification() {
|
|
this.$router.push('/')
|
|
this.$router.push('/')
|
|
@@ -800,59 +852,59 @@ export default {
|
|
</style>
|
|
</style>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
-.content{
|
|
|
|
|
|
+.content {
|
|
display: flex;
|
|
display: flex;
|
|
- .el-menu-vertical{
|
|
|
|
|
|
+ .el-menu-vertical {
|
|
width: 260px;
|
|
width: 260px;
|
|
min-height: 606px;
|
|
min-height: 606px;
|
|
background: #e8eaee;
|
|
background: #e8eaee;
|
|
.iconfont {
|
|
.iconfont {
|
|
- font-size: 22px;
|
|
|
|
|
|
+ font-size: 22px;
|
|
}
|
|
}
|
|
- :deep(.el-menu-item){
|
|
|
|
- font-size: 16px;
|
|
|
|
|
|
+ :deep(.el-menu-item) {
|
|
|
|
+ font-size: 16px;
|
|
&:hover {
|
|
&:hover {
|
|
- background-color: #e8eaee !important;
|
|
|
|
|
|
+ background-color: #e8eaee !important;
|
|
}
|
|
}
|
|
&.is-active {
|
|
&.is-active {
|
|
- background-color: #00213b !important;
|
|
|
|
|
|
+ background-color: #00213b !important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- :deep(.el-submenu__title){
|
|
|
|
- font-size: 16px;
|
|
|
|
- &:hover {
|
|
|
|
- background-color: #e8eaee !important;
|
|
|
|
|
|
+ :deep(.el-submenu__title) {
|
|
|
|
+ font-size: 16px;
|
|
|
|
+ &:hover {
|
|
|
|
+ background-color: #e8eaee !important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- :deep(.content-right){
|
|
|
|
- flex:1;
|
|
|
|
|
|
+ :deep(.content-right) {
|
|
|
|
+ flex: 1;
|
|
margin-left: 15px;
|
|
margin-left: 15px;
|
|
- &>div{
|
|
|
|
|
|
+ & > div {
|
|
min-height: 606px;
|
|
min-height: 606px;
|
|
}
|
|
}
|
|
.content-title {
|
|
.content-title {
|
|
- margin: 15px 0px 25px 15px;
|
|
|
|
- position: relative;
|
|
|
|
- width: 282px;
|
|
|
|
- height: 27px;
|
|
|
|
- font-size: 24px;
|
|
|
|
- font-weight: bold;
|
|
|
|
- color: #102f47;
|
|
|
|
- &::before {
|
|
|
|
- content: "";
|
|
|
|
- position: absolute;
|
|
|
|
- left: -14px;
|
|
|
|
- top: 50%;
|
|
|
|
- transform: translateY(-50%);
|
|
|
|
- width: 4px;
|
|
|
|
- height: 17px;
|
|
|
|
- background: #e90000;
|
|
|
|
- border-radius: 2px;
|
|
|
|
- margin-right: 10px;
|
|
|
|
|
|
+ margin: 15px 0px 25px 15px;
|
|
|
|
+ position: relative;
|
|
|
|
+ width: 282px;
|
|
|
|
+ height: 27px;
|
|
|
|
+ font-size: 24px;
|
|
|
|
+ font-weight: bold;
|
|
|
|
+ color: #102f47;
|
|
|
|
+ &::before {
|
|
|
|
+ content: '';
|
|
|
|
+ position: absolute;
|
|
|
|
+ left: -14px;
|
|
|
|
+ top: 50%;
|
|
|
|
+ transform: translateY(-50%);
|
|
|
|
+ width: 4px;
|
|
|
|
+ height: 17px;
|
|
|
|
+ background: #e90000;
|
|
|
|
+ border-radius: 2px;
|
|
|
|
+ margin-right: 10px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- .content-form{
|
|
|
|
|
|
+ .content-form {
|
|
border: 1px solid #c7c7c7;
|
|
border: 1px solid #c7c7c7;
|
|
padding: 0 20px;
|
|
padding: 0 20px;
|
|
.avatar-uploader .el-upload {
|
|
.avatar-uploader .el-upload {
|
|
@@ -883,8 +935,8 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- .upload-item{
|
|
|
|
- .el-form-item__content{
|
|
|
|
|
|
+ .upload-item {
|
|
|
|
+ .el-form-item__content {
|
|
z-index: 1;
|
|
z-index: 1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -1014,13 +1066,13 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- .location{
|
|
|
|
- color: #004A97;
|
|
|
|
- li{
|
|
|
|
|
|
+ .location {
|
|
|
|
+ color: #004a97;
|
|
|
|
+ li {
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- .center{
|
|
|
|
|
|
+ .center {
|
|
text-align: center;
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|
|
}
|