配置跳转
This commit is contained in:
@@ -133,8 +133,8 @@
|
|||||||
<script>
|
<script>
|
||||||
import { mapState } from 'vuex'
|
import { mapState } from 'vuex'
|
||||||
import AiEmpty from '../../components/AiEmpty.vue'
|
import AiEmpty from '../../components/AiEmpty.vue'
|
||||||
import add from './components/add.vue'
|
import add from './add.vue'
|
||||||
import detail from './components/detail.vue'
|
import detail from './detail.vue'
|
||||||
import AiAreaPicker from '../../components/AiAreaPicker.vue'
|
import AiAreaPicker from '../../components/AiAreaPicker.vue'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
|||||||
@@ -9,9 +9,9 @@
|
|||||||
<ai-area-picker v-model="forms.areaId" ref="areaIds" :areaId="areaIdProps" @select="areaSelect" style="color: #333"> </ai-area-picker>
|
<ai-area-picker v-model="forms.areaId" ref="areaIds" :areaId="areaIdProps" @select="areaSelect" style="color: #333"> </ai-area-picker>
|
||||||
</u-form-item>
|
</u-form-item>
|
||||||
|
|
||||||
<u-form-item label="走访对象" prop="applicationId" required style="position: relative">
|
<u-form-item label="走访对象" prop="application" required style="position: relative">
|
||||||
<u-input v-model="forms.applicationId" disabled placeholder="请选择走访对象" @click="toWalkObject" />
|
<u-input v-model="forms.application" disabled placeholder="请选择走访对象" @click="handerSelecUser" />
|
||||||
<!-- @click="showObject = true" -->
|
<!-- @click="showObject = true" @click="toWalkObject" -->
|
||||||
|
|
||||||
<u-select v-model="showObject" :list="Objectlist" @confirm="applicaStatus"></u-select>
|
<u-select v-model="showObject" :list="Objectlist" @confirm="applicaStatus"></u-select>
|
||||||
|
|
||||||
@@ -54,10 +54,10 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { mapState } from 'vuex'
|
import { mapState } from 'vuex'
|
||||||
import AiUploader from '../../../components/AiUploader.vue'
|
import { mapActions } from 'vuex'
|
||||||
import AiBack from '../../../components/AiBack.vue'
|
import AiUploader from '../../components/AiUploader.vue'
|
||||||
import walkObject from './walkObject.vue'
|
import AiBack from '../../components/AiBack.vue'
|
||||||
import AiAreaPicker from '../../../components/AiAreaPicker'
|
import AiAreaPicker from '../../components/AiAreaPicker'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'add',
|
name: 'add',
|
||||||
@@ -70,7 +70,7 @@ export default {
|
|||||||
},
|
},
|
||||||
forms: {
|
forms: {
|
||||||
areaId: '',
|
areaId: '',
|
||||||
applicationId: '',
|
application: '',
|
||||||
reality: '',
|
reality: '',
|
||||||
realityValue: '',
|
realityValue: '',
|
||||||
title: '',
|
title: '',
|
||||||
@@ -89,6 +89,7 @@ export default {
|
|||||||
flag: false,
|
flag: false,
|
||||||
addList: true,
|
addList: true,
|
||||||
areaIdProps: '',
|
areaIdProps: '',
|
||||||
|
clickedUserSelect: false,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: { ...mapState(['user']) },
|
computed: { ...mapState(['user']) },
|
||||||
@@ -98,13 +99,34 @@ export default {
|
|||||||
},
|
},
|
||||||
mounted() {},
|
mounted() {},
|
||||||
methods: {
|
methods: {
|
||||||
|
...mapActions(['selectEnterpriseContact']),
|
||||||
|
|
||||||
|
handerSelecUser() {
|
||||||
|
console.log(this.clickedUserSelect)
|
||||||
|
if (this.clickedUserSelect) return this.$u.toast('正在打开人员选择器')
|
||||||
|
|
||||||
|
this.clickedUserSelect = true
|
||||||
|
this.selectEnterpriseContact({
|
||||||
|
fromDepartmentId: 0,
|
||||||
|
type: ['user'],
|
||||||
|
optionId: this.forms.application?.map((e) => e.id),
|
||||||
|
})
|
||||||
|
.then((res) => {
|
||||||
|
// this.change(res?.userList || [])
|
||||||
|
this.clickedUserSelect = false
|
||||||
|
})
|
||||||
|
.catch(() => {
|
||||||
|
this.clickedUserSelect = false
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
submit() {
|
submit() {
|
||||||
console.log(1)
|
console.log(1)
|
||||||
if (this.flag) return
|
if (this.flag) return
|
||||||
|
|
||||||
this.$refs.uForm.validate((valid) => {
|
this.$refs.uForm.validate((valid) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
if (!this.forms.applicationId) {
|
if (!this.forms.application) {
|
||||||
return this.$u.toast('请选择走访对象')
|
return this.$u.toast('请选择走访对象')
|
||||||
}
|
}
|
||||||
if (!this.forms.title) {
|
if (!this.forms.title) {
|
||||||
@@ -125,7 +147,7 @@ export default {
|
|||||||
this.$instance
|
this.$instance
|
||||||
.post(`/appjobresume/addOrUpdate`, {
|
.post(`/appjobresume/addOrUpdate`, {
|
||||||
areaId: this.forms.areaId,
|
areaId: this.forms.areaId,
|
||||||
applicationId: '8883942d30aa4b76b33de1660d4870e4',
|
applicationId: '',
|
||||||
// object: this.forms.object,
|
// object: this.forms.object,
|
||||||
reality: this.forms.reality == Number ? this.forms.reality : this.forms.realitylabel,
|
reality: this.forms.reality == Number ? this.forms.reality : this.forms.realitylabel,
|
||||||
title: this.forms.title,
|
title: this.forms.title,
|
||||||
@@ -191,6 +213,7 @@ export default {
|
|||||||
::v-deep .u-form {
|
::v-deep .u-form {
|
||||||
.u-form-item {
|
.u-form-item {
|
||||||
margin-bottom: 16px;
|
margin-bottom: 16px;
|
||||||
|
// padding-bottom: 10px !important;
|
||||||
.u-form-item__body {
|
.u-form-item__body {
|
||||||
// .u-form-item--right {
|
// .u-form-item--right {
|
||||||
// .u-form-item--right__content {
|
// .u-form-item--right__content {
|
||||||
@@ -1,155 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div class="walkObject">
|
|
||||||
<u-navbar title="选择走访慰问对象" back-icon-color="#fff" title-color="#fff" title-width="300" title-size="36" :border-bottom="false" :background="backgroundNavbar"> </u-navbar>
|
|
||||||
|
|
||||||
<div class="header-top">
|
|
||||||
<u-search v-model="keyword" placeholder="搜索" :show-action="false" bg-color="#F5F5F5" search-icon-color="#CCCCCC" placeholder-color="#999999" @search="handerSearch" @clear="handerClear"></u-search>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="header-middle">
|
|
||||||
<div class="hint">可选范围</div>
|
|
||||||
|
|
||||||
<div class="empty-div"></div>
|
|
||||||
|
|
||||||
<div class="Checkbox">
|
|
||||||
<u-checkbox-group :wrap="true" @change="checkboxGroupChange">
|
|
||||||
<u-checkbox @change="checkboxChange" v-model="item.checked" v-for="(item, index) in list" shape="circle" :key="index" :name="item.name">
|
|
||||||
<img src="./images/user.png" alt="" style="width: 36px; height: 36px; border-radius: 8px; vertical-align: middle; margin: 0 18px 0 17px" />
|
|
||||||
<span>{{ item.name }}</span>
|
|
||||||
|
|
||||||
<u-icon name="arrow-right" color="#ccc" style="position: absolute; right: 0; top: 20px"></u-icon>
|
|
||||||
</u-checkbox>
|
|
||||||
</u-checkbox-group>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="fixedBtn">
|
|
||||||
<div class="typeName">
|
|
||||||
<span class="typeName-box" v-for="(item, index) in list" :key="index" v-if="item.checked == true">
|
|
||||||
{{ item.name }}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="subBtn" @click="submit">确定选择</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
name: 'walkObject',
|
|
||||||
components: {},
|
|
||||||
props: {},
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
backgroundNavbar: {
|
|
||||||
backgroundColor: '#3975C6',
|
|
||||||
},
|
|
||||||
keyword: '',
|
|
||||||
list: [
|
|
||||||
{
|
|
||||||
name: '残疾人',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: '精神病患者',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: '吸毒人员',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
nameList: [],
|
|
||||||
}
|
|
||||||
},
|
|
||||||
computed: {},
|
|
||||||
created() {},
|
|
||||||
mounted() {},
|
|
||||||
methods: {
|
|
||||||
checkboxGroupChange(e) {
|
|
||||||
console.log(1, e)
|
|
||||||
e.map((item) => {
|
|
||||||
console.log(item)
|
|
||||||
})
|
|
||||||
// list.map((item) => {
|
|
||||||
// if (item.checked == true) {
|
|
||||||
// var obj = { name: item.name }
|
|
||||||
// this.nameList.push(obj)
|
|
||||||
// }
|
|
||||||
// })
|
|
||||||
},
|
|
||||||
|
|
||||||
checkboxChange(e) {
|
|
||||||
console.log(2, e)
|
|
||||||
},
|
|
||||||
|
|
||||||
submit() {},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
.walkObject {
|
|
||||||
background: #ffffff;
|
|
||||||
padding-bottom: 118px;
|
|
||||||
.header-top {
|
|
||||||
background: #fff;
|
|
||||||
padding: 20px 32px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header-middle {
|
|
||||||
.hint {
|
|
||||||
padding: 0 20px 0 32px;
|
|
||||||
height: 112px;
|
|
||||||
line-height: 112px;
|
|
||||||
box-shadow: 0px 1px 0px 0px #e4e5e6;
|
|
||||||
font-size: 30px;
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
|
||||||
.empty-div {
|
|
||||||
height: 16px;
|
|
||||||
background: #f5f5f5;
|
|
||||||
}
|
|
||||||
.Checkbox {
|
|
||||||
padding: 0 20px 0 30px;
|
|
||||||
::v-deep .u-checkbox-group {
|
|
||||||
.u-checkbox {
|
|
||||||
position: relative;
|
|
||||||
height: 112px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.fixedBtn {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
position: fixed;
|
|
||||||
bottom: 0;
|
|
||||||
width: 100%;
|
|
||||||
box-sizing: border-box;
|
|
||||||
padding: 0 32px;
|
|
||||||
.subBtn {
|
|
||||||
margin: 20px 0 18px 0;
|
|
||||||
padding: 18px 32px;
|
|
||||||
background: #1365dd;
|
|
||||||
border-radius: 4px;
|
|
||||||
font-size: 32px;
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
.typeName {
|
|
||||||
// margin: 48px 0 44px 0;
|
|
||||||
margin: 36px 0 22px 0;
|
|
||||||
.typeName-box {
|
|
||||||
padding: 16px 14px;
|
|
||||||
background: #eaeef1;
|
|
||||||
border-radius: 8px;
|
|
||||||
font-size: 30px;
|
|
||||||
font-weight: 500;
|
|
||||||
margin-left: 10px;
|
|
||||||
}
|
|
||||||
.typeName-box:first-child {
|
|
||||||
margin-left: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
@@ -42,7 +42,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import AiBack from '../../../components/AiBack.vue'
|
import AiBack from '../../components/AiBack.vue'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'detail',
|
name: 'detail',
|
||||||
Reference in New Issue
Block a user