From 5f426400b632837d344cd3e22fb4428e26ca08b3 Mon Sep 17 00:00:00 2001 From: WindowBird <13870814+windows-bird@user.noreply.gitee.com> Date: Mon, 24 Nov 2025 13:53:11 +0800 Subject: [PATCH] =?UTF-8?q?v1.0.6=20=E9=BB=98=E8=AE=A4=E6=9C=AA=E5=AE=A1?= =?UTF-8?q?=E6=A0=B8=EF=BC=8C=E4=BB=BB=E5=8A=A1=E7=AE=A1=E7=90=86=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F=E4=BC=98=E5=8C=96=EF=BC=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- manifest.json | 2 +- pages/task/manage/index.vue | 4 ++-- pages/verify/list/index.vue | 2 +- utils/request/index.js | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/manifest.json b/manifest.json index b09117d..5480b24 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "name" : "OfficeSystem", "appid" : "__UNI__53A0BE0", "description" : "", - "versionName" : "1.0.5", + "versionName" : "1.0.6", "versionCode" : "100", "transformPx" : false, /* 5+App特有相关 */ diff --git a/pages/task/manage/index.vue b/pages/task/manage/index.vue index ba6333f..59446d8 100644 --- a/pages/task/manage/index.vue +++ b/pages/task/manage/index.vue @@ -909,11 +909,11 @@ onMounted(() => { display: flex; align-items: center; gap: 16px; - padding: 0px 24px; + padding: 0 24px; background-color: #fff; border-bottom: 1px solid #e4e7ed; position: fixed; - top: 0; + //top: 0; right: 0; left: 0; z-index: 100; diff --git a/pages/verify/list/index.vue b/pages/verify/list/index.vue index 9f7b614..b53baa2 100644 --- a/pages/verify/list/index.vue +++ b/pages/verify/list/index.vue @@ -187,7 +187,7 @@ import { getVerifyList } from '@/api'; import { usePagination } from '@/composables'; import { onReachBottom } from '@dcloudio/uni-app' const bstType = ref(''); -const filterStatus = ref(''); +const filterStatus = ref('3'); const dateRange = ref([]); // [startDate, endDate] 格式: yyyy-MM-dd const showDatePicker = ref(false); const startDate = ref(''); diff --git a/utils/request/index.js b/utils/request/index.js index 365ff70..3ad6848 100644 --- a/utils/request/index.js +++ b/utils/request/index.js @@ -11,7 +11,7 @@ export const Request = () => { uni.$uv.http.setConfig((config) => { /* config 为默认全局配置*/ config.baseURL = 'http://192.168.1.2:4001'; /* 根域名 */ - // config.baseURL = 'https://pm.ccttiot.com/prod-api'; /* 根域名 */ + config.baseURL = 'https://pm.ccttiot.com/prod-api'; /* 根域名 */ return config })