|
|
@ -32,6 +32,7 @@
|
|
|
|
@close="hideView">
|
|
|
|
@close="hideView">
|
|
|
|
<template slot="name">
|
|
|
|
<template slot="name">
|
|
|
|
<i v-if="detailData.is_lock == 1" class="wk wk-circle-password" />
|
|
|
|
<i v-if="detailData.is_lock == 1" class="wk wk-circle-password" />
|
|
|
|
|
|
|
|
|
|
|
|
<el-tooltip v-if="!isSeasDetail" :content="detailData.star == 0 ? '添加关注' : '取消关注'" effect="dark" placement="top">
|
|
|
|
<el-tooltip v-if="!isSeasDetail" :content="detailData.star == 0 ? '添加关注' : '取消关注'" effect="dark" placement="top">
|
|
|
|
<i
|
|
|
|
<i
|
|
|
|
:class="{active: detailData.star != 0}"
|
|
|
|
:class="{active: detailData.star != 0}"
|
|
|
@ -45,12 +46,11 @@
|
|
|
|
v-if="detailData.flow_id"
|
|
|
|
v-if="detailData.flow_id"
|
|
|
|
:id="id"
|
|
|
|
:id="id"
|
|
|
|
:record-id="detailData.flow_id"
|
|
|
|
:record-id="detailData.flow_id"
|
|
|
|
:owner-user-id="detailData.owner_user_id"
|
|
|
|
:owner-user-id="1"
|
|
|
|
class="examine-info"
|
|
|
|
class="examine-info"
|
|
|
|
examine-type="crm_customer_check"
|
|
|
|
examine-type="crm_customer_check"
|
|
|
|
@on-handle="examineHandle"/>
|
|
|
|
@on-handle="examineHandle"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<flexbox
|
|
|
|
<flexbox
|
|
|
|
class="d-container-bd"
|
|
|
|
class="d-container-bd"
|
|
|
|
align="stretch">
|
|
|
|
align="stretch">
|
|
|
@ -131,7 +131,7 @@ import RelativeHandle from '../components/RelativeHandle' // 相关操作
|
|
|
|
import RelativeTeam from '../components/RelativeTeam' // 团队成员
|
|
|
|
import RelativeTeam from '../components/RelativeTeam' // 团队成员
|
|
|
|
import RelativeVisit from '../components/RelativeVisit' // 回访
|
|
|
|
import RelativeVisit from '../components/RelativeVisit' // 回访
|
|
|
|
import RelativeInvoice from '../components/RelativeInvoice' // 发票
|
|
|
|
import RelativeInvoice from '../components/RelativeInvoice' // 发票
|
|
|
|
|
|
|
|
import ExamineInfo from '@/components/Examine/ExamineInfo'
|
|
|
|
import CRMAllCreate from '../components/CRMAllCreate' // 新建页面
|
|
|
|
import CRMAllCreate from '../components/CRMAllCreate' // 新建页面
|
|
|
|
import DetailMixin from '../mixins/Detail'
|
|
|
|
import DetailMixin from '../mixins/Detail'
|
|
|
|
|
|
|
|
|
|
|
@ -153,7 +153,8 @@ export default {
|
|
|
|
RelativeTeam,
|
|
|
|
RelativeTeam,
|
|
|
|
RelativeVisit,
|
|
|
|
RelativeVisit,
|
|
|
|
CRMAllCreate,
|
|
|
|
CRMAllCreate,
|
|
|
|
RelativeInvoice
|
|
|
|
RelativeInvoice,
|
|
|
|
|
|
|
|
ExamineInfo
|
|
|
|
},
|
|
|
|
},
|
|
|
|
mixins: [DetailMixin],
|
|
|
|
mixins: [DetailMixin],
|
|
|
|
props: {
|
|
|
|
props: {
|
|
|
@ -184,6 +185,7 @@ export default {
|
|
|
|
data() {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
return {
|
|
|
|
// 展示加载loading
|
|
|
|
// 展示加载loading
|
|
|
|
|
|
|
|
flow_id: 17,
|
|
|
|
loading: false,
|
|
|
|
loading: false,
|
|
|
|
crmType: 'customer',
|
|
|
|
crmType: 'customer',
|
|
|
|
headDetails: [
|
|
|
|
headDetails: [
|
|
|
@ -365,8 +367,19 @@ export default {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
watch: {},
|
|
|
|
watch: {},
|
|
|
|
mounted() {},
|
|
|
|
mounted() {
|
|
|
|
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 审核操作
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
examineHandle(data) {
|
|
|
|
|
|
|
|
// 1 审核通过 2 审核拒绝 4 已撤回
|
|
|
|
|
|
|
|
if (data.type == 1) {
|
|
|
|
|
|
|
|
this.getDetial()
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
this.$emit('handle', { type: 'examine' })
|
|
|
|
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 详情
|
|
|
|
* 详情
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|