Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
EcomWeb
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
feiyue.teng
2025-02-08 15:57:26 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
e7a744e83c500844beffe32cff8d1b38fc523b06
e7a744e8
1 parent
3c1021c9
申报数据编辑表格行编辑功能修改
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
5 deletions
.env.uat
src/views/editReportingData/index.vue
.env.uat
View file @
e7a744e
...
...
@@ -10,9 +10,11 @@ VUE_APP_Version = '1.0.0'
#测试环境
VUE_APP_BASE_API = 'http://101.132.100.41:7023/Ecom'
VUE_APP_BASE_ROUTE = '/EcomUat'
#VUE_APP_BASE_ROUTE = '/EcomUat'
VUE_APP_BASE_ROUTE = '/Ecom'
VUE_APP_BASE_LOGINOUT = '/EcomUat'
#VUE_APP_BASE_LOGINOUT = '/EcomUat'
VUE_APP_BASE_LOGINOUT = '/Ecom'
#后端版本校验版本号
VUE_APP_APIVERSION = '033BD94B1168D7E4F0D644C3C95E35BF.A3889C390C14952AD666ABC3BE46BE40'
...
...
src/views/editReportingData/index.vue
View file @
e7a744e
...
...
@@ -487,7 +487,6 @@
class="fedexDetialTable fedexSreachTable editableTable"
ref="entryTable"
:pagination="false"
:maxHeight="350"
:data="detailData"
:headerData="detialHeaderData"
:border="true"
...
...
@@ -892,8 +891,12 @@
"totalPrice": 0,
"unit": ""
})
this.$nextTick(()=>{
this.expandRowKeys = [orderNum]
})
},
updateRow(row){
if (this.expandRowKeys.length > 0) return
this.expandRowKeys = [row.gnum]
let obj = {}
for (let key in row) {
...
...
@@ -902,8 +905,8 @@
this.$nextTick(()=>{
this.$refs.rowEditForm.tableRowformData = obj
const table = this.$refs.entryTable.$el.querySelector('.el-table__body-wrapper');
table.scrollTop = row.gnum*51+10
//
const table = this.$refs.entryTable.$el.querySelector('.el-table__body-wrapper');
//
table.scrollTop = row.gnum*51+10
})
},
getTotalNumber(){
...
...
@@ -923,6 +926,7 @@
})
this.$nextTick(()=>{
this.getTotalNumber()
this.expandRowKeys = []
})
},
rowFormDataSave(props){
...
...
Please
register
or
login
to post a comment