chenrui  1 year ago
parent
commit
b7ea5ae7a5
8 changed files with 169 additions and 0 deletions
  1. 6 0
      pages.json
  2. 163 0
      pages/myrecords/index.vue
  3. BIN
      static/bg.png
  4. BIN
      static/search.png
  5. BIN
      static/工作方式.png
  6. BIN
      static/帮助.png
  7. BIN
      static/开关.png
  8. BIN
      static/记录.png

+ 6 - 0
pages.json

@@ -30,6 +30,12 @@
 				"navigationStyle": "custom"
 			}
 		},
+		{
+			"path": "pages/myrecords/index",
+			"style": {
+				"navigationStyle": "custom"
+			}
+		},
 		{
 			"path": "pages/individual/index",
 			"style": {

+ 163 - 0
pages/myrecords/index.vue

@@ -0,0 +1,163 @@
+<template>
+  <view class="app-content">
+    <view class="header"><view class="log" @tap="fall"></view>{{ navname }}<view class="up"></view></view>
+    <view class="content">
+      <view class="list">
+        <p>行李编号</p>
+        <input  class="input"  name="yonghuming"  type="text" value=""  placeholder-style="font-size:.8125rem;color:rgb(197, 197, 197);" placeholder="请输入行李编号" />
+      </view>
+      <view class="list">
+        <p>当前位置</p>
+        <input  class="input"  name="yonghuming"  type="text" value=""  placeholder-style="font-size:.8125rem;color:rgb(197, 197, 197);" placeholder="请输入当前位置" />
+      </view>
+      <view class="list">
+        <p>当前状态</p>
+        <input  class="input"  name="yonghuming"  type="text" value=""  placeholder-style="font-size:.8125rem;color:rgb(197, 197, 197);" placeholder="请输入当前状态" />
+      </view>
+      <view class="list">
+        <p>航班信息</p>
+        <input  class="input"  name="yonghuming"  type="text" value=""  placeholder-style="font-size:.8125rem;color:rgb(197, 197, 197);" placeholder="请输入航班信息" />
+      </view>
+      <view class="list">
+        <p>异常原因</p>
+        <input  class="input"  name="yonghuming"  type="text" value=""  placeholder-style="font-size:.8125rem;color:rgb(197, 197, 197);" placeholder="请输入异常原因" />
+      </view>
+      <view class="picturearea">
+        <view class="name">图片上传</view>
+        <view class="content_list">
+          <view class="mg">
+            <view class="mg_lg"></view>
+          </view>
+          <view class="mg">
+            <view class="mg_lg"></view>
+          </view>
+          <view class="mg">
+            <view class="mg_lg"></view>
+          </view>
+        </view>
+      </view>
+    </view>
+  </view>
+</template>
+<script>
+	import Nav from '../../components/header/nav.vue'
+	export default {
+		data() {
+			return {
+				isShow: true,
+				dataheight: '20.75rem',
+				scrollTop: 0,
+				old: {
+					scrollTop: 0
+				},
+				input: '',
+				main: null,
+				poll: null,
+				filter:null,
+				pusher:null,
+				intentServer:null,
+				arr: [],
+				navname: '我的记录',
+			}
+		},
+		created(option) {
+		},
+		onLoad(){
+		},
+		onUnload() {
+		},
+		onShow() {
+		},
+		mounted() {
+		},
+		components: {
+			Nav
+		},
+		methods: {
+			fall () {
+				uni.redirectTo({
+					url: "/pages/sorting/index"
+				})
+			},
+		},
+	}
+</script>
+
+<style lang="scss" scoped>
+.app-content{
+  >.header{
+    width: 100%;
+    height: 4.375rem;
+    display: flex;
+    justify-content: center;
+    align-items: center;
+    // background: rgba(49,85,99,1);
+    color: rgb(16, 17, 22);
+    font-family: Noto Sans SC;
+    font-size: 1rem;
+    position: relative;
+    >.log{
+      width: .375rem;
+      height: .75rem;
+      font-size: .75rem;
+      position: absolute;
+      left: 1.5rem;
+      background: url('../../static/ico@1x.png') no-repeat;
+      background-size: 100% 100%;
+    }
+    >.up{
+      position: absolute;
+      right: 1.5rem;
+      color: rgb(37, 121, 160);
+      font-family: Noto Sans SC;
+      font-size: .875rem;
+      font-weight: 500;
+    }
+  }
+  >.content{
+    margin-left: 1.5rem;
+    >.list{
+      height: 3.375rem;
+      display: flex;
+      align-items: center;
+      border-bottom: 1px solid rgb(238, 238, 238);
+      >p{
+        color: rgb(0, 0, 0);
+        font-family: Noto Sans SC;
+        font-size: .8125rem;
+        font-weight: 500;
+        margin-right: 2.1875rem;
+      }
+    }
+    >.picturearea{
+      margin-top: 1.875rem;
+      >.name{
+        color: rgb(0, 0, 0);
+        font-family: Noto Sans SC;
+        font-size: .8125rem;
+        font-weight: 500;
+      }
+      >.content_list{
+        width: 100%;
+        display: flex;
+        margin-top: 1.25rem;
+        >.mg{
+          width: 5.5rem;
+          height: 5.5rem;
+          background: rgb(197, 207, 211);
+          display: flex;
+          align-items: center;
+          justify-content: center;
+          margin-right: .625rem;
+          >.mg_lg{
+            width: 1.75rem;
+            height: 1.75rem;
+            background: url('../../static/shi.png') no-repeat;
+            background-size: 100% 100%;
+          }
+        }
+      }
+    }
+  }
+}
+</style>

BIN
static/bg.png


BIN
static/search.png


BIN
static/工作方式.png


BIN
static/帮助.png


BIN
static/开关.png


BIN
static/记录.png