123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- <template>
- <div class="flex flex-col h-full">
- <div class="bg-white info flex-1 overflow-y-auto cellnormall">
- <van-cell title="线索名称" :value="info.clueName" />
- <van-cell title="线索来源" :value="info.clueSourceValue" />
- <van-cell title="电话号码" :value="info.phone" />
- <van-cell title="邮箱" :value="info.email" />
- <van-cell title="客户行业" :value="info.customerIndustryValue" />
- <van-cell title="客户级别" :value="info.customerLevelValue" />
- <van-cell title="客户地址" :value="info.address" />
- <van-cell title="负责人">
- <template #default>
- <TranslationComponent :openId="info.inchargerName" />
- </template>
- </van-cell>
- <van-cell title="备注" :value="info.remark" />
- </div>
- <div class="bottomButton">
- <van-button type="warning" class="w-full block" v-if="info.inchargerName" @click="showDialogCli()">转移线索</van-button>
- <van-button type="primary" class="w-full block" v-if="!info.inchargerName" @click="claimAndClaim()">认领线索</van-button>
- </div>
- <!-- 转移弹窗 -->
- <van-dialog v-model:show="showDialog" :title="`转移线索`" show-cancel-button
- @confirm="confirmTransfer" :before-close="dialogCloseBefo">
- <van-cell title="转移至" is-link @click="showSelect = true">
- <template #value>
- {{ dialogSelection.label }}
- </template>
- </van-cell>
- <div class="themeTextColor text-size-small pl-4 pt-2 pb-2">转移后,将看不到此线索了</div>
- </van-dialog>
- <!-- select 选择器 -->
- <van-popup v-model:show="showSelect" destroy-on-close position="bottom" :style="{ height: '80%' }">
- <PullDownSelector @change="selectChange" />
- </van-popup>
- </div>
- </template>
- <script setup>
- import { ref } from 'vue';
- import { showConfirmDialog } from 'vant';
- import { useLifecycle } from '@hooks/useCommon.js';
- import { TRANSFER_CLUES } from '@hooks/useApi'
- import requests from "@common/requests";
- import useShowToast from '@hooks/useToast'
- import useInfoStore from '@store/useInfoStore'
- import useRouterStore from "@store/useRouterStore.js";
- const router = useRouterStore()
- const userInfo = useInfoStore()
- const { toastSuccess, toastFail, toastText } = useShowToast()
- const props = defineProps({
- info: {
- type: Object,
- required: true,
- default: () => ({})
- }
- })
- const showDialog = ref(false);
- const showSelect = ref(false);
- const dialogSelection = ref({});
- function listReloadData() {
- router.navigateBack({
- success: () => {
- router.eventEmit('moduleListRefreshData', {})
- }
- })
- }
- function confirmTransfer() {
- if(!dialogSelection.value.label) {
- return toastText('请选择要转移的人员')
- }
- requests.post(TRANSFER_CLUES, { ids: props.info.id, inchargerId: dialogSelection.value.value }).then((res) => {
- toastSuccess('转移成功')
- showDialog.value = false
- setTimeout(() => {
- listReloadData()
- }, 2000)
- })
- }
- function claimAndClaim() {
- showConfirmDialog({
- title: '认领线索',
- message: `确定认领【${props.info.clueName}】线索吗?`,
- }).then(() => {
- requests.post(TRANSFER_CLUES, { ids: props.info.id, inchargerId: userInfo.userInfo.id }).then((res) => {
- toastSuccess('认领成功')
- listReloadData()
- props.info.inchargerName = userInfo.userInfo.clueName
- showDialog.value = false
- })
- })
- }
- function selectChange(value, label) {
- dialogSelection.value = {
- value, label
- }
- showSelect.value = false
- }
- function showDialogCli() {
- showDialog.value = true
- }
- function dialogCloseBefo(val) {
- if(val == 'confirm' && showDialog.value) {
- return false
- }
- return true
- }
- useLifecycle({
- load: () => {
- // 添加加载逻辑
- }
- });
- </script>
- <style lang='scss' scoped>
- .bottomButton {
- margin: 0 14px;
- padding-bottom: 30px;
- :deep(.van-button) {
- margin-bottom: 20px;
- }
- }
- .info {
- margin: 8px 14px 30px 14px;
- padding: 14px;
- }
- </style>
|