You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
261 lines
5.6 KiB
261 lines
5.6 KiB
<template>
|
|
<view class="index-bg">
|
|
<view class="index-content">
|
|
<view class="btn-group">
|
|
<button class="main-btn" @click="scanInventory">扫码盘点</button>
|
|
<button class="main-btn outline" @click="scanView">扫码查看</button>
|
|
</view>
|
|
<view class="task-section">
|
|
<view class="task-title">盘点任务列表</view>
|
|
<view class="task-list">
|
|
<view class="task-item" v-for="(item, idx) in taskList" :key="idx" @click="goTaskDetail(item)">
|
|
<view class="task-info">
|
|
<text class="task-name">{{item.title}}</text>
|
|
<text class="task-time">{{item.time}}</text>
|
|
</view>
|
|
<text class="task-status" :class="item.status">{{item.statusText}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
currentDate: '',
|
|
taskList: [
|
|
{
|
|
title: '仓库A盘点',
|
|
time: '2024-06-01 10:00',
|
|
status: 'pending',
|
|
statusText: '待完成'
|
|
},
|
|
{
|
|
title: '仓库B盘点',
|
|
time: '2024-05-28 14:30',
|
|
status: 'completed',
|
|
statusText: '已完成'
|
|
},
|
|
{
|
|
title: '仓库C盘点',
|
|
time: '2024-05-25 09:15',
|
|
status: 'in-progress',
|
|
statusText: '进行中'
|
|
}
|
|
]
|
|
}
|
|
},
|
|
onLoad() {
|
|
this.updateDate()
|
|
},
|
|
methods: {
|
|
updateDate() {
|
|
const now = new Date()
|
|
const year = now.getFullYear()
|
|
const month = String(now.getMonth() + 1).padStart(2, '0')
|
|
const day = String(now.getDate()).padStart(2, '0')
|
|
this.currentDate = `${year}-${month}-${day}`
|
|
},
|
|
scanInventory() {
|
|
uni.scanCode({
|
|
success: (res) => {
|
|
console.log("url:", res.result);
|
|
let url = res.result;
|
|
let id = '';
|
|
// 用正则提取 id=xxx
|
|
const match = url.match(/[?&]id=([^&]+)/);
|
|
if (match) {
|
|
id = match[1];
|
|
}
|
|
console.log("id:", id);
|
|
if (!id) {
|
|
uni.showToast({ title: '二维码无效', icon: 'none' });
|
|
return;
|
|
}
|
|
uni.navigateTo({
|
|
url: `/pages/inventory/inventory?code=${encodeURIComponent(id)}`
|
|
});
|
|
},
|
|
fail: () => {
|
|
uni.showToast({ title: '扫码失败', icon: 'none' });
|
|
}
|
|
});
|
|
},
|
|
scanView() {
|
|
uni.scanCode({
|
|
success: (res) => {
|
|
let url = res.result;
|
|
let id = '';
|
|
const match = url.match(/[?&]id=([^&]+)/);
|
|
if (match) {
|
|
id = match[1];
|
|
}
|
|
if (!id) {
|
|
uni.showToast({ title: '二维码无效', icon: 'none' });
|
|
return;
|
|
}
|
|
uni.navigateTo({
|
|
url: `/pages/inventory/inventory?code=${encodeURIComponent(id)}&view=1`
|
|
});
|
|
},
|
|
fail: () => {
|
|
uni.showToast({ title: '扫码失败', icon: 'none' });
|
|
}
|
|
});
|
|
},
|
|
goTaskDetail(item) {
|
|
uni.navigateTo({
|
|
url: `/pages/task-detail/task-detail?title=${encodeURIComponent(item.title)}&time=${encodeURIComponent(item.time)}&status=${item.status}&statusText=${encodeURIComponent(item.statusText)}`
|
|
});
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.index-bg {
|
|
min-height: 100vh;
|
|
background: linear-gradient(180deg, #eaf1fb 0%, #f7fafd 100%);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.index-content {
|
|
width: 100%;
|
|
max-width: 600px;
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 4vw 0 6vw 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.btn-group {
|
|
width: 90%;
|
|
max-width: 500px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 0 auto 48rpx auto;
|
|
}
|
|
|
|
.main-btn {
|
|
height: 110rpx;
|
|
font-size: 38rpx;
|
|
font-weight: 800;
|
|
border-radius: 28rpx;
|
|
background: linear-gradient(90deg, #409eff 0%, #3b7cff 100%);
|
|
color: #fff;
|
|
box-shadow: 0 8px 24px rgba(64,158,255,0.15);
|
|
letter-spacing: 10rpx;
|
|
margin: 0;
|
|
border: none;
|
|
outline: none;
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: background 0.2s, box-shadow 0.2s;
|
|
margin-bottom: 36rpx;
|
|
}
|
|
|
|
.main-btn:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.main-btn:active {
|
|
background: linear-gradient(90deg, #337ecc 0%, #2a5db0 100%);
|
|
box-shadow: 0 4px 12px rgba(64,158,255,0.10);
|
|
}
|
|
|
|
.main-btn.outline {
|
|
background: #fff;
|
|
color: #409eff;
|
|
border: 3px solid #409eff;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.main-btn.outline:active {
|
|
background: #f0f7ff;
|
|
}
|
|
|
|
.task-section {
|
|
width: 92%;
|
|
max-width: 520px;
|
|
margin: 0 auto;
|
|
background: #fff;
|
|
border-radius: 22rpx;
|
|
box-shadow: 0 4px 18px rgba(64,158,255,0.07);
|
|
padding: 28rpx 20rpx 18rpx 20rpx;
|
|
}
|
|
|
|
.task-title {
|
|
font-size: 28rpx;
|
|
color: #222;
|
|
font-weight: 700;
|
|
margin-bottom: 18rpx;
|
|
}
|
|
|
|
.task-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 14rpx;
|
|
}
|
|
|
|
.task-item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 14rpx 0;
|
|
border-bottom: 1px solid #f0f0f0;
|
|
}
|
|
|
|
.task-item:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.task-info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.task-name {
|
|
font-size: 24rpx;
|
|
color: #333;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.task-time {
|
|
font-size: 20rpx;
|
|
color: #999;
|
|
margin-top: 2rpx;
|
|
}
|
|
|
|
.task-status {
|
|
font-size: 20rpx;
|
|
padding: 4rpx 14rpx;
|
|
border-radius: 16rpx;
|
|
}
|
|
|
|
.task-status.pending {
|
|
background-color: #fff3e0;
|
|
color: #ff9800;
|
|
}
|
|
|
|
.task-status.completed {
|
|
background-color: #e8f5e9;
|
|
color: #4caf50;
|
|
}
|
|
|
|
.task-status.in-progress {
|
|
background-color: #e8f5e9;
|
|
color: #4caf50;
|
|
}
|
|
</style>
|