|
@@ -1,15 +1,15 @@
|
|
|
<template>
|
|
|
<div class="add-business">
|
|
|
<!-- 自定义步骤条 -->
|
|
|
- <t-steps :current="current" status="process">
|
|
|
- <t-step-item title="步骤1">
|
|
|
- </t-step-item>
|
|
|
- <t-step-item title="步骤2">
|
|
|
- </t-step-item>
|
|
|
- <t-step-item title="步骤3">
|
|
|
- </t-step-item>
|
|
|
- </t-steps>
|
|
|
- <template v-if="current === 0">
|
|
|
+ <div class="add-steps">
|
|
|
+ <Steps
|
|
|
+ :activeStep="currentStep "
|
|
|
+ :allowStepClick="currentRoute !== 'addBusiness'"
|
|
|
+ @changeActiveStep="changeActiveStep"
|
|
|
+ >
|
|
|
+ </Steps>
|
|
|
+ </div>
|
|
|
+ <template v-if="currentStep === 1">
|
|
|
<div class="first-step-form-wrap">
|
|
|
<t-form
|
|
|
:data="firstFormData"
|
|
@@ -21,27 +21,27 @@
|
|
|
>
|
|
|
<div class="form-line">
|
|
|
<t-form-item label="所属区域" name="areaType">
|
|
|
- <t-radio-group v-model:modelValue="firstFormData.areaType">
|
|
|
+ <t-radio-group v-model:modelValue="firstFormData.areaType" :disabled="currentRoute === 'businessDetail'">
|
|
|
<t-radio label="国内" value="国内">国内</t-radio>
|
|
|
<t-radio label="海外" value="海外">海外</t-radio>
|
|
|
</t-radio-group>
|
|
|
</t-form-item>
|
|
|
<t-form-item label="商家名称" name="name">
|
|
|
- <!-- <t-input v-model:modelValue="firstFormData.name" placeholder="请输入商家名称"/> -->
|
|
|
+ <t-input v-model:modelValue="firstFormData.name" placeholder="商家名称" :disabled="currentRoute === 'businessDetail'" v-if="currentRoute === 'businessDetail'"/>
|
|
|
<autocomplete
|
|
|
- ref="autoRef"
|
|
|
- v-model="firstFormData.name"
|
|
|
- :fetch-suggestions="callbackHandle"
|
|
|
- placeholder="请输入商家名称"
|
|
|
- @blur="checkCompany"
|
|
|
- @select="customNameSelect"
|
|
|
- @focus="checkCompanyfocus"
|
|
|
- :disabled='inquireSuccess'
|
|
|
- clearable
|
|
|
- value-key="value"
|
|
|
- style="width:360px"
|
|
|
- :popper-class="isCheck?'el-autocomplete-none':'el-autocomplete-suggestion-data-entry'"
|
|
|
- class="autocomplete-input">
|
|
|
+ v-else
|
|
|
+ ref="autoRef"
|
|
|
+ v-model="firstFormData.name"
|
|
|
+ :fetch-suggestions="callbackHandle"
|
|
|
+ placeholder="请输入商家名称"
|
|
|
+ @blur="checkCompany"
|
|
|
+ @select="customNameSelect"
|
|
|
+ @focus="checkCompanyfocus"
|
|
|
+ clearable
|
|
|
+ value-key="value"
|
|
|
+ style="width:360px"
|
|
|
+ :popper-class="isCheck?'el-autocomplete-none':'el-autocomplete-suggestion-data-entry'"
|
|
|
+ class="autocomplete-input">
|
|
|
<template #suffix>
|
|
|
<span
|
|
|
|
|
@@ -54,26 +54,26 @@
|
|
|
<div v-if="item.KeyNo">{{ item.Name }}</div>
|
|
|
<div v-else style="text-align: center;">暂无数据</div>
|
|
|
</template>
|
|
|
- </autocomplete>
|
|
|
- <el-popover
|
|
|
- :visible="showPopover"
|
|
|
- ref="popoverRef"
|
|
|
- :virtual-ref="autoRef"
|
|
|
- trigger="click"
|
|
|
- virtual-triggering
|
|
|
- >
|
|
|
- <div class="popover-box">
|
|
|
- <div
|
|
|
- v-for="(item, index) in suggestions"
|
|
|
- :key="index"
|
|
|
- class="popover-item"
|
|
|
- @click="customNameSelect(item)"
|
|
|
- >
|
|
|
- <slot :item="item">{{ item.value }}</slot>
|
|
|
+ </autocomplete>
|
|
|
+ <el-popover
|
|
|
+ :visible="showPopover"
|
|
|
+ ref="popoverRef"
|
|
|
+ :virtual-ref="autoRef"
|
|
|
+ trigger="click"
|
|
|
+ virtual-triggering
|
|
|
+ >
|
|
|
+ <div class="popover-box">
|
|
|
+ <div
|
|
|
+ v-for="(item, index) in suggestions"
|
|
|
+ :key="index"
|
|
|
+ class="popover-item"
|
|
|
+ @click="customNameSelect(item)"
|
|
|
+ >
|
|
|
+ <slot :item="item">{{ item.value }}</slot>
|
|
|
+ </div>
|
|
|
+ <div v-if="!suggestions.length" style="text-align: center;">暂无数据</div>
|
|
|
</div>
|
|
|
- <div v-if="!suggestions.length" style="text-align: center;">暂无数据</div>
|
|
|
- </div>
|
|
|
- </el-popover>
|
|
|
+ </el-popover>
|
|
|
</t-form-item>
|
|
|
</div>
|
|
|
<div class="form-line">
|
|
@@ -82,6 +82,7 @@
|
|
|
</t-form-item>
|
|
|
<t-form-item label="商家地址" name="address" v-if="firstFormData.areaType === '国内'">
|
|
|
<t-cascader
|
|
|
+ :disabled="currentRoute === 'businessDetail'"
|
|
|
value-mode="all"
|
|
|
@change="selectRegion"
|
|
|
v-model:modelValue="firstFormData.address"
|
|
@@ -92,7 +93,7 @@
|
|
|
/>
|
|
|
</t-form-item>
|
|
|
<t-form-item label="所属国家" name="nation" v-else>
|
|
|
- <t-select v-model:modelValue="firstFormData.nation" filterable placeholder="请选择所属国家" style="width: 360px;">
|
|
|
+ <t-select v-model:modelValue="firstFormData.nation" filterable placeholder="请选择所属国家" :disabled="currentRoute === 'businessDetail'" style="width: 360px;">
|
|
|
<t-option
|
|
|
v-for="item in countryDataReactive"
|
|
|
:key="item.code"
|
|
@@ -109,13 +110,14 @@
|
|
|
</div>
|
|
|
<div class="form-line">
|
|
|
<t-form-item label="决策人" name="decisionMaker">
|
|
|
- <t-input v-model:modelValue="firstFormData.decisionMaker" placeholder="请输入决策人"/>
|
|
|
+ <t-input v-model:modelValue="firstFormData.decisionMaker" :disabled="currentRoute === 'businessDetail'" placeholder="请输入决策人"/>
|
|
|
</t-form-item>
|
|
|
<t-form-item label="研究团队规模" name="teamSize">
|
|
|
<t-select
|
|
|
v-model:modelValue="firstFormData.teamSize"
|
|
|
placeholder="请选择研究团队规模"
|
|
|
clearable
|
|
|
+ :disabled="currentRoute === 'businessDetail'"
|
|
|
>
|
|
|
<t-option
|
|
|
v-for="item in teamSizeOpts"
|
|
@@ -128,12 +130,13 @@
|
|
|
</div>
|
|
|
<div class="form-line">
|
|
|
<t-form-item label="资金规模" name="fundsize">
|
|
|
- <t-input v-model:modelValue="firstFormData.fundsize" placeholder="请输入资金规模"/>
|
|
|
+ <t-input v-model:modelValue="firstFormData.fundsize" :disabled="currentRoute === 'businessDetail'" placeholder="请输入资金规模"/>
|
|
|
</t-form-item>
|
|
|
<t-form-item label="所属行业" name="industry">
|
|
|
<t-select
|
|
|
v-model:modelValue="firstFormData.industry"
|
|
|
placeholder="请选择行业"
|
|
|
+ :disabled="currentRoute === 'businessDetail'"
|
|
|
clearable
|
|
|
>
|
|
|
<t-option
|
|
@@ -147,10 +150,11 @@
|
|
|
</div>
|
|
|
<div class="form-line">
|
|
|
<t-form-item label="用户上限" name="userMax">
|
|
|
- <t-input v-model:modelValue="firstFormData.userMax" type="number" placeholder="请输入用户上限"/>
|
|
|
+ <t-input v-model:modelValue="firstFormData.userMax" :disabled="currentRoute === 'businessDetail'" type="number" placeholder="请输入用户上限"/>
|
|
|
</t-form-item>
|
|
|
<t-form-item label="所属销售" name="saller">
|
|
|
<t-cascader
|
|
|
+ :disabled="currentRoute === 'businessDetail'"
|
|
|
v-model:modelValue="firstFormData.saller"
|
|
|
:options="salesArr"
|
|
|
:show-all-levels="false"
|
|
@@ -164,7 +168,7 @@
|
|
|
</t-form>
|
|
|
</div>
|
|
|
</template>
|
|
|
- <template v-if="current === 1">
|
|
|
+ <template v-if="currentStep === 2">
|
|
|
<div class="second-step-form-wrap">
|
|
|
<t-form
|
|
|
:data="secondFormData"
|
|
@@ -191,33 +195,42 @@
|
|
|
</t-form>
|
|
|
</div>
|
|
|
</template>
|
|
|
- <template v-if="current === 2">
|
|
|
+ <template v-if="currentStep === 3">
|
|
|
|
|
|
</template>
|
|
|
|
|
|
- <div class="btns-box">
|
|
|
- <t-button style="width:80px" theme="primary" v-show="current===0" type="submit" @click="handleStepSecond('first')">下一步</t-button>
|
|
|
- <t-button style="width:80px" theme="primary" v-show="current===0" plain @click="$router.back()">取消</t-button>
|
|
|
- <t-button style="width:80px" theme="primary" v-show="current===1 || current===2" plain @click="current--">上一步</t-button>
|
|
|
- <t-button style="width:80px" theme="primary" v-show="current===1" plain type="submit" @click="handleStepSecond">下一步</t-button>
|
|
|
- <t-button style="width:80px" theme="primary" v-show="current===2" @click="handleAddBusiness">保存</t-button>
|
|
|
+ <div class="btns-box" v-if="currentRoute === 'addBusiness'">
|
|
|
+ <t-button style="width:80px" theme="primary" v-show="currentStep ===1" type="submit" @click="handleStepSecond('first')">下一步</t-button>
|
|
|
+ <t-button style="width:80px" theme="primary" v-show="currentStep ===1" plain @click="router.back()">取消</t-button>
|
|
|
+ <t-button style="width:80px" theme="primary" v-show="currentStep ===2 || currentStep ===3" plain @click="currentStep --">上一步</t-button>
|
|
|
+ <t-button style="width:80px" theme="primary" v-show="currentStep ===2" plain type="submit" @click="handleStepSecond">下一步</t-button>
|
|
|
+ <t-button style="width:80px" theme="primary" v-show="currentStep ===3" @click="handleAddBusiness">保存</t-button>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
<script setup>
|
|
|
import { ref, reactive, watch, onMounted, useTemplateRef } from 'vue';
|
|
|
import autocomplete from "./components/autocomplete.vue";
|
|
|
+import Steps from "./components/Steps.vue";
|
|
|
import { customInterence, roadshowInterence, businessCustomInterence } from '@/api/api.js';
|
|
|
import { locationOptions } from '@/utils/location';
|
|
|
import countryData from "@/utils/countryData";
|
|
|
import { ElPopover } from 'element-plus';
|
|
|
import 'element-plus/es/components/popover/style/css'
|
|
|
+import { useRoute, useRouter } from 'vue-router'
|
|
|
|
|
|
+const router = useRouter()
|
|
|
+const route = useRoute()
|
|
|
+// 判断路由决定显示内容展示详情、修改、添加
|
|
|
+const currentRoute = ref(route.name);
|
|
|
+const businessId = ref(Number(route.query.id || 0));
|
|
|
// 响应式状态
|
|
|
-const current = ref(0);
|
|
|
-const firstFormEl=useTemplateRef('firstFormEl')
|
|
|
+const currentStep = ref(1);
|
|
|
+const firstFormEl = useTemplateRef('firstFormEl')
|
|
|
const formRef = useTemplateRef('formRef');
|
|
|
const autoRef = ref(null);
|
|
|
+const recordData = ref([]);
|
|
|
+const activities = ref([]);
|
|
|
const countryDataReactive = reactive(countryData);
|
|
|
const suggestions = ref([]);
|
|
|
const showPopover = ref(false);
|
|
@@ -284,21 +297,83 @@ const rules = {
|
|
|
}
|
|
|
// 生命周期钩子
|
|
|
onMounted(() => {
|
|
|
- getIndustry();
|
|
|
- getSale();
|
|
|
+ if (currentRoute.value === 'addBusiness') { // 添加
|
|
|
+ fetchChosenData()
|
|
|
+ } else if (currentRoute.value === 'editBusiness') { // 修改
|
|
|
+ fetchChosenData()
|
|
|
+ fetchBusinessData()
|
|
|
+ } else if (currentRoute.value === 'businessDetail') { // 查看详情
|
|
|
+ fetchBusinessData()
|
|
|
+ }
|
|
|
});
|
|
|
|
|
|
// 监听器
|
|
|
-watch(() => firstFormData.areaType, (newVal) => {
|
|
|
- console.log('watch?', newVal);
|
|
|
- if (newVal === '海外') {
|
|
|
+watchEffect(() => {
|
|
|
+ if (firstFormData.areaType === '海外') {
|
|
|
firstFormData.creditCode = 'HZ' + new Date().getTime();
|
|
|
} else {
|
|
|
firstFormData.creditCode = '';
|
|
|
}
|
|
|
});
|
|
|
|
|
|
-// 方法
|
|
|
+// 获取选择数据
|
|
|
+const fetchChosenData = async () => {
|
|
|
+ await getIndustry();
|
|
|
+ await getSale();
|
|
|
+}
|
|
|
+
|
|
|
+// 获取商家详情
|
|
|
+const fetchBusinessData = async () => {
|
|
|
+ try {
|
|
|
+ const res = await businessCustomInterence.getBusinessDetail({ EtaBusinessId: businessId.value });
|
|
|
+ if (res.Ret !== 200) return;
|
|
|
+ const { RegionType, BusinessName, CreditCode, Nation, Leader, ResearchTeamSize, CapitalScale, IndustryId, UserMax, SellerId } = res.Data;
|
|
|
+ Object.assign(firstFormData, {
|
|
|
+ areaType: RegionType,
|
|
|
+ name: BusinessName,
|
|
|
+ creditCode: CreditCode,
|
|
|
+ nation: Nation,
|
|
|
+ decisionMaker: Leader,
|
|
|
+ teamSize: ResearchTeamSize,
|
|
|
+ fundsize: CapitalScale,
|
|
|
+ industry: IndustryId,
|
|
|
+ userMax: UserMax,
|
|
|
+ saller: SellerId,
|
|
|
+ address: [res.Data.Province || '', res.Data.City || '']
|
|
|
+ });
|
|
|
+ //获取签约详情
|
|
|
+ getTableData()
|
|
|
+ //获取操作日志列表
|
|
|
+ getTimeLineData()
|
|
|
+ } catch (error) {
|
|
|
+ console.error('获取商家详情失败:', error);
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+//获取签约详情
|
|
|
+const getTableData = async () => {
|
|
|
+ try {
|
|
|
+ const res = await businessCustomInterence.getContractList({ EtaBusinessId:businessId.value });
|
|
|
+ if (res.Ret !== 200) return;
|
|
|
+ recordData.value = res.Data || [];
|
|
|
+ } catch (error) {
|
|
|
+ console.error('获取行业失败:', error);
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+// 获取操作日志详情
|
|
|
+const getTimeLineData = async () => {
|
|
|
+ try {
|
|
|
+ const res = await businessCustomInterence.getTimeLineList({ EtaBusinessId:businessId.value });
|
|
|
+ if (res.Ret !== 200) return;
|
|
|
+ activities.value = res.Data || [];
|
|
|
+ } catch (error) {
|
|
|
+ console.error('获取操作日志失败:', error);
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+
|
|
|
+// 提交
|
|
|
const normalizingParams = (params) => {
|
|
|
const cascaderNodes = salesArr.value.find(item => item.AdminId === params.saller)?.children || [];
|
|
|
const IndustryName = tradeArr.value.find(item => item.IndustryId === params.industry)?.IndustryName || '';
|
|
@@ -338,7 +413,7 @@ const handleStepSecond = async (stepName) => {
|
|
|
|
|
|
businessCustomInterence.addBusiness({ IsCheck: true, ...params }).then(res => {
|
|
|
if (res.Ret === 200) {
|
|
|
- current.value++;
|
|
|
+ currentStep .value++;
|
|
|
}
|
|
|
});
|
|
|
};
|
|
@@ -441,36 +516,19 @@ const getSale = async () => {
|
|
|
}));
|
|
|
};
|
|
|
|
|
|
+const changeActiveStep = (index) => {
|
|
|
+ currentStep .value = index + 1
|
|
|
+}
|
|
|
+
|
|
|
// 响应式变量
|
|
|
const isCheckCompanyInfo = ref(false);
|
|
|
const checkCompanyfocusIs = ref(false);
|
|
|
-const inquireSuccess = ref(false);
|
|
|
const nameRepeat = ref(false);
|
|
|
const codeRepeat = ref(false);
|
|
|
const isCheck = ref(false);
|
|
|
const repeatId = ref('');
|
|
|
const repeatName = ref('');
|
|
|
|
|
|
-// 假设的验证方法,需要替换为实际的验证逻辑
|
|
|
-const validateForm = (formData) => {
|
|
|
- return new Promise((resolve) => {
|
|
|
- // 验证逻辑
|
|
|
- resolve(true); // 假设总是通过验证
|
|
|
- });
|
|
|
-};
|
|
|
-
|
|
|
-// 假设的全局message和router实例,需要替换为实际的实例
|
|
|
-const message = {
|
|
|
- success: (msg) => {
|
|
|
- console.log(msg); // 替换为实际的消息提示逻辑
|
|
|
- }
|
|
|
-};
|
|
|
-
|
|
|
-const router = {
|
|
|
- push: (path) => {
|
|
|
- console.log(`Navigating to ${path}`); // 替换为实际的路由跳转逻辑
|
|
|
- }
|
|
|
-};
|
|
|
</script>
|
|
|
<style lang="scss">
|
|
|
.el-popover {
|
|
@@ -484,6 +542,9 @@ const router = {
|
|
|
background-color: #fff;
|
|
|
min-width: 1100px;
|
|
|
height: calc(100vh - 120px);
|
|
|
+ .add-steps {
|
|
|
+ width: 70%;
|
|
|
+ }
|
|
|
.first-step-form-wrap,.second-step-form-wrap{
|
|
|
margin-top:60px;
|
|
|
border-top: 1px solid #DCDCDC;
|
|
@@ -499,17 +560,6 @@ const router = {
|
|
|
width:48%;
|
|
|
margin-right: 20px;
|
|
|
}
|
|
|
- .el-input,.el-select,.el-cascader,.el-radio-group{
|
|
|
- width:360px;
|
|
|
- }
|
|
|
- .el-radio-group{
|
|
|
- display: flex;
|
|
|
- justify-content: space-between;
|
|
|
- .el-radio{
|
|
|
- width: 165px;
|
|
|
- text-align: center;
|
|
|
- }
|
|
|
- }
|
|
|
}
|
|
|
}
|
|
|
}
|