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 })