| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 |
- <template>
- <div class="h-full flex">
- <div class="p-5 w-80 pr-0">
- <div class="bg-white w-full h-full shadow-md rounded-md flex flex-col">
- <div class="flex-1 p-3 overflow-y-auto">
- <el-form :model="businessOpportunityForm" label-width="70px" style="max-width: 600px">
- <el-form-item label="商机名称">
- <el-input v-model="businessOpportunityForm.name" clearable placeholder="请输入"></el-input>
- </el-form-item>
- <el-form-item label="商机阶段">
- <el-select v-model="businessOpportunityForm.stageId" placeholder="请选择">
- <el-option v-for="item in fixedData.BusinessStage" :key="item.id" :label="item.name" :value="item.id" />
- </el-select>
- </el-form-item>
- <el-form-item label="客户名称">
- <el-input v-model="businessOpportunityForm.customerName" clearable placeholder="请输入"></el-input>
- </el-form-item>
- <el-form-item label="联系人">
- <el-input v-model="businessOpportunityForm.contactPerson" clearable placeholder="请输入"></el-input>
- </el-form-item>
- <el-form-item label="产品">
- <el-select v-model="businessOpportunityForm.product" placeholder="请选择">
- <el-option v-for="item in fixedData.Personnel" :key="item.id" :label="item.name" :value="item.id" />
- </el-select>
- </el-form-item>
- <el-form-item label="负责人">
- <el-select v-model="businessOpportunityForm.inchargerId" placeholder="请选择">
- <el-option v-for="item in fixedData.Personnel" :key="item.id" :label="item.name" :value="item.id" />
- </el-select>
- </el-form-item>
- <el-form-item label="创建时间">
- <el-date-picker v-model="businessOpportunityForm.startTime" type="date" placeholder="请选择" :clearable="false"
- format="YYYY-MM-DD" value-format="YYYY-MM-DD" />
- </el-form-item>
- <el-form-item label="">
- <el-date-picker v-model="businessOpportunityForm.endTime" type="date" placeholder="请选择" :clearable="false"
- format="YYYY-MM-DD" value-format="YYYY-MM-DD" />
- </el-form-item>
- </el-form>
- </div>
- <div class="w-full flex p-3 shadow-[0_-3px_5px_0px_rgba(0,0,0,0.2)]">
- <El-button class="w-full">重置</El-Button>
- <El-button type="primary" class="w-full">搜索</El-Button>
- </div>
- </div>
- </div>
- <div class="flex-1 p-5 overflow-auto">
- <div class="bg-white w-full h-full p-3 shadow-md rounded-md flex flex-col">
- <div class="flex justify-end pb-3">
- <el-button type="primary" @click="showVisible('newBusinessisible')">新建商机</el-button>
- <el-button type="primary">批量转移</el-button>
- <el-button type="primary">批量删除</el-button>
- <el-button type="primary">阶段设置</el-button>
- <el-button type="primary">回收站</el-button>
- <el-button type="primary">导入</el-button>
- <el-button type="primary">导出</el-button>
- </div>
- <div class="flex-1 w-full overflow-hidden">
- <el-table ref="clueTableRef" :data="businessTable" border v-loading="allLoading.businessTableLading"
- style="width: 100%;height: 100%;">
- <el-table-column type="selection" width="55" />
- <el-table-column prop="name" label="商机名称" width="180">
- <template #default="scope">
- <el-button link type="primary" size="large" @click="toBusinessTableDetail(scope.row)">{{
- scope.row.name
- }}</el-button>
- </template>
- </el-table-column>
- <el-table-column prop="clueSourceId" label="客户名称" width="180"></el-table-column>
- <el-table-column prop="phone" label="联系人" width="180">
- <template #default="scope">
- <el-button link type="primary" size="large">{{
- scope.row.phone
- }}</el-button>
- </template>
- </el-table-column>
- <el-table-column prop="email" label="商机金额" width="180"></el-table-column>
- <el-table-column prop="customerIndustryId" label="商机阶段" width="180"></el-table-column>
- <el-table-column prop="customerLevelId" label="预计成交" width="180"></el-table-column>
- <el-table-column prop="inchargerId" label="负责人" width="180"></el-table-column>
- <el-table-column prop="createName" label="创建人" width="180"></el-table-column>
- <el-table-column prop="createTime" label="创建时间" width="180"></el-table-column>
- <el-table-column label="操作" fixed="right" width="200">
- <template #default="scope">
- <el-button link type="primary" size="large">编辑</el-button>
- <el-button link type="primary" size="large">新建任务</el-button>
- <el-button link type="danger" size="large">删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- <div class="flex justify-end pt-3">
- <el-pagination layout="total, prev, pager, next, sizes" :total="businessTotalTable"
- :hide-on-single-page="true" />
- </div>
- </div>
- </div>
- <!-- 弹窗 -->
- <el-dialog v-model="allVisible.newBusinessisible" width="1000" :show-close="false" top="10vh"
- :before-close="handleClose">
- <template #header="{ close, titleId, titleClass }">
- <div class="flex justify-between items-center border-b pb-3 dialog-header">
- <h4 :id="titleId">{{ allText.newBusinessisibleText }}</h4>
- <div>
- <el-button type="primary">保存并新建</el-button>
- <el-button type="primary" @click="editBusiness()">保存</el-button>
- <el-button @click="closeVisible('newBusinessisible')">取消</el-button>
- </div>
- </div>
- </template>
- <div class="h-[60vh] overflow-y-auto scroll-bar">
- <!-- <GenerateForm ref="generateForm" :data="generateFormData" /> -->
- <div>相关产品</div>
- <RelatedProducts :productTableList="productTableList" />
- </div>
- </el-dialog>
- </div>
- </template>
- <script lang="ts" setup>
- import { ref, reactive, onMounted, inject } from "vue";
- import type { FormInstance, FormRules } from 'element-plus'
- import { useRouter, useRoute } from "vue-router";
- import { GETSYSFILED, MOD, GETPERSONNEL, GETGENERATEFOEM } from './api'
- import { GETTABLELIST } from '@/pages/product/api'
- import { post, get } from "@/utils/request";
- import { getAllListByCode, getFromValue, resetFromValue, getFirstDayOfMonth, getLastDayOfMonth, formatDate } from '@/utils/tools'
- import { GenerateForm } from '@zmjs/form-design';
- import RelatedProducts from './component/relatedProducts.vue'
- const route = useRoute()
- const router = useRouter()
- const globalPopup = inject<GlobalPopup>('globalPopup')
- const businessTotalTable = ref(0)
- const generateForm = ref<typeof GenerateForm>() // 自定义表单dom
- const generateFormData = ref({
- config: {},
- list: []
- }) // 自定义表单数据
- const businessTable = ref([
- { name: '商机040101', phone: '张山' }
- ])
- const allLoading = reactive<AllLoadingInterface>({
- businessTableLading: false
- })
- const allVisible = reactive<AllVisibleInterface>({
- newBusinessisible: false,
- recycleVisible: false,
- })
- const allText = reactive({
- newBusinessisibleText: '新建商机'
- }) // 所有文本
- const businessOpportunityForm = reactive<businessOpportunityFormType>({
- name: '',
- stageId: '',
- customerName: '',
- contactPerson: '',
- product: '',
- inchargerId: '',
- startTime: getFirstDayOfMonth(new Date()),
- endTime: formatDate(new Date()),
- pageIndex: 1,
- pageFrom: 10
- })
- const fixedData = reactive({
- BusinessStage: [] as fixedDataInterface[],
- Personnel: [] as personnelInterface[]
- })
- const productTableList = ref([])
- function editBusiness() {
- generateForm.value?.getData().then((res: any) => {
- console.log('正确')
- console.log(res)
- }).catch((_err: any) => {
- globalPopup?.showError('请填写完整')
- })
- }
- function showVisible(type: keyof AllVisibleInterface) { // 显示弹窗
- allVisible[type] = true
- }
- function closeVisible(type: keyof AllVisibleInterface) {
- allVisible[type] = false
- }
- function handleClose(done: () => void) {
- done()
- }
- async function getSystemField() {
- const systemField = getAllListByCode(['商机阶段'])
- for (let i in systemField) {
- const { data } = await get(`${GETSYSFILED}?code=${systemField[i]}`)
- for (let key of Object.keys(fixedData)) {
- if (systemField[i] == key) {
- Object.assign(fixedData, { [key]: data })
- }
- }
- }
- const { data } = await post(GETPERSONNEL, {})
- fixedData.Personnel = data.map((item: any) => {
- const { id, name, phone, jobNumber } = item
- return {
- id, name, phone, jobNumber
- }
- })
- const res = await get(GETGENERATEFOEM)
- generateFormData.value = JSON.parse(res.data[0].config)
- }
- function toBusinessTableDetail(row: any) {
- console.log('点击跳转详情')
- router.push({
- path: `${MOD}/detail`,
- query: { id: row.id }
- })
- }
- function getProductTableList() {
- post(GETTABLELIST, { pageIndex: -1, pageSize: -1 }).then((res) => {
- if (res.code == 'ok') {
- const { record, total } = res.data
- productTableList.value = record.map((item: any) => {
- const { id, productName, productCode, unit, unitName, typeName, type, price, inventory } = item
- return {
- productId: id,
- productName,
- productCode,
- unit,
- unitName,
- price,
- type,
- typeName,
- inventory,
- quantity: '',
- discount: '',
- totalPrice: ''
- }
- })
- }
- })
- }
- onMounted(() => {
- getSystemField()
- getProductTableList()
- })
- </script>
- <style lang="scss" scoped>
- .dialog-header {
- h4 {
- font-size: 18px;
- line-height: 24px;
- }
- }
- </style>
|