123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279 |
- <template>
- <view>
- <navBar title="求职意向" color="#000" />
- <view class="list flex justify-center">
- <view class="list-box">
- <view
- class="list-box-item flex justify-center"
- v-for="(item, index) in list"
- :key="index"
- >
- <view class="list-box-item-con flex justify-between align-center">
- <view class="flex flex-wrap list-box-item-con-l">
- <view class="list-box-item-con-l-title">
- {{ item.ruleClassifyName }}
- </view>
- <view class="list-box-item-con-l-label flex align-center flex-wrap">
- <view
- class=""
- style="
- padding: 10rpx 15rpx 10rpx 15rpx;
- background-color: #f6f6f6;
- border-radius: 8rpx;
- margin-right: 20rpx;
- margin-bottom: 20rpx;
- "
- >
- {{ item.postType }}
- </view>
- <view
- class=""
- style="
- padding: 10rpx 15rpx 10rpx 15rpx;
- background-color: #f6f6f6;
- border-radius: 8rpx;
- margin-right: 20rpx;
- margin-bottom: 20rpx;
- "
- >
- {{ item.citys }}
- </view>
- <view
- class=""
- style="
- padding: 10rpx 15rpx 10rpx 15rpx;
- background-color: #f6f6f6;
- border-radius: 8rpx;
- margin-right: 20rpx;
- margin-bottom: 20rpx;
- "
- >
- {{ item.salaryRange }}
- </view>
- </view>
- <view class="list-box-item-con-l-type flex align-center">
- <view class="" v-for="(ite, ind) in item.industry.split(',')" :key="ind">
- {{ ite }}
- <text
- style="margin-left: 20rpx; margin-right: 20rpx"
- v-if="ind + 1 != item.industry.split(',').length"
- >|</text
- >
- </view>
- </view>
- </view>
- <view class="list-box-item-con-r flex align-center">
- <u-icon
- name="trash"
- color="#999999"
- size="46"
- @click="deleteJob(item.intentionId)"
- ></u-icon>
- <text style="margin: 0 10rpx; color: #f2f2f2; font-size: 46rpx">|</text>
- <u-icon
- name="edit-pen"
- color="#016BF6"
- size="46"
- @click="upData(item.intentionId)"
- ></u-icon>
- </view>
- </view>
- </view>
- <empty v-if="list.length == 0" />
- </view>
- </view>
- <!-- add -->
- <view class="addBtn flex justify-center" v-if="list.length < 3">
- <view class="addBtn-box flex justify-center align-center" @tap="gotoNav()">
- 添加求职意向
- </view>
- </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 {
- list: [],
- };
- },
- onLoad() {},
- onShow() {
- this.getMyList();
- },
- methods: {
- /**
- * @param {Object} intentionId
- * 删除求职意向
- */
- deleteJob(intentionId) {
- let that = this;
- uni.showModal({
- title: "提示",
- content: "确认删除此求职意向吗?",
- complete(ret) {
- if (ret.confirm) {
- that.$Request
- .postT("/app/intention/deleteIntention", {
- intentionId: intentionId,
- })
- .then((res) => {
- if (res.code == 0) {
- uni.showToast({
- title: "删除成功",
- });
- that.getMyList();
- } else {
- uni.showToast({
- title: res.msg,
- icon: "none",
- });
- }
- });
- }
- },
- });
- },
- /**
- * 获取我的求职意向列表
- */
- getMyList() {
- this.$Request.get("/app/intention/getIntentionList").then((res) => {
- if (res.code == 0) {
- this.list = res.data.records;
- }
- });
- },
- upData(intentionId) {
- uni.navigateTo({
- url: "./edit?intentionId=" + intentionId,
- });
- },
- //查询简历信息
- getResumesByUserId() {
- this.$Request.getT("/app/resumes/selectResumesByUserId").then((res) => {
- if (res.code == 0) {
- if (res.data) {
- uni.navigateTo({
- url: "./add",
- });
- } else {
- uni.showModal({
- title: "提示",
- content: "你还为添加简历,请添加简历后再添加求职意向",
- confirmColor: "#016BF6",
- confirmText: "添加简历",
- complete(ret) {
- if (ret.confirm) {
- uni.navigateTo({
- url: "/package/my/resume",
- });
- }
- },
- });
- }
- } else {
- uni.showToast({
- title: res.msg,
- icon: "none",
- });
- }
- });
- },
- gotoNav() {
- this.getResumesByUserId();
- },
- },
- };
- </script>
- <style lang="scss">
- page {
- background: #f2f2f7;
- }
- .list {
- width: 100%;
- height: auto;
- margin-top: 30rpx;
- .list-box {
- width: 686rpx;
- height: auto;
- .list-box-item {
- width: 100%;
- // height: 227rpx;
- background: #ffffff;
- border-radius: 24rpx;
- margin-bottom: 20rpx;
- }
- .list-box-item-con {
- width: 626rpx;
- height: 100%;
- padding-top: 20rpx;
- padding-bottom: 20rpx;
- .list-box-item-con-l {
- width: 80%;
- height: 100%;
- align-items: center;
- align-content: center;
- .list-box-item-con-l-title {
- width: 100%;
- color: #1f1f1f;
- font-size: 38rpx;
- font-weight: 800;
- }
- .list-box-item-con-l-label {
- width: 100%;
- margin-top: 20rpx;
- color: #666666;
- font-size: 28rpx;
- }
- .list-box-item-con-l-type {
- width: 100%;
- // margin-top: 20rpx;
- color: #999999;
- font-size: 28rpx;
- }
- }
- .list-box-item-con-r {
- // width: 46rpx;
- height: 46rpx;
- z-index: 9999;
- }
- }
- }
- }
- .addBtn {
- width: 100%;
- height: 88rpx;
- position: fixed;
- bottom: 100rpx;
- .addBtn-box {
- width: 686rpx;
- height: 100%;
- border-radius: 44rpx;
- background-color: #016bf6;
- color: #ffffff;
- font-size: 32rpx;
- font-weight: bold;
- }
- }
- </style>
|