Browse Source

完善销售订单查询

master
yunuo970428 2 years ago
parent
commit
8b3f461322
  1. 74
      anrui-buscenter/anrui-buscenter-ui/src/views/xiaoshouguanli/dingdanchaxun/xiaoshoudingdanchaxun.vue

74
anrui-buscenter/anrui-buscenter-ui/src/views/xiaoshouguanli/dingdanchaxun/xiaoshoudingdanchaxun.vue

@ -76,14 +76,24 @@
<span>{{ scope.row.purchaseSystemName }}</span>
</template>
</el-table-column>
<el-table-column label="销售部门" align="center" width="120">
<template slot-scope="scope">
<span>{{ scope.row.orgName }}</span>
</template>
</el-table-column>
<el-table-column label="销售专员" align="center" width="120">
<template slot-scope="scope">
<span>{{ scope.row.saler }}</span>
</template>
</el-table-column>
<el-table-column label="订单编号" width="100px" align="center">
<template slot-scope="scope">
<span class="bluezi" @click="handleLook(scope.row)">{{ scope.row.saleOrderId }}</span>
</template>
</el-table-column>
<el-table-column label="合同编号" align="center" width="120">
<el-table-column label="订单状态" align="center" width="150">
<template slot-scope="scope">
<span>{{ scope.row.contractId }}</span>
<span @click="flowRecord(scope.row)" class="bluezi">{{ scope.row.saleOrderState }}</span>
</template>
</el-table-column>
<el-table-column label="排产订单编号" align="center" width="120">
@ -91,79 +101,79 @@
<span>{{ scope.row.orderingNo }}</span>
</template>
</el-table-column>
<el-table-column label="贴息" align="center" width="100">
<el-table-column label="客户名称" align="center" width="120">
<template slot-scope="scope">
<span>{{ scope.row.factoryDiscount }}</span>
<span>{{ scope.row.customerName }}</span>
</template>
</el-table-column>
<el-table-column label="中介返利" align="center" width="100">
<el-table-column label="手机号" align="center" width="120">
<template slot-scope="scope">
<span>{{ scope.row.distributorPriceAll }}</span>
<span>{{ scope.row.mobile }}</span>
</template>
</el-table-column>
<el-table-column label="车架号" align="center" width="120">
<el-table-column label="车" align="center" min-width="180">
<template slot-scope="scope">
<span>{{ scope.row.vinNo }}</span>
<span>{{ scope.row.modelInfo.model }}</span>
</template>
</el-table-column>
<el-table-column label="客户名称" align="center" width="120">
<el-table-column label="数量" align="center" width="80">
<template slot-scope="scope">
<span>{{ scope.row.customerName }}</span>
<span>{{ scope.row.modelInfo.number }}</span>
</template>
</el-table-column>
<el-table-column label="手机号" align="center" width="120">
<el-table-column label="车架号" align="center" min-width="500">
<template slot-scope="scope">
<span>{{ scope.row.mobile }}</span>
<span>{{ scope.row.vinNo }}</span>
</template>
</el-table-column>
<el-table-column label="销售部门" align="center" width="120">
<el-table-column label="单车销售指导价" align="center" width="150">
<template slot-scope="scope">
<span>{{ scope.row.orgName }}</span>
<span>{{ scope.row.guildPrice }}</span>
</template>
</el-table-column>
<el-table-column label="销售专员" align="center" width="120">
<el-table-column label="单车销售合同价" align="center" width="150">
<template slot-scope="scope">
<span>{{ scope.row.saler }}</span>
<span>{{ scope.row.finalPrice }}</span>
</template>
</el-table-column>
<el-table-column label="付款方式" align="center" width="150">
<el-table-column label="中介人1" align="center" width="120">
<template slot-scope="scope">
<span>{{ scope.row.carPurchaseType }}</span>
<span>{{ scope.row.distributorName }}</span>
</template>
</el-table-column>
<el-table-column label="订单状态" align="center" width="150">
<el-table-column label="返利金额1" align="center" width="120">
<template slot-scope="scope">
<span @click="flowRecord(scope.row)" class="bluezi">{{ scope.row.saleOrderState }}</span>
<span>{{ scope.row.distributorPrice }}</span>
</template>
</el-table-column>
<el-table-column label="创建日期" align="center" width="120">
<el-table-column label="中介人2" align="center" width="120">
<template slot-scope="scope">
<span>{{ scope.row.createdDate }}</span>
<span>{{ scope.row.distributorNameTwo }}</span>
</template>
</el-table-column>
<el-table-column label="订金合计" align="center" width="120">
<el-table-column label="返利金额2" align="center" width="120">
<template slot-scope="scope">
<span>{{ scope.row.deposit }}</span>
<span>{{ scope.row.distributorPriceTwo }}</span>
</template>
</el-table-column>
<el-table-column label="车型" align="center" min-width="180">
<el-table-column label="贴息" align="center" width="100">
<template slot-scope="scope">
<span>{{ scope.row.modelInfo.model }}</span>
<span>{{ scope.row.factoryDiscount }}</span>
</template>
</el-table-column>
<el-table-column label="品牌" align="center" width="180">
<el-table-column label="付款方式" align="center" width="150">
<template slot-scope="scope">
<span>{{ scope.row.modelInfo.brand }}</span>
<span>{{ scope.row.carPurchaseType }}</span>
</template>
</el-table-column>
<el-table-column label="成交价" align="center" width="100">
<el-table-column label="合同编号" align="center" width="120">
<template slot-scope="scope">
<span>{{ scope.row.modelInfo.price }}</span>
<span>{{ scope.row.contractId }}</span>
</template>
</el-table-column>
<el-table-column label="数量" align="center" width="80">
<el-table-column label="创建日期" align="center" width="120">
<template slot-scope="scope">
<span>{{ scope.row.modelInfo.number }}</span>
<span>{{ scope.row.createdDate }}</span>
</template>
</el-table-column>
</el-table>

Loading…
Cancel
Save