From 72b69b0dd7c5cb2b09c0fd5a12c6f119196231bd Mon Sep 17 00:00:00 2001
From: xuxueyang <xuxy@fengyuntec.com>
Date: 星期一, 26 八月 2024 15:34:17 +0800
Subject: [PATCH] update 质检配送单修改
---
pages/home/components/home-search.vue | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/pages/home/components/home-search.vue b/pages/home/components/home-search.vue
index a0373a6..5194327 100644
--- a/pages/home/components/home-search.vue
+++ b/pages/home/components/home-search.vue
@@ -1,8 +1,8 @@
<template>
<view class="p15 bg-white">
<view class="search-container m-t-12 flex">
- <view class="flex m-r-20">
- <view class="m-r-10" style="line-height: 80rpx;" @click="changeType">
+ <view class="flex m-r-20" @click="changeType">
+ <view class="m-r-10" style="line-height: 80rpx;" >
{{type=='flower'?'按鲜花':'按店铺'}}
</view>
<u-icon name="arrow-down"></u-icon>
@@ -100,10 +100,10 @@
if (this.history_supplier.indexOf(name) >= 0) {
} else {
- this..history_supplier.unshift(name)
+ this.history_supplier.unshift(name)
}
- if (this..history_supplier.length >= 10) {
- this..history_supplier.splice(this..history_supplier.length - 1, 1)
+ if (this.history_supplier.length >= 10) {
+ this.history_supplier.splice(this.history_supplier.length - 1, 1)
}
}
uni.navigateTo({
--
Gitblit v1.9.3