|
|
@@ -1,24 +1,25 @@
|
|
|
<template>
|
|
|
<view class="mainBox">
|
|
|
-
|
|
|
-
|
|
|
+ <uni-nav-bar fixed="true" statusBar="true" left-icon="back"
|
|
|
+ :title="pageName=='myList'?'我的质检工单':pageName=='myInspectionProjectTask'?'我的质检任务单':pageName=='myInspectionProjectEntrusted'?'我的质检受托单':'质检工单'"
|
|
|
+ @clickLeft="back">
|
|
|
+ </uni-nav-bar>
|
|
|
+
|
|
|
+ <view class="top-wrapper">
|
|
|
+
|
|
|
+ <uni-section>
|
|
|
+ <uni-easyinput prefixIcon="search" style="width: 460rpx" v-model="keyWord" placeholder="名称、批次号">
|
|
|
+ </uni-easyinput>
|
|
|
+ </uni-section>
|
|
|
+ <button class="search_btn" @click="doSearch">搜索</button>
|
|
|
+ </view>
|
|
|
+ <div style="height:100rpx;width: 475rpx;"></div>
|
|
|
<view class="wrapper">
|
|
|
|
|
|
|
|
|
<u-list @scrolltolower="scrolltolower" class="listContent">
|
|
|
- <uni-nav-bar fixed="true" statusBar="true" left-icon="back"
|
|
|
- :title="pageName=='myList'?'我的质检工单':pageName=='myInspectionProjectTask'?'我的质检任务单':pageName=='myInspectionProjectEntrusted'?'我的质检受托单':'质检工单'"
|
|
|
- @clickLeft="back">
|
|
|
- </uni-nav-bar>
|
|
|
- <view class="top-wrapper">
|
|
|
-
|
|
|
- <uni-section>
|
|
|
- <uni-easyinput prefixIcon="search" style="width: 460rpx" v-model="keyWord" placeholder="名称、批次号">
|
|
|
- </uni-easyinput>
|
|
|
- </uni-section>
|
|
|
- <button class="search_btn" @click="doSearch">搜索</button>
|
|
|
- </view>
|
|
|
- <div style="height:100rpx;width: 475rpx;"></div>
|
|
|
+
|
|
|
+
|
|
|
<view v-for="(item, index) in tableList" :key="index+item.id" style="position: relative;">
|
|
|
<view class="item">
|
|
|
<view class="herder_item">
|
|
|
@@ -87,9 +88,9 @@
|
|
|
},
|
|
|
created() {
|
|
|
this.requestDict('质检计划类型')
|
|
|
-
|
|
|
+
|
|
|
},
|
|
|
-
|
|
|
+
|
|
|
methods: {
|
|
|
successInit() {
|
|
|
uni.showLoading({
|
|
|
@@ -194,13 +195,13 @@
|
|
|
padding: 16rpx 32rpx;
|
|
|
align-items: center;
|
|
|
// gap: 16rpx;
|
|
|
- position: fixed;
|
|
|
+ position: absolute;
|
|
|
z-index: 999;
|
|
|
- top: 88rpx;
|
|
|
- // #ifdef APP-PLUS
|
|
|
- top: 140rpx;
|
|
|
+ // top: 44px;
|
|
|
+ // // #ifdef APP-PLUS
|
|
|
+ // top: 140rpx;
|
|
|
|
|
|
- // #endif
|
|
|
+ // // #endif
|
|
|
/deep/.uni-section {
|
|
|
margin-top: 0px;
|
|
|
}
|