|
|
@@ -1,8 +1,14 @@
|
|
|
<template>
|
|
|
<view class="app-content">
|
|
|
<view class="ex-page">
|
|
|
- <!-- <view class="top-bar"><DateSelect class="bar" top="0" @selectDateFn="selectDateFn" /></view> -->
|
|
|
- <view class="top-bar" style="margin-left:100upx;">今天</view>
|
|
|
+ <view class="input-wrap_box">
|
|
|
+ <view>
|
|
|
+ <AppSearchModule placeholder="输入拼音首字母搜索" @input="searchFn"/>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="top-bar">
|
|
|
+ <DateSelect class="bar" top="0" @selectDateFn="selectDateFn" />
|
|
|
+ </view>
|
|
|
<view class="main-view">
|
|
|
<view class="space-view ex-table">
|
|
|
<block>
|
|
|
@@ -64,6 +70,7 @@
|
|
|
</template>
|
|
|
<script>
|
|
|
import AppWrapperEmpty from "@/components/app-wrapper-empty";
|
|
|
+import AppSearchModule from "@/components/module/app-search";
|
|
|
import SelectList from "@/components/plugin/selectList";
|
|
|
import { getStatKdProfile } from "@/api/stat/index";
|
|
|
import { list } from "@/mixins";
|
|
|
@@ -72,7 +79,7 @@ import DateSelect from "@/components/module/dateSelect";
|
|
|
import {mapActions, mapGetters} from "vuex";
|
|
|
import ModalModule from "@/components/plugin/modal";
|
|
|
export default {
|
|
|
- components: { SelectList, AppWrapperEmpty,ShopSelect,DateSelect,ModalModule},
|
|
|
+ components: { SelectList, AppWrapperEmpty,ShopSelect,DateSelect,ModalModule,AppSearchModule},
|
|
|
mixins: [list],
|
|
|
computed: {
|
|
|
...mapGetters(["getDictionariesInfo","getLoginInfo"])
|
|
|
@@ -166,9 +173,9 @@ export default {
|
|
|
.top-bar {
|
|
|
position: absolute;
|
|
|
left: 0;
|
|
|
+ top:130upx;
|
|
|
display: flex;
|
|
|
width: 100%;
|
|
|
- top:20upx;
|
|
|
z-index: 20;
|
|
|
.bar{
|
|
|
width: 50%;
|
|
|
@@ -180,7 +187,7 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
.main-view {
|
|
|
- margin-top: 60upx;
|
|
|
+ margin-top: 90upx;
|
|
|
flex: 1;
|
|
|
background-color: #f9fbfc;
|
|
|
.space-view {
|