Compare commits

..

No commits in common. 'f66fd87d7bc31b9f76ac162e40ccb999692c6cb1' and '84d37428cb9eda1679d315369a2a3aa034c7caa8' have entirely different histories.

@ -142,7 +142,7 @@ export default class LoginPage extends BasePage {
// console.log('Version////', this.Version); // console.log('Version////', this.Version);
} }
///****************** ///******************
version = '0.0.180'; // version = '0.0.179'; //
//version = '0.0.14'; // //version = '0.0.14'; //
//*************** false true **************** //*************** false true ****************
//isTest = true; //isTest = true;

@ -20,19 +20,20 @@
<view> <view>
<lj-list-row label="物料编码:" :value="removeLeadingZeros(item.matnr)" /> <lj-list-row label="物料编码:" :value="removeLeadingZeros(item.matnr)" />
<lj-list-row label="物料名称:" :value="item.maktx" /> <lj-list-row label="物料名称:" :value="item.maktx" />
<lj-list-row label="非限制库存:" :value="removeLastZeros(item.clabs)" /> <lj-list-row label="非限制库存:" :value="item.clabs" />
<lj-list-row label="冻结库存:" :value="removeLastZeros(item.cspem)" /> <lj-list-row label="冻结库存:" :value="item.cspem" />
</view> </view>
</u-form> </u-form>
</view> </view>
</view> </view>
<!-- 按钮 -->
<view class="bottom-bar">
<u-row class="button-bar">
<view style="position: absolute; bottom: 120rpx; width: 90%"> <view style="position: absolute; bottom: 120rpx; width: 90%">
<lj-pagination :total="total" :currentPage="queryParams.pageNum" @change="changePage"></lj-pagination> <lj-pagination :total="total" :currentPage="queryParams.pageNum" @change="changePage"></lj-pagination>
</view> </view>
<!-- 按钮 -->
<view class="bottom-bar">
<u-row class="button-bar">
<u-col :span="12"> <u-col :span="12">
<u-button type="primary" @click="search"></u-button> <u-button type="primary" @click="search"></u-button>
</u-col> </u-col>
@ -111,13 +112,6 @@ export default class sapStockPo extends BasePage implements SapStockPo {
this.sapStockList = this.model.rows; this.sapStockList = this.model.rows;
this.total = this.model.total; this.total = this.model.total;
} }
removeLastZeros(data: any) {
if (data) {
return Number(data).toFixed(2);
}
return data;
}
} }
</script> </script>
@ -135,7 +129,7 @@ export default class sapStockPo extends BasePage implements SapStockPo {
} }
.scroll { .scroll {
height: 100%; height: 740rpx;
overflow: scroll; overflow: scroll;
.form2 { .form2 {

Loading…
Cancel
Save