From 617e4ec527a240d2bc030e813c98652c1bc65d06 Mon Sep 17 00:00:00 2001
From: Mr.Zhang <710666463@qq.com>
Date: 星期二, 12 九月 2023 14:53:54 +0800
Subject: [PATCH] 小程序
---
minipro_standard/components/SelectTraMultipleMaterial.vue | 22 ++++++++++++++--------
1 files changed, 14 insertions(+), 8 deletions(-)
diff --git a/minipro_standard/components/SelectTraMultipleMaterial.vue b/minipro_standard/components/SelectTraMultipleMaterial.vue
index bb48450..5446bdd 100644
--- a/minipro_standard/components/SelectTraMultipleMaterial.vue
+++ b/minipro_standard/components/SelectTraMultipleMaterial.vue
@@ -2,8 +2,8 @@
<u-popup :show="show" :round="10" closeable @close="show=false">
<view class="material-content bbox p30 rp">
<view class="tc b f24 c2 mb20">閫夋嫨鐗╂枡</view>
- <v-Search ref="V" @searchInput="searchInput" @submit="submit" :isShow="false" placeholder="鎼滅储鐗╂枡鍚嶇О/缂栫爜">
- </v-Search>
+ <!-- <v-Search ref="V" @searchInput="searchInput" @submit="submit" :isShow="false" placeholder="鎼滅储鐗╂枡鍚嶇О/缂栫爜">
+ </v-Search> -->
<div class="content_total">鍏眥{pages.total}}鏉℃暟鎹�</div>
<view class="scroll-content">
<scroll-view scroll-y="true" refresher-enabled="true" :refresher-triggered="refreshing" @scrolltolower="loadMore"
@@ -71,15 +71,15 @@
</template>
<script>
- import vSearch from '@/components/Search.vue'
+ // import vSearch from '@/components/Search.vue'
import {
choiceStockPageByTransfer
} from '@/util/api/ExWarehouse'
export default {
name: "selectTraMultipleMaterial",
- components: {
- vSearch
- },
+ // components: {
+ // vSearch
+ // },
data() {
return {
show: false,
@@ -100,7 +100,8 @@
methods: {
open(target) {
this.show = true
- this.refreshing = false
+ this.refreshing = false
+ this.isAll = false
this.transferId = target.transferId
this.warehouseId = target.warehouseId
this.list = []
@@ -119,7 +120,7 @@
...this.pages,
model: {
transferId: this.transferId,
- deviceId: this.deviceId
+ warehouseId: this.warehouseId
}
}).then(res => {
let {data} = res
@@ -152,6 +153,11 @@
this.selectIndex.push(index)
} else {
this.selectIndex.splice(i)
+ }
+ if (this.selectIndex.length == this.list.length) {
+ this.isAll = true
+ } else {
+ this.isAll = false
}
},
selectAll() {
--
Gitblit v1.9.3