123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379 |
- <template>
- <view class="content">
- <view class="navbar">
- <view v-for="(item, index) in navList" :key="index" class="nav-item"
- :class="{ current: tabCurrentIndex == index }" @click="tabClick(index)">{{ item.text }}</view>
- </view>
- <swiper :current="tabCurrentIndex" :style="{ height: height }" class="swiper-box" duration="300"
- @change="changeTab">
- <swiper-item class="tab-content" v-for="(tabItem, tabIndex) in navList" :key="tabIndex">
- <scroll-view class="list-scroll-content" scroll-y @scrolltolower="loadData">
- <!-- 空白页 -->
- <empty v-if="tabItem.loaded === true && tabItem.orderList.length === 0"></empty>
- <view class="main" v-for="(item,index) in 10">
- <view class="main-id flex">
- <view class="">产品货号:9876543211025666</view>
- <view class="type1" v-if="tabCurrentIndex != 3">
- {{tabCurrentIndex ==2?'未同意':'未分责'}}
- </view>
- <view class="type2" v-else>
- 已分责
- </view>
- </view>
- <view class="main-name flex">
- <view class="">产品名称</view>
- </view>
- <view class="main-info flex">
- <scroll-view scroll-x="true" class="main-price">
- <view class="image-box">
- <view class="image-item" v-for="(itm,ind) in 10">
- <image src="../../static/img/user-item2.png" mode=""></image>
- </view>
- </view>
- </scroll-view>
- <view class="main-more">
- <view class="mainm-font">
- 查看详细
- </view>
- <image class="mainm-jt" src="../../static/img/jt.png" mode=""></image>
- </view>
- </view>
- <view class="main-num flex" v-if="tabCurrentIndex !=0 && tabCurrentIndex!=1">
- <view class="mainnum-item">
- 处理时间:2022年10月30日
- </view>
- <view class="mainnum-item">
- 金额:<text class="red">¥200</text>
- </view>
- </view>
- <view class="main-num flex" v-if="tabCurrentIndex ==3">
- <view class="mainnum-item">
- 处理数量: <text class="red">285</text>
- </view>
- <view class="mainnum-item">
- 处理人:李丹丹
- </view>
- </view>
- <view class="main-num flex">
- <view class="mainnum-item">
- 检验员:拉丹丹
- </view>
- <view class="mainnum-item">
- 提交人:李丹丹(组长)
- </view>
- </view>
- <view class="main-num flex" v-if="tabCurrentIndex ==3">
- <view class="mainnum-item gray">
- 责任人1(李丹丹):
- </view>
- <view class="mainnum-item red">
- 20%
- </view>
- </view>
- <view class="main-num flex" v-if="tabCurrentIndex ==3">
- <view class="mainnum-item gray">
- 责任人2(李丹丹):
- </view>
- <view class="mainnum-item red">
- 80%
- </view>
- </view>
- <view class="main-tip" v-if="tabCurrentIndex ==2">
- 反馈理由:责任分配不对,请重新填写,李丹丹的责任应为20%,请重新修改。
- </view>
- <view class=" bottom flex" v-if="tabCurrentIndex !=3">
- <view class="bottom-font">
- {{tabCurrentIndex==2?'处理数量':'不合格数量'}}:<text class="red">285</text>
- </view>
- <view class="btn-box" @click.stop="navTo('/pages/scrap/dispose')">
- <view class="box2">
- {{tabCurrentIndex==2?'修改处理':'立即处理'}}
- </view>
- </view>
- </view>
- </view>
- <!-- 订单列表 -->
- <uni-load-more :status="tabItem.loadingType"></uni-load-more>
- </scroll-view>
- </swiper-item>
- </swiper>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- tabCurrentIndex: 0,
- height: '',
- navList: [{
- state: 1,
- text: '全部',
- loadingType: 'more',
- orderList: [],
- page: 1, //当前页数
- limit: 10 //每次信息条数
- },
- {
- state: 2,
- text: '未分责',
- loadingType: 'more',
- orderList: [],
- page: 1, //当前页数
- limit: 10 //每次信息条数
- },
- {
- state: 3,
- text: '处理中',
- loadingType: 'more',
- orderList: [],
- page: 1, //当前页数
- limit: 10 //每次信息条数
- },
- {
- state: 4,
- text: '已分责',
- loadingType: 'more',
- orderList: [],
- page: 1, //当前页数
- limit: 10 //每次信息条数
- },
- ],
- };
- },
- onLoad() {},
- onShow() {},
- onReachBottom() {},
- onReady(res) {
- var _this = this;
- uni.getSystemInfo({
- success: resu => {
- const query = uni.createSelectorQuery();
- query.select('.swiper-box').boundingClientRect();
- query.exec(function(res) {
- _this.height = resu.windowHeight - res[0].top + 'px';
- console.log('打印页面的剩余高度', _this.height);
- });
- },
- fail: res => {}
- });
- },
- methods: {
- //swiper 切换
- changeTab(e) {
- this.tabCurrentIndex = e.target.current;
- this.loadData('tabChange');
- },
- //顶部tab点击
- tabClick(index) {
- this.tabCurrentIndex = index;
- },
- navTo(url) {
- uni.navigateTo({
- url
- })
- }
- }
- };
- </script>
- <style lang="scss">
- page,
- .content {
- min-height: 100%;
- height: auto;
- }
- .navbar {
- display: flex;
- height: 40px;
- padding: 0 5px;
- background: #fff;
- box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
- position: relative;
- z-index: 10;
- .nav-item {
- flex: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100%;
- font-size: 15px;
- color: #999999;
- position: relative;
- &.current {
- color: #333333;
- &:after {
- content: '';
- position: absolute;
- left: 50%;
- bottom: 0;
- transform: translateX(-50%);
- width: 44px;
- height: 0;
- border-bottom: 2px solid #FF4C4C;
- }
- }
- }
- }
- .swiper-box {
- padding-top: 10rpx;
- }
- .main {
- width: 700rpx;
- background: #FFFFFF;
- border-radius: 24rpx;
- margin: 20rpx auto 0;
- padding: 0 15rpx;
- line-height: 1;
- .main-id {
- padding: 35rpx 14rpx 30rpx;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #666666;
- border-bottom: 1px solid #ededed;
- }
- .type1 {
- font-size: 26rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #FF2D2D;
- }
- .type2 {
- font-size: 26rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #999999;
- }
- .main-name {
- padding: 20rpx 14rpx 16rpx;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #363636;
- }
- .main-info {
- padding: 0 14rpx;
- .main-price {
- width: 480rpx;
- .image-box {
- display: flex;
- align-items: center;
- .image-item {
- margin-left: 10rpx;
- width: 110rpx;
- height: 110rpx;
- flex-shrink: 0;
- image {
- width: 100%;
- height: 100%;
- }
- }
- }
- }
- .main-more {
- display: flex;
- align-items: center;
- .mainm-font {
- margin-right: 10rpx;
- font-size: 26rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #333333;
- }
- .mainm-jt {
- width: 12rpx;
- height: 22rpx;
- }
- }
- }
- .main-num {
- padding: 24rpx 14rpx 20rpx;
- border-bottom: 1px solid #ededed;
- .mainnum-item {
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #333333;
- }
- .red {
- color: #FF4C4C
- }
- .gray {
- color: #666666;
- }
- }
- .main-tip {
- padding: 24rpx 14rpx 20rpx;
- border-bottom: 1px solid #ededed;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #666666;
- line-height: 1.5;
- }
- .bottom {
- padding: 20rpx 0;
- .btn-box {
- display: flex;
- justify-content: flex-end;
- align-items: center;
- }
- .bottom-font {
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #333333;
- .red {
- color: #FF4C4C
- }
- }
- .box2 {
- margin-left: 10rpx;
- width: 144rpx;
- height: 55rpx;
- border: 2px solid #FF2D2D;
- border-radius: 28rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 26rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #FF2D2D;
- }
- }
- }
- </style>
|