|
|
@ -84,7 +84,7 @@ |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="车型" align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.modelName }}</span> |
|
|
|
<span class="bluezi" @click="lookPeiZhi(scope.row)">{{ scope.row.modelName }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="配置简述" align="center"> |
|
|
@ -123,6 +123,8 @@ |
|
|
|
<!-- End 列表页面 --> |
|
|
|
<!-- 查看销售订单 --> |
|
|
|
<saleOrder v-show="viewState == 2" ref="divSale" @doback="resetState"/> |
|
|
|
<!-- 查看车型配置标准页面 --> |
|
|
|
<vehicleconfiguration v-show="viewState == 4" ref="divPeizhi" @doback="resetState"/> |
|
|
|
<!-- 选择采购渠道 --> |
|
|
|
<el-dialog :visible.sync="dialogVisible" width="50%"> |
|
|
|
<el-form ref="form_obj" :model="formobj" class="formadd"> |
|
|
@ -137,7 +139,7 @@ |
|
|
|
<el-col :span="24"> |
|
|
|
<el-form-item> |
|
|
|
<el-select v-model="formobj.purchaseOrderTypeValue" placeholder="请选择" filterable clearable @change="changePurchaseOrderType"> |
|
|
|
<el-option v-for="item in purchaseOrderType_list" :disabled="item.dictValue == '挂车'" :key="item.dictKey" :label="item.dictValue" :value="item.dictValue"/> |
|
|
|
<el-option v-for="item in purchaseOrderType_list" :disabled="item.dictValue == '挂车' || item.dictValue == '内购'" :key="item.dictKey" :label="item.dictValue" :value="item.dictValue"/> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
@ -162,6 +164,7 @@ import ButtonBar from '@/components/ButtonBar' |
|
|
|
import { getOrgSidByPath, selectOrgLists, typeValues } from '@/api/cheliang/dictcommons' |
|
|
|
import { getStorage } from '@/utils/auth' |
|
|
|
import saleOrder from '@/components/publicPage/saleOrder' |
|
|
|
import vehicleconfiguration from '@/views/cheliang/cheliangtaizhang/relation/vehicleconfiguration' |
|
|
|
|
|
|
|
export default { |
|
|
|
name: 'caigouqudaoselected', |
|
|
@ -169,7 +172,8 @@ export default { |
|
|
|
Pagination, |
|
|
|
pageye, |
|
|
|
ButtonBar, |
|
|
|
saleOrder |
|
|
|
saleOrder, |
|
|
|
vehicleconfiguration |
|
|
|
}, |
|
|
|
data() { |
|
|
|
return { |
|
|
@ -414,6 +418,16 @@ export default { |
|
|
|
this.viewState = 2 |
|
|
|
this.$refs['divSale'].showInfo({ sid: row.saleOrderSid }) |
|
|
|
}, |
|
|
|
lookPeiZhi(row) { |
|
|
|
this.viewState = 4 |
|
|
|
const aa = { |
|
|
|
modelSid: row.modelSid, |
|
|
|
configSid: row.configSid, |
|
|
|
vehModelConfigSid: row.modelConfigSid, |
|
|
|
guidedPrice: row.guidedPrice |
|
|
|
} |
|
|
|
this.$refs['divPeizhi'].showInfo(aa) |
|
|
|
}, |
|
|
|
resetState() { |
|
|
|
this.viewState = 1 |
|
|
|
}, |
|
|
|