diff --git a/src/pages/account/login/index.vue b/src/pages/account/login/index.vue
index 6289e65..76fb272 100644
--- a/src/pages/account/login/index.vue
+++ b/src/pages/account/login/index.vue
@@ -4,77 +4,51 @@
-
+
依据国家政策法规,需绑定手机号进行网络实名才可登录使用本平台
-
+
-
- {{ phoneBtnText }}
+
+ {{
+ phoneBtnText }}
-
-
+
-
+
该手机号已绑定以下用户信息
- -
- {{ user.schoolName }},{{ user.userName }},{{ user.workNumber }}{{ user.isEnable ? '' : '(已禁用)'}}
+
-
+ {{ user.schoolName }},{{ user.userName }},{{ user.workNumber }}{{ user.isEnable ? '' : '(已禁用)' }}
-
+
@@ -55,7 +56,7 @@ export default {
isZj: location.host === '10.60.32.76', // 浙江万里
isSq: Setting.isSq,
keyword: this.$route.query.keyword || '',
- active: +this.$route.query.active || '',
+ active: +this.$route.query.active || 0,
searchTimer: null,
tabs: [],
products: [],
@@ -78,15 +79,15 @@ export default {
async getTab () {
const { data } = await this.$get(this.api.getSchoolCourseAuthority)
this.tabs = [
+ {
+ classificationId: 0,
+ classificationName: '最近使用',
+ },
{
classificationId: '',
classificationName: '全部',
},
...data,
- {
- classificationId: 0,
- classificationName: '最近使用',
- },
]
this.getList()
},
@@ -99,7 +100,7 @@ export default {
pageSize: 100,
goodsName: this.keyword,
})
- this.curriculumList = page.records
+ this.products = page.records
} else {
const { data } = await this.$get(this.api.schoolCourse, {
authority: this.active,
diff --git a/src/pages/station/product/index.vue b/src/pages/station/product/index.vue
index d7265de..61ac241 100644
--- a/src/pages/station/product/index.vue
+++ b/src/pages/station/product/index.vue
@@ -120,6 +120,7 @@