diff --git a/src/api/model/ops.js b/src/api/model/ops.js
index acb77651..fa066873 100644
--- a/src/api/model/ops.js
+++ b/src/api/model/ops.js
@@ -73,4 +73,16 @@ export default {
}
}
},
+ server_time: {
+ get: {
+ req: async function(){
+ return await http.get(`${config.API_URL}/develop/server_time/`);
+ }
+ },
+ set: {
+ req: async function(data){
+ return await http.post(`${config.API_URL}/develop/server_time/`, data);
+ }
+ }
+ }
}
diff --git a/src/views/ops/settings/serverTime.vue b/src/views/ops/settings/serverTime.vue
new file mode 100644
index 00000000..81d7d6de
--- /dev/null
+++ b/src/views/ops/settings/serverTime.vue
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+ 刷新
+ 设置为该时间
+
+
+ {{ form.timezone }}
+
+
+
+
+
\ No newline at end of file