用工小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

426 lines
12 KiB

<template>
<view>
<u--form labelPosition="left" :model="form" :rules="rules" ref="uForm" labelWidth="80">
<view class="se-p-20">
<view class="se-px-20 se-bgc-white se-br-10 se-fs-20">
<u-form-item labelWidth="0">
<view class="se-flex se-flex-ai-c">
<view class="line-orange"></view>
<view class="se-ml-10 se-fs-32 se-c-black se-fw-6">
标题
</view>
</view>
</u-form-item>
<u-form-item labelWidth="0" prop="title">
<u--input v-model="form.title" placeholder="请在此输入标题"></u--input>
</u-form-item>
<u-form-item label="工作地点" prop="area" @click="handleAreaChange">
<u--input @click="handleAreaChange" readonly v-model="form.area" placeholder="请选择工作地点"
border="none"></u--input>
<u-icon @click="handleAreaChange" slot="right" name="arrow-right"></u-icon>
</u-form-item>
<!-- <u-form-item label="详细地址" prop="address">
<u--textarea v-model="form.address" count
placeholder="请输入详细地址"></u--textarea>
</u-form-item> -->
<u-form-item label="所属行业" prop="industryName" @click="handleindustryChange">
<u--input @click="handleindustryChange" readonly v-model="form.industryName" placeholder="请选择行业"
border="none"></u--input>
<u-icon @click="handleindustryChange" slot="right" name="arrow-right"></u-icon>
</u-form-item>
<u-form-item label="所属工种" prop="typeId" @click="handleTypeChange">
<u--input @click="handleTypeChange" v-model="form.typeName" readonly placeholder="请选择工种"
border="none"></u--input>
<u-icon @click="handleTypeChange" slot="right" name="arrow-right"></u-icon>
</u-form-item>
<u-form-item label="期望月薪" prop="salary">
<view class="se-flex se-flex-h-c">
<u--input v-model="form.salaryMin" class="se-w-200" placeholder="最小值"></u--input>
<text class="se-mx-10">~</text>
<u--input v-model="form.salaryMax" class="se-w-200" placeholder="最大值"></u--input>
</view>
</u-form-item>
<u-form-item label="期望日薪" prop="dayMoney">
<u--input v-model="form.dayMoney" placeholder="期望日薪"></u--input>
</u-form-item>
<u-form-item label="结算方式" prop="settlement">
<u-radio-group v-model="form.settlement" placement="row">
<u-radio activeColor="#FF7A31" name="0" label="提前支付"></u-radio>
<u-radio activeColor="#FF7A31" class="se-ml-20" name="1" label="试用以后支付"></u-radio>
</u-radio-group>
</u-form-item>
<u-form-item label="开始时间" prop="dateMin" @click="showMinDate=true">
<u--input v-model="form.dateMin" disabled placeholder="开始时间"></u--input>
</u-form-item>
<u-form-item label="结束时间" prop="dateMax" @click="showMaxDate=true">
<u--input v-model="form.dateMax" disabled placeholder="结束时间"></u--input>
</u-form-item>
<u-form-item label="联系电话" prop="mobile">
<u--input v-model="form.mobile" placeholder="请输入联系方式"></u--input>
</u-form-item>
<u-form-item label="工作内容" prop="introduce">
<u--textarea v-model="form.introduce" count placeholder="请选择工作内容"></u--textarea>
</u-form-item>
</view>
</view>
<view class="se-p-20">
<view class="se-px-20 se-pb-20 se-bgc-white se-br-10 se-fs-20">
<u-form-item prop="fileList" labelWidth="2">
<view class="se-flex se-flex-v-sa">
<view class="se-py-20 se-w-p-100 se-flex">
<view class="line-orange"></view>
<view class="se-ml-10">
图片上传
</view>
</view>
<view class="se-py-20 se-w-p-100">
<u-upload :fileList="form.fileList" @afterRead="afterRead" @delete="deletePic" name="1"
multiple :maxCount="10"></u-upload>
</view>
</view>
</u-form-item>
</view>
</view>
<view class="se-px-20 se-pt-20">
<view class="se-px-20 se-pb-80 se-fs-20 se-flex">
<view @click="submit"
class="se-mx-10 se-flex-1 se-br-40 se-flex-h-c se-h-80 se-lh-80 se-ta-c se-fs-28 se-c-white se-bgc-orange">
<text>发布订单</text>
</view>
</view>
</view>
</u--form>
<!-- 性别 -->
<u-action-sheet :show="showIndustry" :actions="indList" title="请选择行业" @close="showIndustry = false"
@select="industrySelect">
</u-action-sheet>
<!-- 种类 -->
<u-action-sheet :show="showType" :actions="typeList" title="请选择种类" @close="showType = false"
@select="typeSelect">
</u-action-sheet>
<!-- 地址 -->
<citySelect v-model="showPicker" @city-change="handleCityChange"></citySelect>
<!-- 时间 Min-->
<u-datetime-picker :show="showMinDate" :value="form.dateMin" mode="datetime" closeOnClickOverlay
@confirm="dateMinConfirm" @cancel="dateMinClose" @close="dateMinClose"></u-datetime-picker>
<u-datetime-picker :show="showMaxDate" :value="form.dateMax" mode="datetime" closeOnClickOverlay
@confirm="dateMaxConfirm" @cancel="dateMaxClose" @close="dateMaxClose"></u-datetime-picker>
</view>
</template>
<script>
import {
addTask,
industryList,
industryById
} from "@/common/api.js"
import citySelect from '@/components/cityselect/index.vue'
export default {
components: {
citySelect
},
data() {
return {
showMinDate: false,
showMaxDate: false,
showPicker: false,
showIndustry: false,
indList: [],
industryList: [{
name: '打铁',
},
{
name: '打牌',
}
],
showType: false,
typeList: [],
form: {
title: "宜佳营业员",
area: '河北省-秦皇岛市-抚宁区',
address: '',
industryId: "1865294357074157570",
industryName: "建筑",
settlement: '0',
date: "",
dateMin: "2016-02-01 09:00:00",
dateMax: "2016-12-05 18:00:00",
mobile: '13189698114',
typeId: '',
typeName: "",
salary: '',
dayMoney: "300",
salaryMin: '6000',
salaryMax: '8000',
introduce: '宜佳营业员,每天工作8个小时,上班轻松!',
fileList: [{
url: "https://tennis-oss.xzaiyp.top/2024-12-31/4b65131c-41f8-4714-a31e-491d08dfb8c4.jpg"
}],
latitude: '12.34',
longitude: "146.74"
},
rules: {
title: [{
type: 'string',
required: true,
message: '请在此输入标题',
trigger: ['blur', 'change']
}],
area: [{
type: 'string',
required: true,
message: '请选择地址',
trigger: ['blur', 'change']
}],
address: [{
type: 'string',
required: true,
message: '请填写详细地址',
trigger: ['blur', 'change']
}],
industryName: [{
type: 'string',
required: true,
message: '请选择行业',
trigger: ['blur', 'change']
}],
typeId: [{
type: 'string',
required: true,
message: '请选择工种',
trigger: ['blur', 'change']
}],
dayMoney: [{
type: 'string',
required: true,
message: '期望日薪',
trigger: ['blur', 'change']
}],
settlement: [{
type: 'string',
required: true,
message: '请选择结算方式',
trigger: ['blur', 'change']
}],
mobile: [{
required: true,
message: '请输入手机号',
trigger: ['change', 'blur'],
},
{
validator: (rule, value, callback) => {
return uni.$u.test.mobile(value);
},
message: '手机号码不正确',
trigger: ['change', 'blur'],
},
],
date: [{
type: 'string',
max: 1,
required: true,
message: '请填写时间',
trigger: ['blur', 'change']
}],
salary: [{
type: 'string',
required: true,
message: '请输入试用日薪',
trigger: ['blur', 'change']
}],
introduce: [{
type: 'string',
required: true,
message: '请输入工作内容',
trigger: ['blur', 'change']
}],
fileList: [{
validator: (rule, value, callback) => {
if (value === null || value === undefined || value === '' || (Array.isArray(
value) && value.length === 0)) {
callback(new Error('照片不能为空'));
} else {
callback();
}
},
trigger: 'blur'
}],
},
}
},
watch: {
'form.salaryMin': {
handler(newVal, oldVal) {
if (!uni.$u.test.isEmpty(newVal) && !uni.$u.test.isEmpty(this.form.salaryMax)) {
this.form.salary = '有'
} else {
this.form.salary = ''
}
},
immediate: true
},
'form.salaryMax': {
handler(newVal, oldVal) {
if (!uni.$u.test.isEmpty(newVal) && !uni.$u.test.isEmpty(this.form.salaryMin)) {
this.form.salary = '有'
} else {
this.form.salary = ''
}
},
immediate: true
},
'form.dateMin': {
handler(newVal, oldVal) {
if (!uni.$u.test.isEmpty(newVal) && !uni.$u.test.isEmpty(this.form.dateMax)) {
this.form.date = '有'
} else {
this.form.date = ''
}
},
immediate: true
},
'form.dateMax': {
handler(newVal, oldVal) {
if (!uni.$u.test.isEmpty(newVal) && !uni.$u.test.isEmpty(this.form.dateMin)) {
this.form.date = '有'
} else {
this.form.date = ''
}
},
immediate: true
},
},
methods: {
dateMinConfirm(event) {
console.info(event)
this.showMinDate = false
this.form.dateMin = uni.$u.timeFormat(event.value, 'yyyy-mm-dd hh:MM:ss')
},
dateMinClose() {
this.showMinDate = false
},
dateMaxConfirm(event) {
this.showMaxDate = false
this.form.dateMax = uni.$u.timeFormat(event.value, 'yyyy-mm-dd hh:MM:ss')
},
dateMaxClose() {
this.showMaxDate = false
},
handleAreaChange() {
this.showPicker = true
},
handleCityChange(e) {
console.info(e)
this.form.area = e.province.label + '-' + e.city.label + '-' + e.area.label;
},
handleindustryChange() {
this.showIndustry = true
},
industrySelect(e) {
this.form.industryId = e.id
this.form.industryName = e.name
this.$refs.uForm.validateField('industryName')
this.onIndustryById()
},
onIndustryById() {
let that = this
industryById({
pid: that.form.industryId
}).then(response => {
that.typeList = response.result
}).catch(error => {
})
},
handleTypeChange() {
if (!this.form.industryId) {
return uni.$u.toast('请选择行业')
}
this.showType = true
},
typeSelect(e) {
this.form.typeId = e.id
this.form.typeName = e.name
this.$refs.uForm.validateField('typeId')
},
submit() {
this.$refs.uForm.validate().then(res => {
this.onaddTask()
// uni.$u.toast('校验通过')
}).catch(errors => {
// uni.$u.toast('校验失败')
})
},
onaddTask() {
let that = this
let params = {
"bossPhone": that.form.mobile, //招聘方联系方式
"dayMoney": that.form.dayMoney, //期望日薪
"endTime": that.form.dateMax,
// "industryId": that.form.industryId,
// "industryName": that.form.industryName,
"industryId": that.form.typeId,
"industryName": that.form.typeName,
"latitude": that.form.latitude,
"longitude": that.form.longitude,
"moneymax": that.form.salaryMax, //期望薪资最大值
"moneymin": that.form.salaryMin, //期望薪资最小值
"payType": that.form.settlement, //结算方式 0提前支付 1 试用后支付
"startTime": that.form.dateMin,
"title": that.form.title, //工作标题
"workAddress": that.form.area, //工作地址
"workDetail": that.form.introduce,
"workPic": that.form.fileList.map(item => item.url).join(','), //照片
}
addTask(params).then(response => {
const {
code
} = response
if (code === 200) {
uni.$u.toast("提交成功!")
setTimeout(() => {
uni.switchTab({
url: "/pages/home/index"
})
}, 1500)
}
}).catch(error => {
})
},
deletePic(event) {
this.form.fileList.splice(e.index, 1)
},
async afterRead(e) {
let self = this
e.file.forEach(file => {
self.$Oss.ossUpload(file.url).then(url => {
self.form.fileList.push({
url
})
})
})
},
onIndustryList() {
industryList({}).then(response => {
this.indList = response.result
}).catch(error => {
})
},
},
onReady() {
this.$refs.uForm.setRules(this.rules)
this.onIndustryList()
},
}
</script>
<style>
</style>