-
![]()
+
{{ row.member.nickname || '' }}
diff --git a/admin/src/views/setting/weapp.vue b/admin/src/views/setting/weapp.vue
index ff282e7dc..1ac5c6c5d 100644
--- a/admin/src/views/setting/weapp.vue
+++ b/admin/src/views/setting/weapp.vue
@@ -23,7 +23,7 @@
-
+
@@ -82,18 +82,8 @@ const weappTableData = reactive({
last_time:''
}
})
-const templateList = ref([])
-const date_type = ref([])
-const week_list = ref([])
const searchFormRef = ref
()
-const setTypeList = async () => {
- templateList.value = await (await getCronTemplate()).data
- date_type.value = await (await getCronDateType()).data
- week_list.value = await (await getWeek()).data
-}
-setTypeList()
-
/**
* 获取任务列表
*/
diff --git a/niucloud/app/common.php b/niucloud/app/common.php
index 54d44d0e9..61dc7e0c5 100644
--- a/niucloud/app/common.php
+++ b/niucloud/app/common.php
@@ -370,11 +370,7 @@ function filter($string)
*/
function create_no(string $prefix = '', string $tag = '')
{
- $data_center_id = 1;
- $machine_id = 2;
- $snowflake = new Snowflake($data_center_id, $machine_id);
- $id = $snowflake->generateId();
- return $prefix.date('YmdHi').$tag.$id;
+ return $prefix.date('YmdHis').$tag;
}
/**