diff --git a/anrui-buscenter/anrui-buscenter-ui/src/api/chexingchaxun/modelinquire.js b/anrui-buscenter/anrui-buscenter-ui/src/api/chexingchaxun/modelinquire.js
index 690943249b..a27022da7c 100644
--- a/anrui-buscenter/anrui-buscenter-ui/src/api/chexingchaxun/modelinquire.js
+++ b/anrui-buscenter/anrui-buscenter-ui/src/api/chexingchaxun/modelinquire.js
@@ -54,8 +54,13 @@ export function brandDown(data) {
// 车型配置详细信息
export function selectExiCarConfig(data) {
return request({
- url: '/base/v1/basevehicle/selectExiCarConfig/' + data.modelSid + '/' + data.configSid + '/' + data.userSid,
- method: 'get'
+ url: '/base/v1/basevehicle/selectExiCarConfig',
+ method: 'post',
+ params: {
+ modelSid:data.modelSid,
+ configSid:data.configSid,
+ vehModelConfigSid:data.vehModelConfigSid,
+ },
})
}
// 现车车辆的分页列表
diff --git a/anrui-buscenter/anrui-buscenter-ui/src/components/VehicleConfigurationSub/vehicleconfiguration.vue b/anrui-buscenter/anrui-buscenter-ui/src/components/VehicleConfigurationSub/vehicleconfiguration.vue
index 89f01c2701..9583800910 100644
--- a/anrui-buscenter/anrui-buscenter-ui/src/components/VehicleConfigurationSub/vehicleconfiguration.vue
+++ b/anrui-buscenter/anrui-buscenter-ui/src/components/VehicleConfigurationSub/vehicleconfiguration.vue
@@ -222,10 +222,7 @@ export default {
immediate: false,
handler(newVal, oldVal) {
if (newVal.configSid !== '' && newVal.modelSid !== ''){
- if (newVal.guidedPrice !== '' || newVal.guidedPrice !== null){
- const guidedPrice_two = parseFloat(Number(newVal.guidedPrice) / 10000).toFixed(2)
- this.guidedPrice = guidedPrice_two
- }
+ this.guidedPrice = newVal.guidedPrice
selectExiCarConfig({
modelSid:newVal.modelSid,
configSid:newVal.configSid,
diff --git a/anrui-buscenter/anrui-buscenter-ui/src/views/chexingchaxun/modelinquire/modelstandardconfiguration.vue b/anrui-buscenter/anrui-buscenter-ui/src/views/chexingchaxun/modelinquire/modelstandardconfiguration.vue
index c6b44edbac..2263822daa 100644
--- a/anrui-buscenter/anrui-buscenter-ui/src/views/chexingchaxun/modelinquire/modelstandardconfiguration.vue
+++ b/anrui-buscenter/anrui-buscenter-ui/src/views/chexingchaxun/modelinquire/modelstandardconfiguration.vue
@@ -65,7 +65,12 @@ export default {
this.sid_list.modelSid = row.modelSid
this.sid_list.configSid = row.configSid
this.sid_list.vehModelConfigSid = row.vehModelConfigSid
- this.sid_list.guidedPrice = row.price
+ if (row.price !== '' || row.price !== null){
+ this.sid_list.guidedPrice = row.price
+ }
+ if (row.price == '' || row.price == null){
+ this.sid_list.guidedPrice = ''
+ }
}
}
}
diff --git a/anrui-buscenter/anrui-buscenter-ui/src/views/chexingchaxun/modelinquire/vehiclecarInfo.vue b/anrui-buscenter/anrui-buscenter-ui/src/views/chexingchaxun/modelinquire/vehiclecarInfo.vue
index 116c5a882f..e201f4a8c0 100644
--- a/anrui-buscenter/anrui-buscenter-ui/src/views/chexingchaxun/modelinquire/vehiclecarInfo.vue
+++ b/anrui-buscenter/anrui-buscenter-ui/src/views/chexingchaxun/modelinquire/vehiclecarInfo.vue
@@ -482,6 +482,7 @@ export default {
this.FormLoading = true
this.sid_list.modelSid = modelSid
this.sid_list.configSid = modelConfigSid
+ this.sid_list.vehModelConfigSid = ''
selectExiCarConfig(this.sid_list).then((response) => {
this.FormLoading = false
if (response.code === '200') {
diff --git a/anrui-buscenter/anrui-buscenter-ui/src/views/kehuguanli/kehudangan/kehudangan.vue b/anrui-buscenter/anrui-buscenter-ui/src/views/kehuguanli/kehudangan/kehudangan.vue
index 8e952fa6a8..ee5b6996c3 100644
--- a/anrui-buscenter/anrui-buscenter-ui/src/views/kehuguanli/kehudangan/kehudangan.vue
+++ b/anrui-buscenter/anrui-buscenter-ui/src/views/kehuguanli/kehudangan/kehudangan.vue
@@ -234,6 +234,7 @@ export default {
list: [],
sids: [],
names: [],
+ row:[],
YongHuid: [],
merType: [],
induslevel: [],
@@ -402,6 +403,7 @@ export default {
const aa = []
const bb = []
const cc = []
+ this.row = row
console.log('112233', row)
row.forEach((element) => {
aa.push(element.sid)
diff --git a/anrui-buscenter/anrui-buscenter-ui/src/views/kehuguanli/kehuziliao/kehudanganziliao.vue b/anrui-buscenter/anrui-buscenter-ui/src/views/kehuguanli/kehuziliao/kehudanganziliao.vue
index 3d1a07d529..2554314cfd 100644
--- a/anrui-buscenter/anrui-buscenter-ui/src/views/kehuguanli/kehuziliao/kehudanganziliao.vue
+++ b/anrui-buscenter/anrui-buscenter-ui/src/views/kehuguanli/kehuziliao/kehudanganziliao.vue
@@ -146,6 +146,7 @@ export default {
imglist: [],
listphoto: [],
customerName: '',
+ customerSid:'',
temp: {
fileName: '',
attachType: '',
@@ -160,7 +161,8 @@ export default {
params: {
fileName: '',
attachType: '',
- linkSid: ''
+ linkSid: '',
+ customerSid:'',
}
},
multipleSelection: []
@@ -222,7 +224,8 @@ export default {
params: {
fileName: '',
attachType: '',
- linkSid: ''
+ linkSid: '',
+ customerSid:this.customerSid
}
}
this.loadList()
@@ -242,6 +245,8 @@ export default {
},
newpage(sid, name) {
this.viewState = 2
+ this.customerSid = sid
+ this.queryParams.params.customerSid = sid
this.loadList()
},
handleSelectionChange(val) {
diff --git a/anrui-scm/anrui-scm-ui/src/components/VehicleConfigurationSub/vehicleconfiguration.vue b/anrui-scm/anrui-scm-ui/src/components/VehicleConfigurationSub/vehicleconfiguration.vue
index 43f7e5bfcb..b39f882d9a 100644
--- a/anrui-scm/anrui-scm-ui/src/components/VehicleConfigurationSub/vehicleconfiguration.vue
+++ b/anrui-scm/anrui-scm-ui/src/components/VehicleConfigurationSub/vehicleconfiguration.vue
@@ -222,10 +222,7 @@ export default {
immediate: false,
handler(newVal, oldVal) {
if (newVal.configSid !== '' && newVal.modelSid !== ''){
- if (newVal.guidedPrice !== '' || newVal.guidedPrice !== null){
- const guidedPrice_two = parseFloat(Number(newVal.guidedPrice) / 10000).toFixed(2)
- this.guidedPrice = guidedPrice_two
- }
+ this.guidedPrice = newVal.guidedPrice
selectExiCarConfig({
modelSid:newVal.modelSid,
configSid:newVal.configSid,
diff --git a/anrui-scm/anrui-scm-ui/src/views/cheliang/cheliangtaizhang/relation/vehicleconfiguration.vue b/anrui-scm/anrui-scm-ui/src/views/cheliang/cheliangtaizhang/relation/vehicleconfiguration.vue
index 484f71b88c..4515c58887 100644
--- a/anrui-scm/anrui-scm-ui/src/views/cheliang/cheliangtaizhang/relation/vehicleconfiguration.vue
+++ b/anrui-scm/anrui-scm-ui/src/views/cheliang/cheliangtaizhang/relation/vehicleconfiguration.vue
@@ -48,7 +48,14 @@ export default {
this.sid_list.modelSid = row.modelSid
this.sid_list.configSid = row.modelConfigSid
this.sid_list.vehModelConfigSid = row.vehModelConfigSid
- this.sid_list.guidedPrice = row.guidedPrice
+ if (row.guidedPrice !== '' || row.guidedPrice !== null){
+ const guidedPrice_two = parseFloat(Number(row.guidedPrice) / 10000).toFixed(2)
+ this.sid_list.guidedPrice = guidedPrice_two
+ }
+ if (row.guidedPrice == '' || row.guidedPrice == null){
+ this.sid_list.guidedPrice = ''
+ }
+ // this.sid_list.guidedPrice = row.guidedPrice
}
}
}
diff --git a/anrui-scm/anrui-scm-ui/src/views/cheliang/chexing/chexing.vue b/anrui-scm/anrui-scm-ui/src/views/cheliang/chexing/chexing.vue
index d417bb2792..c64b9e3bba 100644
--- a/anrui-scm/anrui-scm-ui/src/views/cheliang/chexing/chexing.vue
+++ b/anrui-scm/anrui-scm-ui/src/views/cheliang/chexing/chexing.vue
@@ -98,7 +98,7 @@
@selection-change="handleSelectionChange">
-
+
车型配置
@@ -108,12 +108,12 @@
{{ scope.row.brandName }}
-
+
{{ scope.row.vehicleAlias }}
-
+
{{ scope.row.createOrgName }}
@@ -128,7 +128,7 @@
{{ scope.row.fuelTypeValue }}
-
+
{{ scope.row.gearboxTypeValue }}
@@ -138,7 +138,7 @@
{{ scope.row.emissionStandardValue }}
-
+
查看
@@ -206,42 +206,42 @@ export default {
btnList: [
{
type: 'primary',
- size: 'medium',
+ size: 'small',
icon: 'plus',
btnKey: 'toAdd',
btnLabel: '新增'
},
{
type: 'primary',
- size: 'medium',
+ size: 'small',
icon: 'edit',
btnKey: 'toEdit',
btnLabel: '编辑'
},
{
type: 'danger',
- size: 'medium',
+ size: 'small',
icon: 'del',
btnKey: 'doDel',
btnLabel: '删除'
},
{
type: 'success',
- size: 'medium',
+ size: 'small',
icon: 'Import',
btnKey: 'doImport',
btnLabel: '导入'
},
{
type: 'success',
- size: 'medium',
+ size: 'small',
icon: 'export',
btnKey: 'build',
btnLabel: '导出'
},
{
type: 'info',
- size: 'medium',
+ size: 'small',
icon: 'cross',
btnKey: 'doClose',
btnLabel: '关闭'
diff --git a/anrui-scm/anrui-scm-ui/src/views/kucunguanli/panku/pankuAdd.vue b/anrui-scm/anrui-scm-ui/src/views/kucunguanli/panku/pankuAdd.vue
index d47650a768..50f506aa37 100644
--- a/anrui-scm/anrui-scm-ui/src/views/kucunguanli/panku/pankuAdd.vue
+++ b/anrui-scm/anrui-scm-ui/src/views/kucunguanli/panku/pankuAdd.vue
@@ -173,7 +173,7 @@ export default {
this.warehouse_list = res.data
}
})
- typeValues({ type: 'whether' }).then((res) => {
+ typeValues({ type: 'certificate' }).then((res) => {
if (res.success) {
this.certificateType_list = res.data
}
diff --git a/anrui-scm/anrui-scm-ui/src/views/kucunguanli/panku/pankuguanli.vue b/anrui-scm/anrui-scm-ui/src/views/kucunguanli/panku/pankuguanli.vue
index f27b964061..d749c48e77 100644
--- a/anrui-scm/anrui-scm-ui/src/views/kucunguanli/panku/pankuguanli.vue
+++ b/anrui-scm/anrui-scm-ui/src/views/kucunguanli/panku/pankuguanli.vue
@@ -237,7 +237,7 @@ export default {
},
methods: {
init() {
- typeValues({ type: 'whether' }).then((res) => {
+ typeValues({ type: 'certificate' }).then((res) => {
if (res.success) {
this.certificateType_list = res.data
}
diff --git a/anrui-scm/anrui-scm-ui/src/views/supplychain/yancheguanli/yancheguanliAdd.vue b/anrui-scm/anrui-scm-ui/src/views/supplychain/yancheguanli/yancheguanliAdd.vue
index 8d23036e97..0327c2f0dc 100644
--- a/anrui-scm/anrui-scm-ui/src/views/supplychain/yancheguanli/yancheguanliAdd.vue
+++ b/anrui-scm/anrui-scm-ui/src/views/supplychain/yancheguanli/yancheguanliAdd.vue
@@ -111,9 +111,9 @@
-
- 车辆检查表
-
+
+
+