11
This commit is contained in:
@@ -6,10 +6,10 @@
|
||||
@scrolltolower="fnScrollBottom()">
|
||||
<view class="list-box-list" v-if="state.dataList.length > 0">
|
||||
<view class="data-item" v-for="(item, index) in state.dataList" :key="index" @click="arehouseItemFun(item)">
|
||||
<view class="tit">{{ formatLangTextValue(item.FlexEntryId.Name) }}</view>
|
||||
<view class="description">{{ formatLangTextValue(item.FlexEntryId.Description) }}</view>
|
||||
<view class="tit">{{ item.FFlexValueName }}</view>
|
||||
<!-- <view class="description">{{ item. }}</view> -->
|
||||
<view class="line-p"></view>
|
||||
<view class="b-font">仓位编号:{{item.FlexEntryId.Number}}</view>
|
||||
<view class="b-font">仓位编号:{{item.FFlexValueNumber}}</view>
|
||||
</view>
|
||||
</view>
|
||||
</scroll-view>
|
||||
@@ -78,7 +78,7 @@
|
||||
fStockFlexDetailList(param).then(res => {
|
||||
uni.hideLoading();
|
||||
if (res.code == 200) {
|
||||
state.dataList = res.data;
|
||||
state.dataList = res.data.list;
|
||||
}
|
||||
});
|
||||
}
|
||||
@@ -86,7 +86,14 @@
|
||||
emits('locationClose', false)
|
||||
}
|
||||
const arehouseItemFun = (item:any) => {
|
||||
emits('locationData',item)
|
||||
emits('locationData',{
|
||||
...item,
|
||||
FlexEntryId:{
|
||||
Number:item.FFlexValueNumber
|
||||
}
|
||||
})
|
||||
// FEntity_FEntryId
|
||||
|
||||
}
|
||||
const toPages = (url : string, data : any = {}) => {
|
||||
uni.$u.route({
|
||||
|
||||
@@ -43,7 +43,7 @@
|
||||
scrollHeight: 0,
|
||||
page: {
|
||||
pageIndex: 1,
|
||||
pageSize: 20,
|
||||
pageSize: 20000,
|
||||
totalCount: 0
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user