123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- <template>
- <view class="main">
- <view class="form_group">
- <view class="lable re">职位名称</view>
- <input placeholder="请输入" v-model="item.title" />
- </view>
- <view class="form_group">
- <view class="lable re">职位类型</view>
- <picker :disabled="true" @click="go('/pages/job/position/classification')">
- <input placeholder="请选择" v-model="item.positionName" :disabled="true" />
- <view class="icon more"></view>
- </picker>
- </view>
- <view class="form_group">
- <view class="lable re">职位描述(要求)</view>
- <leditor ref="editor" v-model="item.contents" placeholder="请输入职位描述"></leditor>
- </view>
- <view class="form_group" v-if="item.type == 0">
- <view class="lable re">经验要求</view>
- <picker :range="dict.experience" @change="picker($event, 'experience')">
- <input placeholder="请选择" v-model="item.experience" :disabled="true" />
- <view class="icon more"></view>
- </picker>
- </view>
- <view v-if="item.type == 0">
- <view class="form_group">
- <view class="lable re">薪资范围</view>
- <multiSelector v-model="item.salary" :range="dict.salary" name="薪资" placeholder="请选择薪资范围"></multiSelector>
- </view>
- </view>
- <view v-else>
- <view class="form_group">
- <view class="lable re">兼职金额(元)</view>
- <input type="number" placeholder="请输入" v-model="item.salary" />
- </view>
- <view class="form_group">
- <view class="lable re">结算类型</view>
- <picker :range="dict.unit" @change="picker($event, 'unit')">
- <input placeholder="请选择" v-model="item.unit" :disabled="true" />
- <view class="icon more"></view>
- </picker>
- </view>
- <view class="form_group">
- <view class="lable re">兼职时间</view>
- </view>
- <view class="form_group" style="display: flex">
- <view class="start">
- <picker mode="date" :start="end" @change="picker($event, 'startDate')">
- <input placeholder="开始时间" v-model="item.startDate" :disabled="true" />
- </picker>
- </view>
- <view class="hor">至</view>
- <view class="start">
- <picker mode="date" :start="end" @change="picker($event, 'endDate')">
- <input placeholder="结束时间" v-model="item.endDate" :disabled="true" />
- </picker>
- </view>
- </view>
- </view>
- <view class="form_group">
- <view class="lable" :class="item.type == 0 ? 're' : ''">{{ item.type == 0 ? '工作地点' : '兼职地点' }}</view>
- <picker :disabled="true" @click="chooseLocation()">
- <input :placeholder="item.type == 0 ? '请选择' : '留空不限工作地点'" v-model="item.location" :disabled="true" />
- <view class="icon more"></view>
- </picker>
- <input placeholder="请输入楼层/单元室/门牌号" v-model="item.mph" v-if="item.address" />
- <view class="bz">请仔细确认位置点,否置会影响求职者导航</view>
- </view>
- <button class="btn" @click="save()">{{ item.id ? '编辑' : '保存' }}</button>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- lable: '职位',
- user: this.getUser(),
- item: {},
- end: this.util.getDate('day'),
- dict: {
- positionName: this.util.getData('positionName'),
- experience: this.util.getData('experience'),
- education: ['不限'].concat(this.util.getData('education')),
- salary: [['面议'], ['']],
- location: this.util.getData('address'),
- unit: this.util.getData('unit')
- },
- rule: []
- };
- },
- onLoad(e) {
- if (e.type) {
- this.item.type = e.type;
- setTimeout(() => {
- uni.setNavigationBarTitle({ title: e.type == 0 ? '发布全职' : '发布兼职' });
- }, 300);
- }
- if (e.id) {
- this.http.request({
- url: '/app/position/manage/detail/' + e.id,
- success: (res) => {
- this.item = res.data.data;
- this.$refs.editor.setContents();
- uni.setNavigationBarTitle({ title: this.item.type == 0 ? '编辑全职' : '编辑兼职' });
- }
- });
- }
- uni.$on('select_position', (res) => {
- this.item.positionName = res.title;
- this.item.positionId = res.id;
- this.$forceUpdate();
- });
- },
- methods: {
- picker(e, tag) {
- if (tag == 'startDate' || tag == 'endDate') {
- this.item[tag] = e.detail.value;
- } else {
- this.item[tag] = this.dict[tag][e.detail.value];
- }
- this.$forceUpdate();
- },
- go(url) {
- uni.navigateTo({ url: url });
- },
- chooseLocation() {
- uni.chooseLocation({
- success: (res) => {
- let reg = /.+?(省|市|自治区|自治州|县|区)/g;
- let addressList = res.address.match(reg).toString().split(',');
- //注意区分直辖市;
- let city = addressList.length >= 3 ? addressList[1] : addressList[0];
- let region = addressList.length >= 3 ? addressList[2] : addressList[1];
- this.item.location = res.name;
- this.item.address = res.address;
- this.item.longitude = res.longitude;
- this.item.latitude = res.latitude;
- this.item.regionName = region;
- this.$forceUpdate();
- }
- });
- },
- save() {
- /* if (!this.verify.check(this.item, this.rule)) {
- uni.showModal({
- content: this.verify.error,
- showCancel: false
- });
- return false;
- } */
- this.http.request({
- url: this.item.id ? '/app/position/manage/edit' : '/app/position/manage/add',
- data: this.item,
- method: 'POST',
- success: (res) => {
- uni.showToast({ title: '操作成功' });
- setTimeout(() => {
- uni.$emit('position');
- uni.navigateBack();
- }, 1500);
- }
- });
- }
- }
- };
- </script>
- <style lang="scss"></style>
|