| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801 |
- <template>
- <view>
- <nav-bar title="求职记录"></nav-bar>
- <view class="qz-record">
- <view class="qz-title">求职记录</view>
- <view class="qz-desc">当前记录仅自己可见,招聘者无法看到你所浏览过或投递过的
- 其他岗位,当前数据仅保留半年的记录。</view>
- </view>
- <u-tabs :list="list" @change="tabClick" :current="tabIndex" class="tab-list"></u-tabs>
- <view class="gwList flex justify-center" v-if="dataList.length > 0">
- <view class="gwList-box">
- <view class="gwList-box-item flex justify-center" @click="gotoInfo(item)" v-for="(item, index) in dataList"
- :key="index">
- <view class="gwList-box-item-box">
- <view v-if="item && title != '面试记录'" class="gwList-box-item-box-title flex justify-between align-center">
- <text>{{ item.ruleClassifyName || item.postPush && item.postPush.ruleClassifyName }}</text>
- <text>
- {{ item.salaryRange || item.postPush && item.postPush.salaryRange }}
- <template v-if="item.salaryTimes || (item.postPush && item.postPush.salaryTimes)"> · {{ item.salaryTimes || item.postPush.salaryTimes }}</template>
- </text>
- </view>
- <block v-if="title == '我的收藏'">
- <view class="gwList-box-item-box-name">
- <text>{{ item.companyName ? item.companyName : "匿名公司" }}</text>
- <text v-if="item.companyPeople">{{ item.companyPeople }}</text>
- </view>
- <view class="gwList-box-item-box-label flex align-center flex-wrap">
- <view class="gw-tag" v-if="item.company && item.company.workRestTime">{{ item.company.workRestTime }}
- </view>
- <view class="gw-tag" v-for="(ite, ind) in formatWelfare(item, 'welfareTag', ';')" :key="ind">
- {{
- ite }}</view>
- </view>
- <view class="gwList-box-item-box-info flex justify-between align-center">
- <view class="gwList-box-item-box-info-l flex align-center">
- <image :src="item.hrAvatar ? item.hrAvatar : '/static/logo.png'" class="user-info-img"
- mode="aspectFill"></image>
- <text class="user-info-name">{{ item.hrName }}·{{ item.hrPosition }}</text>
- <!-- <view class="info-tag" v-if="item.salaryTimes">{{ item.salaryTimes }}</view> -->
- </view>
- <view class="gwList-box-item-box-info-r address-text">
- <!-- {{ item.county }} -->
- {{ item.address }}
- </view>
- </view>
- </block>
- <block v-else-if="title == '浏览记录'">
- <view class="gwList-box-item-box-name">
- <text>{{ item.companyName ? item.companyName : "匿名公司" }}</text>
- <text>{{ item.companyPeople ? item.companyPeople : 0 }}</text>
- </view>
- <view class="gwList-box-item-box-label flex align-center flex-wrap">
- <view class="gw-tag" v-if="item.company && item.company.workRestTime">{{ item.company.workRestTime }}
- </view>
- <view class="gw-tag" v-for="(ite, ind) in formatWelfare(item, 'welfareTag', ';')"
- :key="ind">
- {{
- ite }}</view>
- </view>
- <view class="gwList-box-item-box-info flex justify-between align-center">
- <view class="gwList-box-item-box-info-l flex align-center">
- <image :src="item.companyLogo ? item.companyLogo : '../../static/logo.png'" class="user-info-img"
- mode=""></image>
- <text v-if="item.companyLegalPerson" class="user-info-name">{{ item.companyLegalPerson }}·创始人</text>
- <!-- <view class="info-tag" v-if="item.salaryTimes">{{ item.salaryTimes }}</view> -->
- </view>
- <view class="gwList-box-item-box-info-r">
- <!-- {{ item.county }} -->
- {{ item.address }}
- </view>
- </view>
- </block>
- <block v-else-if="title == '沟通记录'">
- <view class="gwList-box-item-box-name">
- <text>{{ item.company && item.company.companyName ? item.company.companyName : "匿名公司" }}</text>
- <text>{{ item.company && item.company.companyPeople ? item.company.companyPeople : 0 }}</text>
- </view>
- <view class="gwList-box-item-box-label flex align-center flex-wrap">
- <view class="gw-tag" v-if="item.company && item.company.workRestTime">{{ item.company.workRestTime }}
- </view>
- <view class="gw-tag" v-for="(ite, ind) in (item.postPush && item.postPush.welfareTag ? item.postPush.welfareTag.split(';') : [])"
- :key="ind">{{
- ite }}</view>
- </view>
- <view class="gwList-box-item-box-info flex justify-between align-center">
- <view class="gwList-box-item-box-info-l flex align-center">
- <image
- :src="item.company && item.company.companyLogo ? item.company.companyLogo : '../../static/logo.png'"
- class="user-info-img" mode=""></image>
- <text class="user-info-name">{{ item.userEntity && item.userEntity.userName || '匿名'
- }}·{{ item.hr && item.hr.hrPosition || '创始人' }}</text>
- <!-- <view class="info-tag" v-if="item.postPush && item.postPush.salaryTimes">{{ item.postPush.salaryTimes
- }}
- </view> -->
- </view>
- <view class="gwList-box-item-box-info-r">
- <!-- {{ item.county }} -->
- {{ item.address }}
- </view>
- </view>
- </block>
- <block v-else-if="title == '面试记录'">
- <view class="gwList-box-item-box-info flex justify-between align-center padding0">
- <view class="logo-wrapper flex align-center justify-center">
- <image
- :src="item.company && item.company.companyLogo ? item.company.companyLogo : '../../static/logo.png'"
- class="company-info-img" mode=""></image>
- </view>
- <view class="companyRight">
- <view class="gwList-box-item-box-info-l flex justify-between align-center">
- <text class="companyName">{{ item.company && item.company.companyName || '匿名公司' }}</text>
- <view :class="['info-tag']">
- {{ item.status == 1 ? '待接受' : (item.status == 2 ? '已同意' : (item.status == 3 ? '已拒绝' : '已过期')) }}
- </view>
- </view>
- <view class="position-base-info">
- <text>{{ item.postPush && item.postPush.ruleClassifyName ? item.postPush.ruleClassifyName : "匿名"
- }}</text>·<text>{{ item.postPush && item.postPush.salaryRange }}</text>
- </view>
- <view class="main-tip-text">
- {{ item.interviewDateTime && item.interviewDateTime.substring(0, 10) || '' }}
- <text>{{ item.detailTime }}</text>
- </view>
- <view class="main-tip-text">{{ item.address }}</view>
- <view class="buttons flex" v-if="item.status == 1">
- <view class="button primary" @click.stop="setAccept(item)">接受</view>
- <view class="button" @click.stop="setReject(item)">拒绝</view>
- </view>
- <!-- <view class="gwList-box-item-box-label flex align-center flex-wrap">
- <view class="gw-tag" v-if="item.company && item.company.workRestTime">{{ item.company.workRestTime
- }}
- </view>
- <view class="gw-tag"
- v-for="(ite, ind) in (item.company && item.company.welfare ? item.company.welfare.split(';') : [])"
- :key="ind">{{
- ite }}</view>
- </view> -->
- <!-- <view class="gwList-box-item-box-info-r">
- {{ item.interviewDateTime && item.interviewDateTime.substring(0, 10) || '' }}
- <text>{{ item.detailTime }}</text>
- </view> -->
- <!-- <view class="gwList-box-item-box-info-r">
- {{ item.address }}
- </view> -->
- </view>
- </view>
- </block>
- <block v-else>
- <view class="gwList-box-item-box-name">
- <text> {{ item.companyName ? item.companyName : "匿名公司" }}</text>
- <text v-if="item.companyPeople">{{ item.companyPeople }}</text>
- </view>
- <view class="gwList-box-item-box-label flex align-center flex-wrap">
- <view class="gw-tag" v-if="item.company && item.company.workRestTime">{{ item.company.workRestTime }}
- </view>
- <view class="gw-tag" v-for="(ite, ind) in formatWelfare(item, 'welfareTag', ';')"
- :key="ind">
- {{ ite }}
- </view>
- </view>
- <view class="gwList-box-item-box-info flex justify-between align-center">
- <view class="gwList-box-item-box-info-l flex align-center">
- <image :src="item.hrAvatar ? item.hrAvatar : '/static/logo.png'" class="user-info-img"
- mode="aspectFill"></image>
- <text class="user-info-name">{{ item.hrName }}·{{ item.hrPosition }}</text>
- <!-- <view class="info-tag" v-if="item.salaryTimes">{{ item.salaryTimes }}</view> -->
- </view>
- <view class="gwList-box-item-box-info-r address-text">
- <!-- {{ item.county }} -->
- {{ item.address }}
- </view>
- </view>
- </block>
- </view>
- </view>
- </view>
- </view>
- <!-- 暂无数据 -->
- <view class="gwList" v-else>
- <empty />
- </view>
- <!-- 筛选悬浮 -->
- <view hidden class="filterSe" @click="goScreen()">
- <image src="../../static/images/my/filterSe.png" mode=""></image>
- </view>
- </view>
- </template>
- <script>
- import empty from "../../components/empty.vue";
- import navBar from '@/components/nav-bar/index.vue'
- export default {
- components: {
- empty,
- navBar
- },
- data() {
- return {
- dataList: [],
- page: 1,
- limit: 10,
- pages: "",
- title: "",
- tabIndex: 0, //tab选中的索引
- filter: {
- education: "", //学历
- salaryRange: "", //薪资
- experience: "", //经验
- companyPeople: "", //公司规模
- industry: "", //行业
- },
- list: [
- {
- name: "沟通过",
- },
- {
- name: "已投递",
- },
- {
- name: "面试",
- },
- {
- name: "收藏职位",
- },
- ],
- };
- },
- onLoad(option) {
- /* uni.setNavigationBarTitle({
- title: option.title,
- }); */
- uni.showLoading({
- title: "加载中",
- });
- this.title = option.title;
- var that = this
- that.getFilter()
- uni.$on('updateRecord', function () {
- that.page = 1;
- that.getFilter()
- })
- },
- onUnload() {
- uni.removeStorageSync("browse");
- uni.$off('updateRecord')
- },
- onReachBottom() {
- if (this.page < this.pages) {
- this.page += 1;
- if (this.title == "我的收藏") {
- this.getMyCollectionList();
- } else if (this.title == "浏览记录") {
- this.getDataList();
- } else if (this.title == "投递记录") {
- this.getDataLists();
- } else if (this.title == "沟通记录") {
- this.getDataLists(1);
- } else if (this.title == "面试记录") {
- this.getDataLists(3);
- }
- }
- },
- onPullDownRefresh() {
- this.page = 1;
- if (this.title == "我的收藏") {
- this.getMyCollectionList();
- } else if (this.title == "投递记录") {
- this.getDataLists();
- } else if (this.title == "沟通记录") {
- this.getDataLists(1);
- } else if (this.title == "面试记录") {
- this.getDataLists(3);
- }
- },
- methods: {
- // 去筛选
- goScreen() {
- uni.navigateTo({
- url: "/package/screen/screen?isBrowse=1",
- });
- },
- tabClick(e) {
- this.tabIndex = e;
- if (this.tabIndex == 3) {
- this.title = "我的收藏"
- this.getMyCollectionList();
- } else if (this.tabIndex == 1) {
- this.title = "投递记录"
- this.getDataLists();
- } else if (this.tabIndex == 0) {
- this.title = "沟通记录"
- this.getDataLists(1);
- } else if (this.tabIndex == 2) {
- this.title = "面试记录"
- this.getDataLists(3);
- }
- /* if (e == 2) {
- uni.navigateTo({
- url: "/my/jilu/mianshiDetail",
- });
- } */
- },
- getFilter() {
- if (uni.getStorageSync("browse") && uni.getStorageSync("browse").length > 0) {
- let browse = uni.getStorageSync("browse");
- console.log(browse, "2222222222");
- browse.map((item) => {
- let arr = [];
- item.list.map((ite) => {
- if (ite.value != "不限") {
- arr.push(ite.value);
- }
- });
- switch (item.name) {
- case "学历要求":
- this.filter.education = arr.join(",");
- break;
- case "薪资范围(单选)":
- this.filter.salaryRange = arr.join(",");
- break;
- case "经验要求":
- this.filter.experience = arr.join(",");
- break;
- case "公司规模":
- this.filter.companyPeople = arr.join(",");
- break;
- case "行业":
- this.filter.industry = arr.join(",");
- break;
- }
- });
- } else {
- this.filter.education = ""; //学历
- this.filter.experience = ""; //经验
- this.filter.industry = ""; //行业
- this.filter.salaryRange = ""; //薪资
- this.filter.companyPeople = ""; //公司规模
- }
- if (this.title == "我的收藏") {
- this.tabIndex = 3
- this.getMyCollectionList();
- } else if (this.title == "投递记录") {
- this.tabIndex = 1
- this.getDataLists();
- } else if (this.title == "沟通记录") {
- this.tabIndex = 0
- this.getDataLists(1);
- } else if (this.title == "面试记录") {
- this.tabIndex = 2
- this.getDataLists(3);
- }
- },
- /**
- * 我的收藏记录列表
- */
- getMyCollectionList() {
- let data = {
- page: this.page,
- limit: this.limit,
- education: this.filter.education, //学历
- salaryRange: this.filter.salaryRange, //薪资
- experience: this.filter.experience, //经验
- companyPeople: this.filter.companyPeople, //公司规模
- industry: this.filter.industry, //行业
- };
- this.$Request.getT("/app/myCollection/getMyCollectionListV2", data).then((res) => {
- uni.stopPullDownRefresh();
- uni.hideLoading();
- if (res.code == 0) {
- res.data.records.map((item) => {
- if (item.positionWelfare) {
- item.positionWelfare = this.formatWelfare(item);
- }
- });
- this.pages = res.data.pages;
- if (this.page == 1) {
- this.dataList = res.data.records;
- } else {
- this.dataList = [...this.dataList, ...res.data.records];
- }
- }
- });
- },
- formatWelfare(data, key = 'positionWelfare', s = ',') {
- if (!data?.positionWelfare) return []
- return data[positionWelfare]?.split(s) || []
- },
- gotoInfo(item) {
- if (this.title == "面试记录") {
- if (item.status == 1) {
- return this.$queue.showToast('已同意方可查看详情')
- }
- uni.navigateTo({
- url: "/my/jilu/mianshiDetail?recordId=" + item.recordId,
- });
- return
- }
- var postPushId = item.postPushId
- if (!postPushId) {
- uni.showToast({
- title: "岗位不存在",
- icon: "none",
- });
- return;
- }
- uni.navigateTo({
- url: "/pages/index/game/order?postPushId=" + postPushId,
- });
- },
- getDataLists(types = 0) {
- let data = {
- page: this.page,
- limit: this.limit,
- /* userId: uni.getStorageSync("userId"), */
- education: this.filter.education, //学历
- salaryRange: this.filter.salaryRange, //薪资
- experience: this.filter.experience, //经验
- companyPeople: this.filter.companyPeople, //公司规模
- industry: this.filter.industry, //行业
- };
- let action = '/app/sendRecord/getMyRecordListV2'
- switch (types) {
- case 0:
- break;
- case 1:
- action = '/app/sendRecord/getConversationList'
- break;
- case 3:
- action = '/app/interviewRecord/interviewList'
- break;
- }
- this.$Request.getT(action, data).then((res) => {
- uni.stopPullDownRefresh();
- uni.hideLoading();
- if (res.code == 0) {
- res.data.records.map((item) => {
- if (item.positionWelfare) {
- item.positionWelfare = this.formatWelfare(item);
- }
- });
- this.pages = res.data.pages;
- if (this.page == 1) {
- this.dataList = res.data.records;
- } else {
- this.dataList = [...this.dataList, ...res.data.records];
- }
- }
- });
- },
- getDataList() {
- let data = {
- page: this.page,
- limit: this.limit,
- education: this.filter.education, //学历
- salaryRange: this.filter.salaryRange, //薪资
- experience: this.filter.experience, //经验
- companyPeople: this.filter.companyPeople, //公司规模
- industry: this.filter.industry, //行业
- // browseType:1
- };
- this.$Request.getT("/app/userBrowse/selectMyBrowseV2", data).then((res) => {
- uni.stopPullDownRefresh();
- uni.hideLoading();
- if (res.code == 0) {
- res.data.records.map((item) => {
- if (item.positionWelfare) {
- item.positionWelfare = this.formatWelfare(item)
- } else {
- item.positionWelfare = [];
- }
- });
- this.pages = res.data.pages;
- if (this.page == 1) {
- this.dataList = res.data.records;
- } else {
- this.dataList = [...this.dataList, ...res.data.records];
- }
- }
- });
- },
- //拒绝邀请
- setReject(item) {
- uni.showModal({
- title: '提示',
- content: '确定拒绝来自' + item.company.companyName + '的面试邀请吗?',
- confirmColor: '#016BF6',
- complete: ret => {
- if (ret.confirm) {
- let data = {
- recordId: item.recordId,
- type: 2
- }
- this.$Request.getT("/app/interviewRecord/userUpdateInter", data).then(res => {
- if (res.code == 0) {
- uni.showToast({
- title: '已拒绝来自' + item.company.companyName + '的面试邀请'
- })
- this.page == 1
- this.getDataLists(3)
- } else {
- uni.showToast({
- title: res.msg,
- icon: 'none'
- })
- }
- })
- }
- }
- })
- },
- //接受邀请
- setAccept(item) {
- uni.showModal({
- title: '提示',
- content: '确定接受来自' + item.company.companyName + '的面试邀请吗?',
- confirmColor: '#016BF6',
- complete: ret => {
- if (ret.confirm) {
- let data = {
- recordId: item.recordId,
- type: 1
- }
- this.$Request.getT("/app/interviewRecord/userUpdateInter", data).then(res => {
- if (res.code == 0) {
- uni.showToast({
- title: '已接受面试邀请'
- })
- this.page == 1
- this.getDataLists(3)
- } else {
- uni.showToast({
- title: res.msg,
- icon: 'none'
- })
- }
- })
- }
- }
- })
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- page {
- background: #fff;
- }
- .filterSe {
- position: fixed;
- bottom: 10vh;
- right: 30rpx;
- image {
- width: 100rpx;
- height: 100rpx;
- // border-radius: 50%;
- }
- }
- .tab-list {
- margin-bottom: 20rpx;
- }
- .gwList {
- width: 100%;
- .gwList-box {
- width: 686rpx;
- height: 100%;
- .gwList-box-item {
- width: 100%;
- box-sizing: border-box;
- border: 1rpx solid rgba(227, 231, 236, 1);
- border-radius: 12rpx;
- background: #fdfdfd;
- padding: 36rpx;
- margin-bottom: 20rpx;
- }
- .gwList-box-item-box {
- width: 623rpx;
- height: 100%;
- .gwList-box-item-box-title {
- text:nth-of-type(1) {
- color: #171725;
- font-family: DM Sans;
- font-size: 32rpx;
- font-weight: 700;
- line-height: 48rpx;
- }
- text:nth-of-type(2) {
- color: #016bf6;
- font-family: DM Sans;
- font-size: 24rpx;
- font-weight: 700;
- line-height: 40rpx;
- }
- }
- .gwList-box-item-box-label {
- display: flex;
- align-items: center;
- gap: 8rpx;
- .gw-tag {
- /* 自动布局 */
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 8rpx;
- border-radius: 8rpx;
- box-sizing: border-box;
- background: #c6c6c61a;
- color: rgba(153, 153, 153, 1);
- font-family: DM Sans;
- font-size: 20rpx;
- font-weight: 400;
- line-height: 20rpx;
- }
- }
- .gwList-box-item-box-name {
- color: #9ca4ab;
- font-family: DM Sans;
- font-size: 24rpx;
- font-weight: 400;
- line-height: 40rpx;
- padding: 6rpx 0;
- box-sizing: border-box;
- text {
- margin-right: 8rpx;
- }
- // text:nth-of-type(1) {
- // width: 450rpx;
- // }
- }
- .gwList-box-item-box-info {
- font-size: 26rpx;
- padding-top: 20rpx;
- box-sizing: border-box;
- color: #9ca4ab;
- font-family: DM Sans;
- font-size: 16rpx;
- font-weight: 400;
- line-height: 40rpx;
- text-align: left;
- .gwList-box-item-box-info-l {
- .info-tag {
- border-radius: 8rpx;
- background: rgba(236, 225, 253, 1);
- padding: 8rpx;
- box-sizing: border-box;
- font-family: DM Sans;
- color: #7659d2;
- font-size: 16rpx;
- font-weight: 400;
- line-height: 20rpx;
- margin: 0 10rpx;
- flex-shrink: 0;
- // margin-left: 8rpx;
- }
- .user-info-img {
- width: 40rpx;
- height: 40rpx;
- border: 1rpx solid rgba(240, 240, 240, 1);
- border-radius: 50%;
- margin-right: 8.62rpx;
- flex-shrink: 0;
- }
- .user-info-name {
- white-space: nowrap;
- }
- }
- .address-text {
- text-align: right;
- }
-
- .logo-wrapper {
- align-self: flex-start;
- width: 96rpx;
- height: 96rpx;
- border-radius: 8px;
- background: rgba(246, 246, 246, 1);
- margin-right: 20rpx;
-
- .company-info-img {
- width: 80rpx;
- height: 80rpx;
- border: 1px solid rgba(240, 240, 240, 1);
- border-radius: 50%;
- }
- }
- .gwList-box-item-box-info-r {
- // max-width: 340rpx;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- flex: 1;
- margin-left: 30rpx;
- text {
- margin-left: 10rpx
- }
- }
- .companyRight {
- // width: 100%;
- flex: 1;
- .companyName {
- margin-right: 20rpx;
- color: rgba(23, 23, 37, 1);
- font-size: 28rpx;
- font-weight: 400;
- line-height: 44rpx;
- }
- .position-base-info {
- color: rgba(120, 130, 138, 1);
- font-size: 28rpx;
- font-weight: 400;
- line-height: 36rpx;
- margin-top: 8rpx;
- }
- .main-tip-text {
- color: rgba(1, 107, 246, 1);
- font-family: DM Sans;
- font-style: Regular;
- font-size: 24rpx;
- font-weight: 400;
- line-height: 32rpx;
- margin-top: 8rpx;
- }
- }
- }
- .padding0 {
- padding-top: 0
- }
- }
- }
- }
- .qz-record {
- padding: 20rpx 40rpx;
- box-sizing: border-box;
- .qz-title {
- color: rgba(51, 51, 51, 1);
- font-family: DM Sans;
- font-style: Bold;
- font-size: 48rpx;
- font-weight: 700;
- line-height: 60rpx;
- }
- .qz-desc {
- color: rgba(102, 102, 102, 1);
- font-family: DM Sans;
- font-size: 24rpx;
- font-weight: 400;
- line-height: 32rpx;
- margin-top: 20rpx;
- }
- }
- .buttons {
- padding-top: 10px;
- .button {
- width: 86px;
- height: 30px;
- border: 1px solid #016bf6;
- border-radius: 40px;
- line-height: 28px;
- text-align: center;
- font-size: 14px;
- color: #016bf6;
- margin-right: 10px;
- }
- .primary {
- border-color: rgba(1, 107, 246, 0.1);
- background: rgba(1, 107, 246, 0.1);
- }
- }
- </style>
|