Merge branch 'master' of https://gitee.com/guochang-hongyun/warm-kingdom-vue3-oa
commit
2a49bec98e
|
|
@ -71,12 +71,12 @@
|
|||
</el-col>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="年利率" prop="annualInterestRate">
|
||||
<el-input v-model="formData.annualInterestRate" oninput = "value=value.replace(/[^\d]/g,'')" placeholder="请输入年利率" />
|
||||
<el-input v-model="formData.annualInterestRate" oninput = "value=value.replace(/[^\d]/g,'')" placeholder="请输入年利率(如8%请输入0.08)" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="比例收费" prop="proportionalFee">
|
||||
<el-input v-model="formData.proportionalFee" oninput = "value=value.match(/^\d+(?:\.\d{0,4})?/)" placeholder="请输入比例收费" />
|
||||
<el-input v-model="formData.proportionalFee" oninput = "value=value.match(/^\d+(?:\.\d{0,4})?/)" placeholder="请输入比例收费(如8%请输入0.08)" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="24">
|
||||
|
|
|
|||
|
|
@ -145,6 +145,11 @@
|
|||
<dict-tag :type="DICT_TYPE.CRM_CUSTOMER_SOURCE" :value="scope.row.source" />
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column align="center" label="所属行业" prop="industryId" width="100">
|
||||
<template #default="scope">
|
||||
<dict-tag :type="DICT_TYPE.CRM_CUSTOMER_INDUSTRY" :value="scope.row.industryId" />
|
||||
</template>
|
||||
</el-table-column>
|
||||
<!-- <el-table-column align="center" label="线索人" prop="clueDeveloperName" width="120">
|
||||
<template #default="scope">
|
||||
{{scope.row.clueDeveloperName || '暂无'}}
|
||||
|
|
@ -164,12 +169,6 @@
|
|||
<el-table-column align="center" label="技术对接人" prop="technicalLeadName" width="120" />
|
||||
<el-table-column align="center" label="服务对接人" prop="servicorName" width="120" />
|
||||
<el-table-column align="center" label="结算对接人" prop="settlementLeadName" width="120" />
|
||||
<el-table-column align="center" label="所属行业" prop="industryId" width="100">
|
||||
<template #default="scope">
|
||||
<dict-tag :type="DICT_TYPE.CRM_CUSTOMER_INDUSTRY" :value="scope.row.industryId" />
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column align="center" label="公司类型" prop="regType" width="250" />
|
||||
<el-table-column align="center" label="距离进入公海天数" prop="poolDay" width="140">
|
||||
<template #default="scope"> {{ scope.row.poolDay }} 天</template>
|
||||
</el-table-column>
|
||||
|
|
|
|||
Loading…
Reference in New Issue