From b61230baefb5ea270f6c1d8e0dc4a781f1b93dad Mon Sep 17 00:00:00 2001
From: whycq <913841844@qq.com>
Date: 星期一, 15 四月 2024 10:22:10 +0800
Subject: [PATCH] #
---
pages/phyz/checkLocDetl/locDetl.vue | 22 +++++++
pages.json | 9 +++
pages/phyz/checkLocDetl/checkLocDetl.vue | 91 ++++++++++++++++++++++++++++++
3 files changed, 121 insertions(+), 1 deletions(-)
diff --git a/pages.json b/pages.json
index d334e2a..14f0dad 100644
--- a/pages.json
+++ b/pages.json
@@ -622,6 +622,15 @@
}
}
+ ,{
+ "path" : "pages/phyz/checkLocDetl/locDetl",
+ "style" :
+ {
+ "navigationBarTitleText": "搴撳瓨鏄庣粏",
+ "enablePullDownRefresh": false
+ }
+
+ }
],
"globalStyle": {
"navigationBarTextStyle": "black",
diff --git a/pages/phyz/checkLocDetl/checkLocDetl.vue b/pages/phyz/checkLocDetl/checkLocDetl.vue
index a33c5b2..bd56f44 100644
--- a/pages/phyz/checkLocDetl/checkLocDetl.vue
+++ b/pages/phyz/checkLocDetl/checkLocDetl.vue
@@ -32,6 +32,24 @@
</view>
</view>
+ <!-- 寮圭獥 -->
+ <view>
+ <uni-popup ref="check" type="dialog">
+ <view class="popup">
+ <!-- 鏍囬 -->
+ <view class="title">褰撳墠搴撲綅璐ф灦鐮�</view>
+ <view class="popup-item">
+ <view class="popup-item-left">璐ф灦鐮�:</view>
+ <view class="popup-item-right"><input type="text" v-model="barcode"></view>
+ </view>
+ <view class="btn">
+ <view class="btn-left" @click="checkClose">鍙栨秷</view>
+ <view class="btn-right" @click="checkConfirm()">纭</view>
+ </view>
+ </view>
+ </uni-popup>
+ </view>
+
</view>
</template>
@@ -41,11 +59,13 @@
return {
baseUrl: '',
token: '',
+ barcode: '',
locNo: '123123',
row1: '',
bay1: '',
lev1: '',
- dataList: []
+ dataList: [],
+
}
},
onLoad() {
@@ -117,6 +137,9 @@
}
}
})
+ },
+ goToLocDetl() {
+ this.$refs.check.open()
}
}
@@ -165,4 +188,70 @@
.locSts-X {
background-color: #767676;
}
+
+ .popup {
+ width: 80vw;
+ min-height: 100rpx;
+ background-color: #FFF;
+ border-radius: 25rpx;
+ position: relative;
+ }
+ .title {
+ height: 100rpx;
+ line-height: 100rpx;
+ width: 100%;
+ color: #606266;
+ text-align: center;
+ font-size: 16px;
+ }
+ .popup-item {
+ position: relative;
+ height: 80rpx;
+ line-height: 80rpx;
+ display: flex;
+ align-items: center;
+ font-size: 14px;
+ }
+ .popup-item-left {
+ width: 16vw;
+ padding-right: 20rpx;
+ text-align: right;
+ color: #606266;
+ }
+ .popup-item-right {
+ display: flex;
+ align-items: center;
+ width: 50vw;
+ height: 50rpx;
+ padding: 2px 5px;
+ border: 1px solid #E4E7ED;
+ border-radius: 5rpx;
+ }
+ .popup-item-right input{
+ color: #606266;
+ }
+ .btn {
+ display: flex;
+ height: 90rpx;
+ margin-top: 20rpx;
+ border-top: 1px solid #DCDFE6;
+ justify-content: center;
+ align-items: center;
+ }
+ .btn-left {
+ display: flex;
+ flex: 1;
+ height: 100%;
+ justify-content: center;
+ align-items: center;
+ color: #606266;
+ border-right: 1px solid #DCDFE6;
+ }
+ .btn-right {
+ display: flex;
+ flex: 1;
+ justify-content: center;
+ align-items: center;
+ color: #409EFF;
+ }
</style>
diff --git a/pages/phyz/checkLocDetl/locDetl.vue b/pages/phyz/checkLocDetl/locDetl.vue
new file mode 100644
index 0000000..8183fd0
--- /dev/null
+++ b/pages/phyz/checkLocDetl/locDetl.vue
@@ -0,0 +1,22 @@
+<template>
+ <view>
+
+ </view>
+</template>
+
+<script>
+ export default {
+ data() {
+ return {
+
+ }
+ },
+ methods: {
+
+ }
+ }
+</script>
+
+<style>
+
+</style>
--
Gitblit v1.9.1