123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- <template>
- <view>
- <view style='background:#fff;padding:15px 10px;border-radius:0 0 10px 10px;'>
- <u-search bgColor='#F5F6F9' @change='keyWordChange' :show-action="false" placeholder="请输入合同编号或客户名称" v-model="searchKeyWord"></u-search>
- </view>
-
- <view class='content'>
- <view class='content-item' v-for='item in contractList'>
- <view style='padding:10px 0;' class="flex justify-between">
- <view class="title">合同编号</view>
- <view>{{item.contractNo}}</view>
- </view>
- <view style='padding:10px 0;' class="flex justify-between">
- <view class="title">客户</view>
- <view>{{item.seller}}</view>
- </view>
- <view style='padding:10px 0;' class="flex justify-between">
- <view class="title">合同重量(吨)</view>
- <view>{{item.weight}}</view>
- </view>
- <view style='padding:10px 0;' class="flex justify-between">
- <view class="title">合同单价(元)</view>
- <view>{{item.unitContractPrice}}</view>
- </view>
- <view style='padding:10px 0;' class="flex justify-between">
- <view class="title">合同总价(元)</view>
- <view>{{item.totalContractPrice}}</view>
- </view>
- <view style='padding:10px 0;' class="flex justify-between">
- <view class="title">已付款(元)</view>
- <view>{{item.mildewGrain}}</view>
- </view>
- <view style='padding:10px 0;' class="flex justify-between">
- <view class="title">已开发票 (元)</view>
- <view>{{item.goodsNames}}</view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- chartlist: [],
- carCount1: '',
- carCount2: '',
- carCount3: '',
- inventoryCost: '',
- inventoryValue: '',
- ZChart: {},
- // url:"https://datav.aliyuncs.com/share/235518097ffd673bc1eb05011b9a02b6",
- url: '',
- flag: true,
- chartData: {},
- ringoptions: {},
- contractType:2,
- contractList:[],
- currentPage:1,
- pageSize:10,
- searchKeyWord:''
- }
- },
- onLoad: function(option) {
- uni.showLoading({
- title: "加载中",
- mask: true
- })
-
- this.init()
- },
-
- onReachBottom() {
- let _self = this
- uni.showLoading({
- title: "加载中",
- mask: true
- })
- setTimeout(function() {
- _self.currentPage++;
- _self.init();
- }, 2000);
- },
- onPullDownRefresh() {
- let _self = this
- setTimeout(function() {
- uni.stopPullDownRefresh();//停止当前页面下拉刷新
- _self.currentPage=0;
- _self.init();
- }, 1000);
- },
- methods: {
- keyWordChange(e){
- this.searchKeyWord=e
- uni.showLoading({
- title: "加载中",
- mask: true
- })
- this.init()
-
- },
- init() {
- this.$api.doRequest('get', '/contractManagementInfo/selectInfo',
- {compId:uni.getStorageSync('pcUserInfo').compId,
- contractType: this.contractType,goodsType:1,currentPage: this.currentPage,pageSize: this.pageSize,searchKeyWord:this.searchKeyWord}).then(res => {
- uni.hideLoading()
- if(res.data.data.records.length==0){
- uni.showToast({title:'没有更多数据了',icon:"none"});
- }
- if(this.currentPage!=0){
- this.contractList=this.contractList.concat(res.data.data.records)
- }else{
- this.contractList=res.data.data.records
- }
- })
- },
- getdata(e) {
- console.log(e)
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .content{
- background:#F5F6FA;
- }
- .content-item{
- background:#fff;
- margin:10px;
- padding:10px;
- border-radius:6px;
- font-size:14px;
- .title {
- color:#9698A2;
- font-size:26rpx;
- }
- }
- charts-box {
- // background: black;
- position: relative;
- // top: 70vh;
- }
- .content2 .row,
- .content4 .row {
- display: flex;
- justify-content: space-around;
- background: #24262d;
- padding: 40rpx 20rpx;
- .item-top,
- .item-bottom {
- color: #d5d5d5;
- }
- .item-bottom {
- display: flex;
- align-items: center;
- }
- }
- .bottom-tip {
- position: absolute;
- z-index: 11;
- color: #8c8c8d;
- right: 10px;
- bottom: 10px;
- }
- .title-margin {
- bottom: 120rpx;
- }
- </style>
|