Răsfoiți Sursa

图片上传

huangxw 1 săptămână în urmă
părinte
comite
2512b0c237

+ 3 - 3
src/components/ut-search/ut-search.vue

@@ -3,7 +3,7 @@
     <view class="search-input d-flex a-c" :class="{ 'up-border': border }" :style="{ margin, background: bgColor, height, borderRadius }">
         <u-input v-model="value" ref="searchInputRef" cursor cursorColor="#333" clearable type="text" :focus="focused" border="none" @change="inputSearch" @clear="clear" @confirm="search" confirmType="search" :fontSize="fontSize" :maxlength="maxlength" :placeholder="placeholder">
             <template #suffix>
-                <view @click.stop="search" class="d-flex j-c a-c" style="padding: 0 26rpx">
+                <view @click.stop="search" class="d-flex j-c a-c" style="padding: 0 16rpx">
                     <image class="search_icon" src="/static/images/plant/search_icon.png" mode="widthFix" />
                 </view>
             </template>
@@ -32,7 +32,7 @@ const props = defineProps({
     },
     fontSize: {
         type: String,
-        default: '30rpx',
+        default: '26rpx',
     },
     height: {
         type: String,
@@ -92,7 +92,7 @@ defineExpose({
 .search-input {
     height: 86rpx;
     background-color: #fff;
-    padding-left: 30rpx;
+    padding-left: 20rpx;
 }
 
 .search_icon {

+ 23 - 19
src/pages/plant/base/index.vue

@@ -56,29 +56,33 @@
                     </view>
                 </view>
                 <view class="b-radius pt-0 bg-#f7f7f7" style="border: 1rpx solid #fff; border-bottom-color: transparent; margin-top: -40rpx">
-                    <up-sticky :offset-top="stickyTop">
-                        <view class="d-flex a-c pd4-16-24-16-24 p-rtv">
-                            <view class="c-333 f-s-32 f-w-5 z-index-1">基地与地块管理</view>
-                            <image class="w-230" src="/static/images/plant/BasePlotManagement.png" mode="widthFix" style="position: absolute; top: 44rpx; left: 24rpx; z-index: 0" />
-                            <view class="flex1"></view>
-                            <view @click="$u.route({ url: '/plant/base/gap-base-info/index' })" class="c-primary f-s-22 z-index-1">GAP基地获评信息管理{{ '>' }}</view>
-                            <image src="/static/images/plant/basePlotBG.png" class="w-100%" mode="widthFix" style="position: absolute; top: 0; left: 0; z-index: -1"></image>
-                        </view>
-                        <view class="d-flex a-c pd4-20-24-20-24 bg-#f7f7f7">
-                            <view class="min-w-170 flex1">
-                                <ut-action-sheet v-model="form.queryType" :tabs="[{ label: '全部', value: '' }]" @change="onRefresh" title="选择原料类型">
-                                    <view class="d-flex search-select-item a-c">
-                                        <view class="flex1 ov-hd f-s-28 c-333 text-center f-w-5 w-s-no">{{ '全部' }} </view>
-                                        <up-icon size="24rpx" color="#333" name="arrow-down-fill" class="mr-5"></up-icon>
-                                    </view>
-                                </ut-action-sheet>
+                    <up-sticky :offset-top="stickyTop" zIndex="10">
+                        <view class="pd-24 p-rtv bg-#f7f7f7">
+                            <image src="/static/images/plant/basePlotBG.png" class="w-100%" mode="widthFix" style="position: absolute; top: 0; left: 0;"></image>
+                            <view class="d-flex a-c mb-26 p-rtv">
+                                <view class="p-rtv d-flex flex-cln">
+                                    <view class="c-333 f-s-32 f-w-5 z-index-1">基地与地块管理</view>
+                                    <image class="w-230 h-11" style="margin-top: -10rpx" src="/static/images/plant/BasePlotManagement.png" mode="widthFix" />
+                                </view>
+                                <view class="flex1"></view>
+                                <view @click="$u.route({ url: '/plant/base/gap-base-info/index' })" class="c-primary f-s-22 z-index-1">GAP基地获评信息管理{{ '>' }}</view>
                             </view>
-                            <view class="h-86 pl-24 w-100%">
-                                <ut-search ref="searchRef" v-model="form.keyword" @search="changeSeach" margin="0" :border="false" placeholder="搜基地名称、编号、地址、负责人" bgColor="#fff" height="86rpx" borderRadius="10rpx"></ut-search>
+                            <view class="d-flex a-c p-rtv">
+                                <view class="w-220">
+                                    <ut-action-sheet v-model="form.queryType" :tabs="[{ label: '全部', value: '' }]" @change="onRefresh" title="选择原料类型">
+                                        <view class="d-flex search-select-item a-c">
+                                            <view class="flex1 ov-hd f-s-28 c-333 text-center f-w-5 w-s-no">{{ '全部' }} </view>
+                                            <up-icon size="24rpx" color="#333" name="arrow-down-fill" class="mr-5"></up-icon>
+                                        </view>
+                                    </ut-action-sheet>
+                                </view>
+                                <view class="pl-16 flex1 ov-hd">
+                                    <ut-search ref="searchRef" v-model="form.keyword" @search="changeSeach" margin="0" :border="false" placeholder="搜基地名称、编号、地址、负责人" bgColor="#fff" height="86rpx" borderRadius="10rpx"></ut-search>
+                                </view>
                             </view>
                         </view>
                     </up-sticky>
-                    <view class="pd4-16-24-16-24">
+                    <view class="pd4-10-24-24-24">
                         <template>
                             <up-swipe-action>
                                 <up-swipe-action-item v-for="(item, index) in list" :key="index" :name="item?.id" :options="optionsActionTemp" @click="clickTempSwipe" class="mb-20 b-radius">

+ 1 - 1
src/plant/storage/storage-room/list/index.vue

@@ -56,7 +56,7 @@
         </template>
     </z-paging>
     <ut-suspension @click="$u.route({ url: '/plant/storage/storage-room/edit/index' })">
-        <image src="/static/images/plant/addBase.png" mode="widthFix" class="w-120 h-120"></image>
+        <image src="@/static/images/common/btn_add_logo.png" mode="widthFix" class="w-120 h-120"></image>
     </ut-suspension>
     <form-shelve v-if="showShelve" v-model:show="showShelve" v-model="rowShelve" :title="shelveTitle" @submit="submitFormShelveAdd" />
 </template>

BIN
src/static/images/common/btn_add_logo.png


BIN
src/static/images/plant/port/个体标识-从种源库快速添加.png


BIN
src/static/images/plant/port/个体标识-手动输入添加.png


BIN
src/static/images/plant/port/个体标识-扫一扫添加.png


BIN
src/static/images/plant/port/任务-养殖.png


BIN
src/static/images/plant/port/任务-种植.png


BIN
src/static/images/plant/port/任务-种畜繁育.png


BIN
src/static/images/plant/port/任务-种苗繁育.png


BIN
src/static/images/plant/port/任务类型-养殖.png


BIN
src/static/images/plant/port/任务类型-种植.png


BIN
src/static/images/plant/port/任务类型-种畜繁育.png


BIN
src/static/images/plant/port/任务类型-种苗繁育.png


BIN
src/static/images/plant/port/已结束.png


BIN
src/static/images/plant/port/种源信息.png


BIN
src/static/images/plant/port/采收管理.png


BIN
src/static/images/plant/port/饲养管理.png