v1.0.6 默认未审核,任务管理样式优化,

This commit is contained in:
WindowBird 2025-11-24 13:53:11 +08:00
parent 5b40bbc1de
commit 5f426400b6
4 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@
"name" : "OfficeSystem", "name" : "OfficeSystem",
"appid" : "__UNI__53A0BE0", "appid" : "__UNI__53A0BE0",
"description" : "", "description" : "",
"versionName" : "1.0.5", "versionName" : "1.0.6",
"versionCode" : "100", "versionCode" : "100",
"transformPx" : false, "transformPx" : false,
/* 5+App */ /* 5+App */

View File

@ -909,11 +909,11 @@ onMounted(() => {
display: flex; display: flex;
align-items: center; align-items: center;
gap: 16px; gap: 16px;
padding: 0px 24px; padding: 0 24px;
background-color: #fff; background-color: #fff;
border-bottom: 1px solid #e4e7ed; border-bottom: 1px solid #e4e7ed;
position: fixed; position: fixed;
top: 0; //top: 0;
right: 0; right: 0;
left: 0; left: 0;
z-index: 100; z-index: 100;

View File

@ -187,7 +187,7 @@ import { getVerifyList } from '@/api';
import { usePagination } from '@/composables'; import { usePagination } from '@/composables';
import { onReachBottom } from '@dcloudio/uni-app' import { onReachBottom } from '@dcloudio/uni-app'
const bstType = ref(''); const bstType = ref('');
const filterStatus = ref(''); const filterStatus = ref('3');
const dateRange = ref([]); // [startDate, endDate] : yyyy-MM-dd const dateRange = ref([]); // [startDate, endDate] : yyyy-MM-dd
const showDatePicker = ref(false); const showDatePicker = ref(false);
const startDate = ref(''); const startDate = ref('');

View File

@ -11,7 +11,7 @@ export const Request = () => {
uni.$uv.http.setConfig((config) => { uni.$uv.http.setConfig((config) => {
/* config 为默认全局配置*/ /* config 为默认全局配置*/
config.baseURL = 'http://192.168.1.2:4001'; /* 根域名 */ 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 return config
}) })