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
zihan.wu
2025-02-08 16:48:25 +0800
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
9bc620416d7ccc5357d955d58baa062e0ecd814c
9bc62041
2 parents
469213c1
e7a744e8
Merge remote-tracking branch 'origin/dev-qingdao' into dev-qingdao
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 @
9bc6204
...
...
@@ -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 @
9bc6204
...
...
@@ -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