diff --git a/public/assets/wechat/myresource.html b/public/assets/wechat/myresource.html
index 0782aeb3b..c89f39684 100644
--- a/public/assets/wechat/myresource.html
+++ b/public/assets/wechat/myresource.html
@@ -18,7 +18,7 @@
- 暂无课件,
+
暂无课件,
请登录Trustie网站,在PC浏览器中上传课件。
@@ -28,7 +28,7 @@
-
暂无作业,
+
暂无作业,
请登录Trustie网站,在PC浏览器中创建作业。
@@ -38,7 +38,7 @@
-
暂无测验,
+
暂无测验,
请登录Trustie网站,在PC浏览器中创建测验。
diff --git a/public/javascripts/wechat/controllers/myresource.js b/public/javascripts/wechat/controllers/myresource.js
index 802982266..fb564cde8 100644
--- a/public/javascripts/wechat/controllers/myresource.js
+++ b/public/javascripts/wechat/controllers/myresource.js
@@ -6,6 +6,10 @@ app.controller('MyResourceController', ['$scope', '$http', 'auth', 'config', '$l
vm.homeworks = [];
vm.exercise = [];
+ vm.resources_tag = false;
+ vm.homeworks_tag = false;
+ vm.exercises_tag = false;
+
vm.page = rms.get('page') || 0;
vm.resources = rms.get("resources") || [];
vm.has_more = rms.get("has_more");
@@ -32,6 +36,7 @@ app.controller('MyResourceController', ['$scope', '$http', 'auth', 'config', '$l
url: apiUrl+ "resources",
data: {token: auth.token(), page: page}
}).then(function successCallback(response) {
+ vm.resources_tag = true
if(response.data.page >0) {
vm.resources = vm.resources.concat(response.data.data);
} else {
@@ -56,6 +61,7 @@ app.controller('MyResourceController', ['$scope', '$http', 'auth', 'config', '$l
url: apiUrl+ "resources/homeworks",
data: {token: auth.token(), page: page}
}).then(function successCallback(response) {
+ vm.homeworks_tag = true
if(response.data.page >0) {
vm.homeworks = vm.homeworks.concat(response.data.data);
} else {
@@ -79,6 +85,7 @@ app.controller('MyResourceController', ['$scope', '$http', 'auth', 'config', '$l
url: apiUrl+ "resources/exercises",
data: {token: auth.token(), page: page}
}).then(function successCallback(response) {
+ vm.exercises_tag = true;
if(response.data.page >0) {
vm.exercise = vm.exercise.concat(response.data.data);
} else {