|
@@ -2,18 +2,19 @@
|
|
|
<el-dialog v-model="state.dialogVisible" width="80%" draggable title="拓展信息" append-to-body @closed="closed" @opened="opened">
|
|
|
<el-form :model="state.expandForm" scroll-to-error ref="expandFormRef" label-width="120px" v-loading="state.loading">
|
|
|
<el-row :gutter="20">
|
|
|
- <el-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24">
|
|
|
- <el-form-item label="工单类型">
|
|
|
+ <el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12">
|
|
|
+ <el-form-item label="工单类型" prop="orderTypeObj">
|
|
|
<el-select
|
|
|
v-model="state.expandForm.orderTypeObj"
|
|
|
filterable
|
|
|
value-key="dicDataValue"
|
|
|
placeholder="请选择工单类型"
|
|
|
class="w100"
|
|
|
+ clearable
|
|
|
@change="
|
|
|
(val) => {
|
|
|
- state.expandForm.orderType = val.dicDataName;
|
|
|
- state.expandForm.orderTypeCode = val.dicDataValue;
|
|
|
+ state.expandForm.orderType = val?.dicDataName ?? '';
|
|
|
+ state.expandForm.orderTypeCode = val?.dicDataValue ?? '';
|
|
|
}
|
|
|
"
|
|
|
>
|
|
@@ -21,6 +22,11 @@
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
+ <el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12">
|
|
|
+ <el-form-item prop="orderTypeObj">
|
|
|
+ <el-text type="danger" tag="b">注意:保存拓展单后,需要再点下保存工单才可以保存拓展单。</el-text>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
<!-- (1)医疗服务中心受理单 -->
|
|
|
<template v-if="state.expandForm.orderTypeCode === 'yl'">
|
|
|
<el-col :xs="24" :sm="12" :md="8" :lg="8" :xl="6">
|
|
@@ -401,8 +407,8 @@
|
|
|
class="w100"
|
|
|
@change="
|
|
|
(val) => {
|
|
|
- state.expandForm.licenceType = val.dicDataName;
|
|
|
- state.expandForm.licenceTypeCode = val.dicDataValue;
|
|
|
+ state.expandForm.licenceType = val?.dicDataName ?? '';
|
|
|
+ state.expandForm.licenceTypeCode = val?.dicDataValue ?? '';
|
|
|
}
|
|
|
"
|
|
|
>
|
|
@@ -438,8 +444,8 @@
|
|
|
class="w100"
|
|
|
@change="
|
|
|
(val) => {
|
|
|
- state.expandForm.identityType = val.dicDataName;
|
|
|
- state.expandForm.identityTypeCode = val.dicDataValue;
|
|
|
+ state.expandForm.identityType = val?.dicDataName ?? '';
|
|
|
+ state.expandForm.identityTypeCode = val?.dicDataValue ?? '';
|
|
|
}
|
|
|
"
|
|
|
>
|
|
@@ -458,8 +464,8 @@
|
|
|
class="w100"
|
|
|
@change="
|
|
|
(val) => {
|
|
|
- state.expandForm.identity = val.dicDataName;
|
|
|
- state.expandForm.identityCode = val.dicDataValue;
|
|
|
+ state.expandForm.identity = val?.dicDataName ?? '';
|
|
|
+ state.expandForm.identityCode = val?.dicDataValue ?? '';
|
|
|
}
|
|
|
"
|
|
|
>
|
|
@@ -478,8 +484,8 @@
|
|
|
value-key="dicDataValue"
|
|
|
@change="
|
|
|
(val) => {
|
|
|
- state.expandForm.nationality = val.dicDataName;
|
|
|
- state.expandForm.nationalityCode = val.dicDataValue;
|
|
|
+ state.expandForm.nationality = val.dicDataName ?? '';
|
|
|
+ state.expandForm.nationalityCode = val?.dicDataValue ?? '';
|
|
|
}
|
|
|
"
|
|
|
>
|
|
@@ -498,8 +504,8 @@
|
|
|
class="w100"
|
|
|
@change="
|
|
|
(val) => {
|
|
|
- state.expandForm.nation = val.dicDataName;
|
|
|
- state.expandForm.nationCode = val.dicDataValue;
|
|
|
+ state.expandForm.nation = val?.dicDataName ?? '';
|
|
|
+ state.expandForm.nationCode = val?.dicDataValue ?? '';
|
|
|
}
|
|
|
"
|
|
|
>
|
|
@@ -525,13 +531,13 @@
|
|
|
</el-col>
|
|
|
<el-col :xs="24" :sm="12" :md="8" :lg="8" :xl="6">
|
|
|
<el-form-item
|
|
|
- label="邮箱"
|
|
|
+ label="电子邮箱"
|
|
|
prop="email"
|
|
|
:rules="[
|
|
|
- { required: false, message: '请填写邮箱', trigger: 'blur' },
|
|
|
+ { required: false, message: '请填写电子邮箱', trigger: 'blur' },
|
|
|
{
|
|
|
pattern: /^[A-Za-z0-9\u4e00-\u9fa5]+@[a-zA-Z0-9_-]+(\.[a-zA-Z0-9_-]+)+$/,
|
|
|
- message: '邮箱格式错误',
|
|
|
+ message: '电子邮箱格式错误',
|
|
|
trigger: 'blur',
|
|
|
},
|
|
|
]"
|
|
@@ -550,14 +556,52 @@
|
|
|
</el-text>
|
|
|
</el-divider>
|
|
|
<el-col :xs="24" :sm="12" :md="8" :lg="8" :xl="6">
|
|
|
- <el-form-item label="企业名称" prop="enterpriseName" :rules="[{ required: true, message: '请填写企业名称', trigger: 'blur' }]">
|
|
|
- <el-input v-model="state.expandForm.enterpriseName" placeholder="请填写企业名称" clearable> </el-input>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
+ <el-form-item label="对象名称" prop="enterpriseName" :rules="[{ required: true, message: '请填写对象名称', trigger: 'blur' }]">
|
|
|
+ <el-input v-model="state.expandForm.enterpriseName" placeholder="请填写对象名称" clearable> </el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :xs="24" :sm="12" :md="8" :lg="8" :xl="6">
|
|
|
+ <el-form-item label="对象注册地址" prop="registerAddress" :rules="[{ required: true, message: '请填写对象注册地址', trigger: 'blur' }]">
|
|
|
+ <el-input v-model="state.expandForm.registerAddress" placeholder="请填写对象注册地址" clearable> </el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :xs="24" :sm="12" :md="8" :lg="8" :xl="6">
|
|
|
+ <el-form-item label="市场主体类型" prop="marketTypeCode" :rules="[{ required: false, message: '请选择市场主体类型', trigger: 'change' }]">
|
|
|
+ <el-cascader
|
|
|
+ :options="state.marketTypeOptions"
|
|
|
+ filterable
|
|
|
+ :props="{ value: 'dicDataValue', label: 'dicDataName', emitPath: false }"
|
|
|
+ placeholder="请选择市场主体类型"
|
|
|
+ class="w100"
|
|
|
+ v-model="state.expandForm.marketTypeCode"
|
|
|
+ ref="marketTypeRef"
|
|
|
+ @change="changeMarketType"
|
|
|
+ clearable
|
|
|
+ >
|
|
|
+ </el-cascader>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :xs="24" :sm="12" :md="8" :lg="8" :xl="6">
|
|
|
+ <el-form-item label="行业分类" prop="industryClassifyCode" :rules="[{ required: false, message: '请选择行业分类', trigger: 'blur' }]">
|
|
|
+ <el-cascader
|
|
|
+ :options="state.industryClassifyOptions"
|
|
|
+ filterable
|
|
|
+ :props="{ value: 'dicDataValue', label: 'dicDataName', emitPath: false }"
|
|
|
+ placeholder="请选择行业分类"
|
|
|
+ class="w100"
|
|
|
+ v-model="state.expandForm.industryClassifyCode"
|
|
|
+ ref="industryClassifyRef"
|
|
|
+ @change="changeIndustryClassify"
|
|
|
+ clearable
|
|
|
+ >
|
|
|
+ </el-cascader>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
<el-col :xs="24" :sm="12" :md="8" :lg="8" :xl="6">
|
|
|
<el-form-item
|
|
|
label="统一社会信用代码"
|
|
|
prop="unifiedSocialCreditCode"
|
|
|
+ label-width="130px"
|
|
|
:rules="[
|
|
|
{ required: false, message: '请填写统一社会信用代码', trigger: 'blur' },
|
|
|
{
|
|
@@ -570,11 +614,6 @@
|
|
|
<el-input v-model="state.expandForm.unifiedSocialCreditCode" placeholder="请填写统一社会信用代码" clearable> </el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- <el-col :xs="24" :sm="12" :md="8" :lg="8" :xl="6">
|
|
|
- <el-form-item label="注册地址" prop="registerAddress" :rules="[{ required: true, message: '请填写注册地址', trigger: 'blur' }]">
|
|
|
- <el-input v-model="state.expandForm.registerAddress" placeholder="请填写注册地址" clearable> </el-input>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
<el-col :xs="24" :sm="12" :md="8" :lg="8" :xl="6">
|
|
|
<!-- 数字字母 -->
|
|
|
<el-form-item
|
|
@@ -593,38 +632,8 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :xs="24" :sm="12" :md="8" :lg="8" :xl="6">
|
|
|
- <el-form-item label="企业联系人" prop="enterpriseContact" :rules="[{ required: false, message: '请填写企业联系人', trigger: 'blur' }]">
|
|
|
- <el-input v-model="state.expandForm.enterpriseContact" placeholder="请填写企业联系人" clearable> </el-input>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :xs="24" :sm="12" :md="8" :lg="8" :xl="6">
|
|
|
- <el-form-item label="市场主体类型" prop="marketTypeCode" :rules="[{ required: false, message: '请选择市场主体类型', trigger: 'change' }]">
|
|
|
- <el-cascader
|
|
|
- :options="state.marketTypeOptions"
|
|
|
- filterable
|
|
|
- :props="{ value: 'dicDataValue', label: 'dicDataName', emitPath: false }"
|
|
|
- placeholder="请选择市场主体类型"
|
|
|
- class="w100"
|
|
|
- v-model="state.expandForm.marketTypeCode"
|
|
|
- ref="marketTypeRef"
|
|
|
- @change="changeMarketType"
|
|
|
- >
|
|
|
- </el-cascader>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :xs="24" :sm="12" :md="8" :lg="8" :xl="6">
|
|
|
- <el-form-item label="行业分类" prop="industryClassifyCode" :rules="[{ required: false, message: '请选择行业分类', trigger: 'blur' }]">
|
|
|
- <el-cascader
|
|
|
- :options="state.industryClassifyOptions"
|
|
|
- filterable
|
|
|
- :props="{ value: 'dicDataValue', label: 'dicDataName', emitPath: false }"
|
|
|
- placeholder="请选择行业分类"
|
|
|
- class="w100"
|
|
|
- v-model="state.expandForm.industryClassifyCode"
|
|
|
- ref="industryClassifyRef"
|
|
|
- @change="changeIndustryClassify"
|
|
|
- >
|
|
|
- </el-cascader>
|
|
|
+ <el-form-item label="联系人" prop="enterpriseContact" :rules="[{ required: false, message: '请填写联系人', trigger: 'blur' }]">
|
|
|
+ <el-input v-model="state.expandForm.enterpriseContact" placeholder="请填写联系人" clearable> </el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-divider content-position="left">
|
|
@@ -643,31 +652,33 @@
|
|
|
v-model="state.expandForm.brandCode"
|
|
|
ref="brandRef"
|
|
|
@change="changeBrand"
|
|
|
+ clearable
|
|
|
>
|
|
|
</el-cascader>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
+ <el-col :xs="24" :sm="12" :md="8" :lg="8" :xl="6">
|
|
|
+ <el-form-item label="客体类别" prop="objectClassifyCode" :rules="[{ required: true, message: '请选择客体类别', trigger: 'change' }]">
|
|
|
+ <el-cascader
|
|
|
+ :options="state.objectClassifyOptions"
|
|
|
+ filterable
|
|
|
+ :props="{ value: 'dicDataValue', label: 'dicDataName', emitPath: false }"
|
|
|
+ placeholder="请选择客体类别"
|
|
|
+ class="w100"
|
|
|
+ v-model="state.expandForm.objectClassifyCode"
|
|
|
+ ref="objectClassifyRef"
|
|
|
+ @change="changeObjectClassify"
|
|
|
+ clearable
|
|
|
+ >
|
|
|
+ </el-cascader>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
<!-- 只能填写数字,且只能填写非负数 -->
|
|
|
<el-col :xs="24" :sm="12" :md="8" :lg="8" :xl="6">
|
|
|
- <el-form-item label="消费金额" prop="amount" :rules="[{ required: true, message: '请填写消费金额', trigger: 'blur' }]">
|
|
|
+ <el-form-item label="消费金额(元)" prop="amount" :rules="[{ required: true, message: '请填写消费金额', trigger: 'blur' }]">
|
|
|
<el-input-number v-model="state.expandForm.amount" :min="0" placeholder="请填写消费金额" class="w100" />
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- <el-col :xs="24" :sm="12" :md="8" :lg="8" :xl="6">
|
|
|
- <el-form-item label="客体类别" prop="objectClassifyCode" :rules="[{ required: true, message: '请选择客体类别', trigger: 'change' }]">
|
|
|
- <el-cascader
|
|
|
- :options="state.objectClassifyOptions"
|
|
|
- filterable
|
|
|
- :props="{ value: 'dicDataValue', label: 'dicDataName', emitPath: false }"
|
|
|
- placeholder="请选择客体类别"
|
|
|
- class="w100"
|
|
|
- v-model="state.expandForm.objectClassifyCode"
|
|
|
- ref="objectClassifyRef"
|
|
|
- @change="changeObjectClassify"
|
|
|
- >
|
|
|
- </el-cascader>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
<!-- 举报展示 -->
|
|
|
<template v-if="state.expandForm.orderTypeCode === 'scjgjjb'">
|
|
|
<el-col :xs="24" :sm="12" :md="8" :lg="8" :xl="6">
|
|
@@ -707,6 +718,7 @@
|
|
|
v-model="state.expandForm.complainClassifyCode"
|
|
|
ref="problemCascadeRef"
|
|
|
@change="changeProblems"
|
|
|
+ clearable
|
|
|
>
|
|
|
</el-cascader>
|
|
|
</el-form-item>
|
|
@@ -966,6 +978,7 @@ const props = defineProps({
|
|
|
const state = reactive<any>({
|
|
|
dialogVisible: false,
|
|
|
expandForm: {
|
|
|
+ orderTypeObj: null,
|
|
|
orderType: null, // 工单类型
|
|
|
orderTypeCode: null, // 工单类型code
|
|
|
mailAmount: 0, // 涉及金额
|
|
@@ -1113,37 +1126,37 @@ const changeProblems = () => {
|
|
|
const marketTypeRef = ref<RefType>();
|
|
|
const changeMarketType = () => {
|
|
|
let currentNode = marketTypeRef.value.getCheckedNodes();
|
|
|
- state.expandForm.marketType = currentNode[0].label;
|
|
|
+ state.expandForm.marketType = currentNode[0]?.label;
|
|
|
};
|
|
|
// 选择行业分类
|
|
|
const industryClassifyRef = ref<RefType>();
|
|
|
const changeIndustryClassify = () => {
|
|
|
let currentNode = industryClassifyRef.value.getCheckedNodes();
|
|
|
- state.expandForm.industryClassify = currentNode[0].label;
|
|
|
+ state.expandForm.industryClassify = currentNode[0]?.label;
|
|
|
};
|
|
|
// 选择商品分类/品牌
|
|
|
const brandRef = ref<RefType>();
|
|
|
const changeBrand = () => {
|
|
|
let currentNode = brandRef.value.getCheckedNodes();
|
|
|
- state.expandForm.brand = currentNode[0].label;
|
|
|
+ state.expandForm.brand = currentNode[0]?.label;
|
|
|
};
|
|
|
// 选择客体类别
|
|
|
const objectClassifyRef = ref<RefType>();
|
|
|
const changeObjectClassify = () => {
|
|
|
let currentNode = objectClassifyRef.value.getCheckedNodes();
|
|
|
- state.expandForm.objectClassify = currentNode[0].label;
|
|
|
+ state.expandForm.objectClassify = currentNode[0]?.label;
|
|
|
};
|
|
|
// 电商平台
|
|
|
const eCommercePlatformRef = ref<RefType>();
|
|
|
const changeECommercePlatform = () => {
|
|
|
let currentNode = eCommercePlatformRef.value.getCheckedNodes();
|
|
|
- state.expandForm.eCommercePlatform = currentNode[0].label;
|
|
|
+ state.expandForm.eCommercePlatform = currentNode[0]?.label;
|
|
|
};
|
|
|
// 经营地址选择
|
|
|
const areaRef = ref<RefType>();
|
|
|
const changeArea = () => {
|
|
|
const currentNode = areaRef.value.getCheckedNodes();
|
|
|
- state.expandForm.businessPosition.address = currentNode[0].pathLabels.join(null);
|
|
|
+ state.expandForm.businessPosition.address = currentNode[0]?.pathLabels.join(null);
|
|
|
};
|
|
|
// 保存拓展表单
|
|
|
const saveExpandForm = (formEl: FormInstance | undefined) => {
|
|
@@ -1205,62 +1218,89 @@ watch(
|
|
|
(newVal) => {
|
|
|
state.expandForm = newVal.orderExtension ?? {};
|
|
|
state.expandForm.complainTypes = newVal.orderExtension?.complainTypes ?? [];
|
|
|
- state.expandForm.orderTypeObj = {
|
|
|
- //工单类型
|
|
|
- dicDataValue: state.expandForm.orderTypeCode,
|
|
|
- dicDataName: state.expandForm.orderType,
|
|
|
- };
|
|
|
-
|
|
|
+ if (state.expandForm.orderTypeCode) {
|
|
|
+ state.expandForm.orderTypeObj = {
|
|
|
+ //工单类型
|
|
|
+ dicDataValue: state.expandForm.orderTypeCode,
|
|
|
+ dicDataName: state.expandForm.orderType,
|
|
|
+ };
|
|
|
+ }
|
|
|
if (state.expandForm.businessPosition && state.expandForm.businessPosition.areaCode) {
|
|
|
// 经营地址
|
|
|
state.expandForm.businessArea = state.expandForm.businessPosition.areaCode;
|
|
|
state.expandForm.businessAddress = state.expandForm.businessPosition.street;
|
|
|
}
|
|
|
- state.expandForm.licenceObj = {
|
|
|
- //证件类型
|
|
|
- dicDataValue: state.expandForm.licenceTypeCode,
|
|
|
- dicDataName: state.expandForm.licenceType,
|
|
|
- };
|
|
|
- state.expandForm.identityTypeObj = {
|
|
|
- //提供方类型
|
|
|
- dicDataValue: state.expandForm.identityTypeCode,
|
|
|
- dicDataName: state.expandForm.identityType,
|
|
|
- };
|
|
|
- state.expandForm.identityObj = {
|
|
|
- //提供方身份
|
|
|
- dicDataValue: state.expandForm.identityCode,
|
|
|
- dicDataName: state.expandForm.identity,
|
|
|
- };
|
|
|
- state.expandForm.nationalityObj = {
|
|
|
- //国籍/地区
|
|
|
- dicDataValue: state.expandForm.nationalityCode,
|
|
|
- dicDataName: state.expandForm.nationality,
|
|
|
- };
|
|
|
- state.expandForm.nationObj = {
|
|
|
- //民族
|
|
|
- dicDataValue: state.expandForm.nationCode,
|
|
|
- dicDataName: state.expandForm.nation,
|
|
|
- };
|
|
|
- state.expandForm.salesModeObj = {
|
|
|
- //销售方式
|
|
|
- dicDataValue: state.expandForm.salesModeCode,
|
|
|
- dicDataName: state.expandForm.salesMode,
|
|
|
- };
|
|
|
- state.expandForm.complainTargetObj = {
|
|
|
- //投诉目标
|
|
|
- dicDataValue: state.expandForm.complainTargetCode,
|
|
|
- dicDataName: state.expandForm.complainTarget,
|
|
|
- };
|
|
|
- state.expandForm.reportTargetObj = {
|
|
|
- //举报目标
|
|
|
- dicDataValue: state.expandForm.reportTargetCode,
|
|
|
- dicDataName: state.expandForm.reportTarget,
|
|
|
- };
|
|
|
- state.expandForm.salesChannelObj = {
|
|
|
- //销售渠道
|
|
|
- dicDataValue: state.expandForm.salesChannelCode,
|
|
|
- dicDataName: state.expandForm.salesChannel,
|
|
|
- };
|
|
|
+ if (state.expandForm.licenceTypeCode) {
|
|
|
+ state.expandForm.licenceObj = {
|
|
|
+ //证件类型
|
|
|
+ dicDataValue: state.expandForm.licenceTypeCode,
|
|
|
+ dicDataName: state.expandForm.licenceType,
|
|
|
+ };
|
|
|
+ }
|
|
|
+ if (state.expandForm.identityTypeCode) {
|
|
|
+ state.expandForm.identityTypeObj = {
|
|
|
+ //提供方类型
|
|
|
+ dicDataValue: state.expandForm.identityTypeCode,
|
|
|
+ dicDataName: state.expandForm.identityType,
|
|
|
+ };
|
|
|
+ }
|
|
|
+ if (state.expandForm.identityCode) {
|
|
|
+ state.expandForm.identityObj = {
|
|
|
+ //提供方身份
|
|
|
+ dicDataValue: state.expandForm.identityCode,
|
|
|
+ dicDataName: state.expandForm.identity,
|
|
|
+ };
|
|
|
+ }
|
|
|
+ if (state.expandForm.nationalityCode) {
|
|
|
+ state.expandForm.nationalityObj = {
|
|
|
+ //国籍/地区
|
|
|
+ dicDataValue: state.expandForm.nationalityCode,
|
|
|
+ dicDataName: state.expandForm.nationality,
|
|
|
+ };
|
|
|
+ }
|
|
|
+ if (state.expandForm.nationCode) {
|
|
|
+ state.expandForm.nationObj = {
|
|
|
+ //民族
|
|
|
+ dicDataValue: state.expandForm.nationCode,
|
|
|
+ dicDataName: state.expandForm.nation,
|
|
|
+ };
|
|
|
+ }
|
|
|
+ if (state.expandForm.salesModeCode) {
|
|
|
+ state.expandForm.salesModeObj = {
|
|
|
+ //销售方式
|
|
|
+ dicDataValue: state.expandForm.salesModeCode,
|
|
|
+ dicDataName: state.expandForm.salesMode,
|
|
|
+ };
|
|
|
+ }
|
|
|
+ if (state.expandForm.complainTargetCode) {
|
|
|
+ state.expandForm.complainTargetObj = {
|
|
|
+ //投诉目标
|
|
|
+ dicDataValue: state.expandForm.complainTargetCode,
|
|
|
+ dicDataName: state.expandForm.complainTarget,
|
|
|
+ };
|
|
|
+ }
|
|
|
+
|
|
|
+ if (state.expandForm.reportClassifyCode) {
|
|
|
+ state.expandForm.reportClassifyObj = {
|
|
|
+ //举报问题类别
|
|
|
+ dicDataValue: state.expandForm.reportClassifyCode,
|
|
|
+ dicDataName: state.expandForm.reportClassify,
|
|
|
+ };
|
|
|
+ }
|
|
|
+ if (state.expandForm.reportTargetCode) {
|
|
|
+ state.expandForm.reportTargetObj = {
|
|
|
+ //举报目标
|
|
|
+ dicDataValue: state.expandForm.reportTargetCode,
|
|
|
+ dicDataName: state.expandForm.reportTarget,
|
|
|
+ };
|
|
|
+ }
|
|
|
+ if (state.expandForm.salesChannelCode) {
|
|
|
+ state.expandForm.salesChannelObj = {
|
|
|
+ //销售渠道
|
|
|
+ dicDataValue: state.expandForm.salesChannelCode,
|
|
|
+ dicDataName: state.expandForm.salesChannel,
|
|
|
+ };
|
|
|
+ }
|
|
|
if (state.expandForm.patentTypeCode) {
|
|
|
//专利类型
|
|
|
state.expandForm.patentTypeObj = {
|