|
|
@@ -60,21 +60,17 @@
|
|
|
|
|
|
<el-table v-loading="loading" :data="dataList">
|
|
|
<el-table-column label="商机编号" align="center" prop="opportunityCode" min-width="350" />
|
|
|
- <el-table-column label="商机名称" align="center" prop="opportunityName" min-width="100" />
|
|
|
- <el-table-column label="客户名称" align="center" prop="customerName" min-width="120" />
|
|
|
+ <el-table-column label="商机名称" align="center" prop="opportunityName" min-width="150" />
|
|
|
+ <el-table-column label="客户名称" align="center" prop="customerName" min-width="150" />
|
|
|
<el-table-column label="预计赢单机率" align="center" prop="winRate" min-width="100">
|
|
|
<template v-slot="scope">
|
|
|
<span>{{ scope.row.winRate == 0 ? '高' : scope.row.winRate == 1 ? '中' : '低' }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="预计合同金额" align="center" prop="estimatedContractAmount" min-width="100" />
|
|
|
+ <el-table-column label="预计合同金额(元)" align="center" prop="estimatedContractAmount" min-width="150" />
|
|
|
<el-table-column label="预计项目毛利" align="center" prop="estimatedProjectMargin" min-width="150" />
|
|
|
<el-table-column label="预计项目成功率" align="center" prop="estimatedSuccessRate" min-width="150" />
|
|
|
- <el-table-column label="预计进单时间" align="center" prop="estimatedDealTime" min-width="150">
|
|
|
- <template v-slot="scope">
|
|
|
- <span>{{ parseTime(scope.row.createTime) }}</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
+ <el-table-column label="预计进单时间" align="center" prop="estimatedDealTime" min-width="150"/>
|
|
|
<el-table-column label="商机等级" align="center" prop="opportunityLevel" min-width="80">
|
|
|
<template v-slot="scope">
|
|
|
<span>{{ scope.row.opportunityLevel == 0 ? '潜在' : scope.row.opportunityLevel == 1 ? '可能' : '重点跟进' }}</span>
|
|
|
@@ -134,8 +130,7 @@
|
|
|
</el-col>
|
|
|
<el-col :span="24">
|
|
|
<el-form-item label="合同金额" prop="estimatedContractAmount">
|
|
|
- <el-input v-model="form.estimatedContractAmount" placeholder='预计合同金额(元)'
|
|
|
- oninput="value=value.match(/\d+\.?\d{0,2}/,'')"></el-input>
|
|
|
+ <el-input v-model="form.estimatedContractAmount" placeholder='预计合同金额(元)'></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="24">
|
|
|
@@ -239,7 +234,7 @@
|
|
|
<div class="fx-field x-grid-col-12">
|
|
|
<div class="field-label">
|
|
|
<span class="field-required">*</span>
|
|
|
- <div class="field-name">合同金额</div>
|
|
|
+ <div class="field-name">合同金额(元)</div>
|
|
|
</div>
|
|
|
<div class="field-component">
|
|
|
<span :title="form.estimatedContractAmount">{{ form.estimatedContractAmount }}</span>
|