diff --git a/anrui-base/anrui-base-ui/src/views/guakaogongsi/guakaogongsiguanli/guakaogongsiAdd.vue b/anrui-base/anrui-base-ui/src/views/guakaogongsi/guakaogongsiguanli/guakaogongsiAdd.vue
index 7d45962dce..8509e7c9fb 100644
--- a/anrui-base/anrui-base-ui/src/views/guakaogongsi/guakaogongsiguanli/guakaogongsiAdd.vue
+++ b/anrui-base/anrui-base-ui/src/views/guakaogongsi/guakaogongsiguanli/guakaogongsiAdd.vue
@@ -1101,6 +1101,12 @@ export default {
// this.temp.managementDetailAddress = this.managementProvince + this.managementcity + this.managementcount + this.managementAll
this.$refs['dataForm'].validate((valid) => {
if (valid) {
+ this.temp.provinceCode = this.managementProvinceCode
+ this.temp.cityCode = this.managementcityCode
+ this.temp.managementAddressCode = this.managementcountCode
+ this.temp.managementDetailAddressProvince = this.managementProvince
+ this.temp.managementDetailAddressCity = this.managementcity
+ this.temp.managementDetailAddressCounty = this.managementcount
// if (this.dialogStatus == 'add') {
// if (!this.temp.registAddress) {
// this.temp.registAddress = this.registProvince + '-' + this.registcity + '-' + this.registcount
@@ -1108,7 +1114,7 @@ export default {
//
// }
// if (!this.temp.managementAddress && this.managementProvince && this.managementcity && this.managementcount) {
- this.temp.managementAddress = this.managementProvince + this.managementcity + this.managementcount
+ // this.temp.managementAddress = this.managementProvince + this.managementcity + this.managementcount
console.log('新增、编辑经营地址', this.temp.managementAddress)
// }
// }
diff --git a/anrui-base/anrui-base-ui/src/views/guakaogongsi/guakaogongsiguanli/guakaogongsiInfo.vue b/anrui-base/anrui-base-ui/src/views/guakaogongsi/guakaogongsiguanli/guakaogongsiInfo.vue
index 3a9808f2ad..c24087dcbe 100644
--- a/anrui-base/anrui-base-ui/src/views/guakaogongsi/guakaogongsiguanli/guakaogongsiInfo.vue
+++ b/anrui-base/anrui-base-ui/src/views/guakaogongsi/guakaogongsiguanli/guakaogongsiInfo.vue
@@ -71,7 +71,9 @@
- {{ temp.managementAddress + temp.managementDetailAddress }}
+ {{
+ temp.managementDetailAddressProvince + temp.managementDetailAddressCity + temp.managementDetailAddressCounty + temp.managementDetailAddress
+ }}
diff --git a/anrui-scm/anrui-scm-ui/src/api/supplychain/diaochekaipiaoshenqing.js b/anrui-scm/anrui-scm-ui/src/api/supplychain/diaochekaipiaoshenqing.js
index 543ea86b6f..c762e8fb03 100644
--- a/anrui-scm/anrui-scm-ui/src/api/supplychain/diaochekaipiaoshenqing.js
+++ b/anrui-scm/anrui-scm-ui/src/api/supplychain/diaochekaipiaoshenqing.js
@@ -1 +1,49 @@
import request from '@/utils/request'
+
+// 获取调车列表
+export function listPage(data) {
+ return request({
+ url: '/base/v1/baseshuntinginvoicingapply/listPage',
+ data,
+ method: 'post',
+ headers: { 'Content-Type': 'application/json' }
+ })
+}
+
+// 批量删除调账列表数据
+export function delBySids(data) {
+ return request({
+ url: '/base/v1/baseaccadjapply/delBySids',
+ data,
+ method: 'DELETE',
+ headers: { 'Content-Type': 'application/json' }
+ })
+}
+
+// 保存
+export function save(data) {
+ return request({
+ url: '/base/v1/baseaccadjapply/save',
+ data,
+ method: 'post',
+ headers: { 'Content-Type': 'application/json' }
+ })
+}
+
+// 回显
+export function fetchDetailsBySid(data) {
+ return request({
+ url: '/base/v1/baseaccadjapply/fetchDetailsBySid/' + data,
+ method: 'get',
+ })
+}
+
+// 获取车辆列表
+export function fetchVeh(data) {
+ return request({
+ url: '/base/v1/baseaccadjapply/fetchVeh',
+ data,
+ method: 'post',
+ headers: { 'Content-Type': 'application/json' }
+ })
+}
diff --git a/anrui-scm/anrui-scm-ui/src/api/supplychain/tiaozhangshenqing.js b/anrui-scm/anrui-scm-ui/src/api/supplychain/tiaozhangshenqing.js
index 94bddc3458..d5b58fd734 100644
--- a/anrui-scm/anrui-scm-ui/src/api/supplychain/tiaozhangshenqing.js
+++ b/anrui-scm/anrui-scm-ui/src/api/supplychain/tiaozhangshenqing.js
@@ -20,7 +20,7 @@ export function delBySids(data) {
})
}
-// 获取调账列表
+// 保存
export function save(data) {
return request({
url: '/base/v1/baseaccadjapply/save',
@@ -29,7 +29,8 @@ export function save(data) {
headers: { 'Content-Type': 'application/json' }
})
}
-// 获取调账列表
+
+// 回显
export function fetchDetailsBySid(data) {
return request({
url: '/base/v1/baseaccadjapply/fetchDetailsBySid/' + data,
@@ -37,3 +38,13 @@ export function fetchDetailsBySid(data) {
})
}
+// 获取车辆列表
+export function fetchVeh(data) {
+ return request({
+ url: '/base/v1/baseaccadjapply/fetchVeh',
+ data,
+ method: 'post',
+ headers: { 'Content-Type': 'application/json' }
+ })
+}
+
diff --git a/anrui-scm/anrui-scm-ui/src/views/supplychain/tiaozhangshenqingguanli/relation/tiaozhangcheliangList.vue b/anrui-scm/anrui-scm-ui/src/views/supplychain/tiaozhangshenqingguanli/relation/tiaozhangcheliangList.vue
index f3d57401bd..75725cc5fd 100644
--- a/anrui-scm/anrui-scm-ui/src/views/supplychain/tiaozhangshenqingguanli/relation/tiaozhangcheliangList.vue
+++ b/anrui-scm/anrui-scm-ui/src/views/supplychain/tiaozhangshenqingguanli/relation/tiaozhangcheliangList.vue
@@ -8,65 +8,66 @@
关闭
-
-
-
{{ searchxianshitit }}
-
-
-
-
查询
-
重置
+
+
+
+
{{ searchxianshitit }}
+
-
-
-
-
-
-
-
-
- {{ scope.row.vinNo }}
-
-
-
-
- {{ scope.row.color }}
-
-
-
-
- {{ scope.row.location }}
-
-
-
-
- {{ scope.row.guidedPrice }}
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+ {{ scope.row.vinNo }}
+
+
+
+
+ {{ scope.row.shuntingType }}
+
+
+
+
+ {{ scope.row.buyerOrgName }}
+
+
+
+
+ {{ scope.row.sellerOrgName }}
+
+
+
+
+
@@ -76,7 +77,7 @@