Commit 3cf81339 authored by spc's avatar spc

fixed feeding

parent 7534ac92
......@@ -1309,7 +1309,8 @@ async function completeRecord() {
// 显示成功提示
uni.showToast({
title: currentRecordId.value ? '修改成功' : '记录成功',
icon: 'success'
icon: 'none',
duration: 1500
})
} catch (error) {
......@@ -2497,6 +2498,11 @@ function loadDefaultFoodsData() {
gap: 15rpx;
cursor: pointer;
transition: opacity 0.3s ease;
/* 移除点击高亮效果 */
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
&:active {
opacity: 0.7;
......@@ -2540,6 +2546,11 @@ function loadDefaultFoodsData() {
display: flex;
align-items: center;
cursor: pointer;
/* 移除点击高亮效果 */
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
}
.time-value {
......@@ -2568,6 +2579,11 @@ function loadDefaultFoodsData() {
justify-content: flex-end;
padding: 0rpx 30rpx 20rpx 30rpx;
background: #FFF8F1;
/* 移除点击高亮效果 */
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
.records-link {
font-size: 28rpx;
......@@ -2604,6 +2620,11 @@ function loadDefaultFoodsData() {
border-radius: 12rpx;
background: transparent;
transition: all 0.3s ease;
/* 移除点击高亮效果 */
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
.icon-bg {
width: 228rpx;
......@@ -2741,6 +2762,11 @@ function loadDefaultFoodsData() {
height: 180rpx;
margin-top: -45rpx;
pointer-events: auto;
/* 移除点击高亮效果 */
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
&.disabled {
pointer-events: none;
......@@ -3375,6 +3401,11 @@ function loadDefaultFoodsData() {
z-index: 2;
cursor: pointer;
transition: all 0.3s ease;
/* 移除点击高亮效果 */
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
&.disabled {
opacity: 0.6;
......@@ -3459,8 +3490,7 @@ function loadDefaultFoodsData() {
flex-shrink: 0;
}
.info-value {
font-size: 28rpx;
.info-value {font-size: 28rpx;
color: #333;
font-weight: 500;
}
......@@ -3490,6 +3520,11 @@ function loadDefaultFoodsData() {
font-size: 28rpx;
cursor: pointer;
transition: all 0.3s ease;
/* 移除点击高亮效果 */
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
}
.re-recognize-btn {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment