|
|
@ -91,42 +91,47 @@ |
|
|
|
<div class=""> |
|
|
|
<el-table :key="tableKey" v-loading="listLoading" :data="list" border style="width: 100%;font-size: 10px;" > |
|
|
|
<el-table-column width="60px" label="序号" type="index" :index="indexMethod" align="center"/> |
|
|
|
<el-table-column label="车型" align="center"> |
|
|
|
<el-table-column width="100px" label="操作" align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span class="bluezi" @click="handlink(scope.row)">{{ scope.row.modelName }}</span> |
|
|
|
<span class="bluezi" @click="handlink(scope.row)">选择常用配置</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="版本" align="center"> |
|
|
|
<el-table-column label="车型" align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span >{{ scope.row.modelName }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column width="100px" label="版本" align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.versionValue }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="燃料" align="center"> |
|
|
|
<el-table-column width="100px" label="燃料" align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.fuelTypeValue }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="变速箱" align="center"> |
|
|
|
<el-table-column width="100px" label="变速箱" align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.gearboxTypeValue }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="销售指导价(万元)" align="center"> |
|
|
|
<el-table-column width="100px" label="销售指导价(万元)" align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.guidedPrice }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="现车" align="center"> |
|
|
|
<el-table-column width="50px" label="现车" align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.nowCarNum }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="排产" align="center"> |
|
|
|
<el-table-column width="50px" label="排产" align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.produceCarNum }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="操作" align="center"> |
|
|
|
<el-table-column width="100px" label="操作" align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-button type="primary" size="small" @click="handlook(scope.row)">查看</el-button> |
|
|
|
</template> |
|
|
@ -144,7 +149,7 @@ |
|
|
|
<el-table-column width="80px" label="序号" type="index" :index="indexMethod" align="center"/> |
|
|
|
<el-table-column label="分公司名称" align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.company }}</span> |
|
|
|
<span>{{ scope.row.companyName }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="现车" align="center"> |
|
|
@ -154,7 +159,7 @@ |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="排产车" align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.productionCarNum }}</span> |
|
|
|
<span>{{ scope.row.produceCarNum }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
@ -375,11 +380,11 @@ export default { |
|
|
|
handlook(row) { |
|
|
|
this.dialogVisible = true |
|
|
|
this.dialogQuery.params.modelSid = row.sid |
|
|
|
notTheCompanyModelPageList(this.dialogQuery).then((res) => { |
|
|
|
if (res.code === '200') { |
|
|
|
this.datalist = res.data.records |
|
|
|
} |
|
|
|
}) |
|
|
|
/*notTheCompanyModelPageList(this.dialogQuery).then((res) => { |
|
|
|
if (res.code === '200') {*/ |
|
|
|
this.datalist = row.moreList |
|
|
|
/*} |
|
|
|
})*/ |
|
|
|
}, |
|
|
|
handlink(row) { |
|
|
|
this.viewState = 2 |
|
|
|