| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492 |
- <template>
- <view class="post_item" @click.stop="handlePostRootClick">
- <view class="post_top">
- <view class="top_left">{{ item.name }}
-
- <view v-if="item.price" class="price">
- <u-icon name="rmb-circle"></u-icon>
- {{ item.price }}
- </view>
- </view>
- <view class="top_right">{{ item.assignStateCode === '1' ? "已分配" : "未分配" }}</view>
- </view>
- <view class="post_info">
- <view class="telPhone">
- <view class="phone">
- <text>电话: </text>
- <show-real-text :real="item.telephone" :type='type'
- :style="{ color: item.repetitionOperationName ? 'red' : 'black' }"></show-real-text>
- <template v-if="item.telAddr">
- ({{ item.telAddr }})
- </template>
- <text v-if="item.repetitionOperationName">( 撞 : {{ item.repetitionOperationName }})</text>
- </view>
- <view class="copy_btn" @click.stop="handleCopy(item)" v-if="type != '1'">复制</view>
- </view>
- <view class="telPhone" v-if="item.weixin">
- <text>微信: </text>
- <view class="phone">
- <text :style="{ color: item.repetitionOperWeixinName ? 'red' : 'black' }">{{ item.weixin }}</text>
- <text v-if="item.repetitionOperWeixinName">( 撞 : {{ item.repetitionOperWeixinName }})</text>
- </view>
- </view>
- <view class="info">
- <view class="createTime">{{ item.createTime }}</view>
- </view>
- <view class="info">
- <view>{{ item.appName }}</view>
- </view>
- <view class="info">
- <view class="owner">所属人 {{ item.clueOwnerName ? item.clueOwnerName : "-" }}</view>
- </view>
- <view class="info">
- <view class="operation">运营人 {{ item.clueOperationName ? item.clueOperationName : "-" }}</view>
- </view>
- <view class="info latest_follow_row" @click.stop="handleShowFollowDetail(item)">
- <view class="label">最新跟进记录:</view>
- <view class="latest_follow_content">
- <text class="latest_follow_text">{{ item.latestDynamicData || '暂无' }}</text>
- <text class="latest_follow_time" v-if="item.latestDynamicTime">{{ item.latestDynamicTime }}</text>
- </view>
- <!-- <view class="latest_follow_add" @click.stop="handleAddFollow(item)">增加</view> -->
- </view>
- </view>
- <view class="clue_state_wrap">
- <view class="clue_state">
- <view class="state_wrap">
- <view class="label">线索阶段:</view>{{ crm_clue_phase(item.clueState) }}
- </view>
- <view class="clueTag">
- <view class="label">线索标签:</view>
- <u-tag :text="tag.name" plain plainFill borderColor="#fff" size="mini"
- v-for="(tag) in item.clueTags" :key="tag.id" style="margin-right: 10px;" :bgColor="tag.color"
- color="#fff"></u-tag>
- </view>
- </view>
- </view>
- <view class="sendOrder inquiry" @click.stop="handleInquiry(item)">
- <image src='/static/publicClue/inquiry.png' mode="aspectFit" class="sendOrder_img"></image>
- <view>询价</view>
- </view>
- <view class="sendOrder" @click.stop="handleSendOrder(item)">
- <image src='/static/publicClue/littlePlane.png' mode="aspectFit" class="sendOrder_img"></image>
- <view>发单</view>
- </view>
- <add-inquiry-dialog ref="inquiryDialog" :clueId="clueId" :isClue="true" :editOrAdd="editOrAdd" :editInfo="editInfo" @cancel="handleInquiryCancel" :type="1"/>
- <!-- 最新跟进记录详情弹窗;关闭时记时间戳,避免蒙层点击冒泡触发详情跳转 -->
- <u-popup :show="followPopupVisible" mode="bottom" round="16" @close="onFollowPopupClose"
- :closeOnClickOverlay="true" @open="loadFollowList">
- <view class="follow_popup">
- <view class="follow_popup_title">跟进记录</view>
- <scroll-view scroll-y class="follow_popup_list" v-if="followList.length">
- <view class="follow_item" v-for="f in followList" :key="f.id">
- <view class="follow_top">
- <text class="person_name">{{ f.createNickname || f.createNickName || '-' }}</text>
- <text class="follow_time">{{ f.createTime }}</text>
- </view>
- <view class="follow_content">{{ f.content }}</view>
- </view>
- </scroll-view>
- <view class="follow_popup_empty" v-else-if="!followLoading">{{ followListError || '暂无跟进记录' }}</view>
- <view class="follow_popup_loading" v-else>加载中...</view>
- <!-- <view class="follow_popup_footer">
- <u-button type="primary" @click="handleAddFollowFromPopup">增加跟进</u-button>
- </view> -->
- </view>
- </u-popup>
- </view>
- </template>
- <script>
- import addInquiryDialog from '@/components/add-inquiry-dialog/index.vue'
- import {
- selectDictLabel
- } from "@/utils/util";
- export default {
- components: {
- addInquiryDialog
- },
- props: {
- item: {
- type: Object,
- required: true
- },
- dicts: {
- type: Object,
- required: true
- },
- type: {
- type: String | Number,
- required: true
- },
- },
- data() {
- return {
- caseStatusDicts: [],
- clueId: '',
- editOrAdd: 'add',
- editInfo: {},
- followPopupVisible: false,
- followList: [],
- followLoading: false,
- followListError: '',
- currentFollowClue: null,
- closedFollowPopupAt: 0
- }
- },
- methods: {
- // 字典翻译
- crm_clue_phase(caseStatus) {
- return selectDictLabel(this.dicts.caseStatusDicts, caseStatus);
- },
- handleCopy(item) {
- uni.setClipboardData({
- data: item.telephone,
- success: function () {
- uni.$u.toast("复制成功");
- }
- });
- },
- // 主页面的发单
- async handleSendOrder(item) {
- console.log(item);
- const {
- data: count
- } = await uni.$u.api.getClueSendFormCountByClueId({
- clueId: item.id
- });
- console.log(count);
- if (count > 0) {
- uni.showModal({
- title: '该线索已发单是否再次发单?',
- success: (res) => {
- if (res.confirm) {
- this.toOrderForm(item)
- }
- }
- });
- } else {
- this.toOrderForm(item)
- }
- },
- toOrderForm(item) {
- console.log(item);
- const {
- id,
- ownLatestDynamicTime,
- createTime,
- clueOwnerId
- } = item;
- if (this.$store.state.user.userInfo.userId === clueOwnerId) {
- uni.navigateTo({
- url: `/pages/orderForm/index?clueId=${id}`
- })
- } else {
- // 确定用于判断的目标时间(ownLatestDynamicTime,为null则用createTime)
- const date = ownLatestDynamicTime || createTime
- const twoDaysLater = new Date(date)
- twoDaysLater.setDate(twoDaysLater.getDate() + 2) // 日期加2天
- // 是否大于当前时间 小于可以发单
- let isOrderForm = false
- if (twoDaysLater) {
- isOrderForm = twoDaysLater.getTime() <= new Date().getTime()
- }
- if (isOrderForm) {
- uni.navigateTo({
- url: `/pages/orderForm/index?clueId=${id}`
- })
- } else {
- uni.$u.toast('非所属人需两天内无跟进记录才可发单')
- }
- }
- },
- // 询价
- async handleInquiry(item) {
- this.clueId = item.id
- if(Number(item.count) > 0){//count 默认是0,新增之后变为1,之后每编辑一次就会+1
- const data = {
- clueId: item.id,
- type:1
- }
- this.editOrAdd = 'editForm'
- uni.$u.api.inquiryDetail(data).then(res=>{
- if(res.code === 200){
- this.$nextTick(()=>{
- this.editInfo = res.data
- this.$refs.inquiryDialog.showDialog()
- })
- }
- })
- }else if(!item.count){
- this.editOrAdd = 'add'
- this.$refs.inquiryDialog.showDialog()
- }
- },
- // 询价取消
- handleInquiryCancel() {
- this.$refs.inquiryDialog.closeDialog()
- },
- // 卡片根节点点击:若刚因点蒙层关闭弹窗则不跳转,否则通知父组件跳转详情
- handlePostRootClick() {
- if (Date.now() - this.closedFollowPopupAt < 400) return
- this.$emit('to-detail', this.item)
- },
- onFollowPopupClose() {
- this.followPopupVisible = false
- this.closedFollowPopupAt = Date.now()
- },
- // 点击最新跟进记录,打开详情弹窗
- handleShowFollowDetail(item) {
- this.currentFollowClue = item
- this.followPopupVisible = true
- this.followList = []
- this.followListError = ''
- },
- // 弹窗打开时加载该线索的跟进列表
- async loadFollowList() {
- if (!this.currentFollowClue || !this.currentFollowClue.id) return
- this.followLoading = true
- this.followListError = ''
- try {
- const res = await uni.$u.api.getClueFollowListByClueId({ clueId: this.currentFollowClue.id })
- this.followList = (res.data || res) || []
- } catch (e) {
- console.error('获取跟进记录失败', e)
- this.followListError = '加载失败'
- this.followList = []
- } finally {
- this.followLoading = false
- }
- },
- // 增加跟进:跳转添加跟进页
- handleAddFollow(item) {
- const id = (item && item.id) || (this.currentFollowClue && this.currentFollowClue.id)
- if (!id) return
- uni.navigateTo({
- url: `/pages/addFollow/index?clueId=${id}`
- })
- this.followPopupVisible = false
- },
- // 弹窗内点击「增加跟进」
- handleAddFollowFromPopup() {
- this.handleAddFollow(this.currentFollowClue)
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- .post_item {
- background: #fff;
- border-radius: 20px;
- padding: 20px;
- margin-bottom: 20px;
- position: relative;
- .post_top {
- display: flex;
- justify-content: space-between;
- margin-bottom: 10px;
- .top_left {
- font-size: 18px;
- display: flex;
- .price{
- display: flex;
- align-items: center;
- }
- }
- .top_right {
- color: #87bf66;
- }
- }
- .post_info {
- font-size: 14px;
- .telPhone {
- display: flex;
- margin-bottom: 6px;
- .copy_btn {
- color: #4fa5fe;
- margin-left: 10px;
- }
- }
- .info {
- display: flex;
- margin-bottom: 10px;
- .createTime {
- margin-right: 10px;
- }
- .copy_btn {
- display: flex;
- flex-wrap: wrap;
- }
- }
- .latest_follow_row {
- align-items: flex-start;
- flex-wrap: wrap;
- .label {
- flex: 0 0 90px;
- color: #666;
- }
- .latest_follow_content {
- flex: 1;
- min-width: 0;
- display: flex;
- flex-direction: column;
- gap: 4px;
- }
- .latest_follow_text {
- font-size: 13px;
- color: #333;
- word-break: break-all;
- }
- .latest_follow_time {
- font-size: 12px;
- color: #999;
- }
- .latest_follow_add {
- flex-shrink: 0;
- color: #4fa5fe;
- font-size: 14px;
- margin-left: 8px;
- }
- }
- }
- .clue_state_wrap {
- font-size: 14px;
- background: #f8f9fb;
- padding: 10px;
- color: #9b9aa2;
- overflow: hidden;
- .state_wrap {
- display: flex;
- margin-bottom: 10px;
- }
- .label {
- flex: 0 0 66px;
- }
- .clueTag {
- display: flex;
- }
- }
- .sendOrder {
- width: 50px;
- height: 50px;
- background-color: rgb(36, 98, 234);
- color: #fff;
- border-radius: 50%;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- font-size: 10px;
- font-weight: 700;
- font-family: "uicon";
- position: absolute;
- right: 20px;
- bottom: 115px;
- .sendOrder_img {
- width: 20px;
- height: 20px;
- }
- }
- .inquiry {
- right: 140rpx;
- color: #2563eb;
- border: 1px solid #2563eb;
- background-color: #fff;
- }
- }
- .follow_popup {
- padding: 24rpx 30rpx 40rpx;
- max-height: 70vh;
- display: flex;
- flex-direction: column;
- .follow_popup_title {
- font-size: 34rpx;
- font-weight: 600;
- margin-bottom: 24rpx;
- text-align: center;
- }
- .follow_popup_list {
- flex: 1;
- max-height: 50vh;
- margin-bottom: 24rpx;
- }
- .follow_item {
- padding: 20rpx 0;
- border-bottom: 1rpx solid #eee;
- &:last-child {
- border-bottom: none;
- }
- .follow_top {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 12rpx;
- font-size: 24rpx;
- .person_name {
- color: #333;
- font-weight: 500;
- }
- .follow_time {
- color: #999;
- }
- }
- .follow_content {
- font-size: 26rpx;
- color: #666;
- line-height: 1.5;
- word-break: break-all;
- }
- }
- .follow_popup_empty,
- .follow_popup_loading {
- text-align: center;
- color: #999;
- font-size: 28rpx;
- padding: 60rpx 0;
- }
- .follow_popup_footer {
- padding-top: 20rpx;
- }
- }
- </style>
|