|
|
@@ -12,7 +12,7 @@
|
|
|
<view class="row credit_earch center sys-background-fff r-30 p-l16">
|
|
|
<uni-icons type="search" size="18" color="#999"></uni-icons>
|
|
|
<input class="flex m-l10 m-r20 size-28 sys-background-fff" type="text" placeholder="搜索文件名称"
|
|
|
- placeholder-style="font-size:28rpx;color:#999" v-model="value" />
|
|
|
+ placeholder-style="font-size:28rpx;color:#999" v-model="value" @change="startList" />
|
|
|
</view>
|
|
|
</view>
|
|
|
<view style="height: 100rpx;">
|
|
|
@@ -40,7 +40,7 @@
|
|
|
<image class="wh-25" src="/page_subpack/static/img/task-details/close.png" mode="" @click="endAdd(true)">
|
|
|
</image>
|
|
|
</view>
|
|
|
-<!-- <add-file @newMsg="endAdd"></add-file>-->
|
|
|
+ <add-file @newMsg="endAdd"></add-file>
|
|
|
</view>
|
|
|
|
|
|
</uni-popup>
|
|
|
@@ -49,11 +49,12 @@
|
|
|
<script>
|
|
|
import CreditItem from "./components/credit-item.vue";
|
|
|
import tools from "@/service/tools";
|
|
|
-// import AddFile from "@/page_subpack/transition/components/add-file.vue";
|
|
|
+import AddFile from "@/page_subpack/transition/components/add-file.vue";
|
|
|
+import {getTransferList} from "@/api/transfer";
|
|
|
|
|
|
export default {
|
|
|
components: {
|
|
|
- // AddFile,
|
|
|
+ AddFile,
|
|
|
CreditItem,
|
|
|
},
|
|
|
data() {
|
|
|
@@ -125,7 +126,9 @@ export default {
|
|
|
return
|
|
|
}
|
|
|
getTransferList({
|
|
|
- 'status': this.tabId
|
|
|
+ 'status': this.current,
|
|
|
+ 'dateType': this.subCurrent,
|
|
|
+ 'text': this.value,
|
|
|
}).then(res => {
|
|
|
if (res.code === 1) {
|
|
|
this.list.push(...res.data.items)
|
|
|
@@ -179,7 +182,6 @@ export default {
|
|
|
}
|
|
|
|
|
|
.en-button {
|
|
|
- border: none;
|
|
|
color: #fff;
|
|
|
font-size: 30rpx;
|
|
|
border: 1rpx solid #0FB160 !important;
|