diff --git a/pages.json b/pages.json
index f82aef0..16052cf 100644
--- a/pages.json
+++ b/pages.json
@@ -1,7 +1,7 @@
{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
- "path": "pages/home",
+ "path": "pages/login/index",
"style": {
"navigationStyle": "custom"
}
diff --git a/pages/login/index.vue b/pages/login/index.vue
index 79af009..e8a18c7 100644
--- a/pages/login/index.vue
+++ b/pages/login/index.vue
@@ -42,7 +42,10 @@
- 数据集成系统服务商:百链数据科技(深圳)有限公司
+ 国家文化专网网络客户端由深圳文化产权交易所向百链数据科技(深圳)有限公司定制
+ 文化专网网络运营商:百链数据科技(深圳)有限公司定制
+ 技术支持:百链数据科技(深圳)有限公司
+ 中国人民共和国增值电信业务经营许可证编号:B1.B2-20211922
@@ -116,15 +119,14 @@ import store from '@/store'
const app = this
app.isLoading = true
store.dispatch('Login', {
- smsCode: app.code,
- mobile: app.newPhone
- // isParty: false,
- // partyData: ""
+ smsCode: '6459',
+ mobile: app.mobile
})
.then(result => {
// 显示登录成功
app.$toast(result.message)
// 到设备选择
+ this.$route("pages/verfiy/choosedev")
// 相应全局事件订阅: 刷新上级页面数据
// uni.$emit('syncRefresh', true)
@@ -146,6 +148,7 @@ import store from '@/store'
.login{
position: relative;
min-height: 100vh;
+ height: 100%;
}
.titzone{
padding: 3.2rem;
@@ -169,7 +172,7 @@ import store from '@/store'
height: 126rpx;
&--input {
- padding-left: 12rpx;
+ padding-left: 22rpx;
font-size: 28rpx;
border-bottom: 1rpx solid #f3f1f2;
letter-spacing: 1rpx;
@@ -239,6 +242,7 @@ import store from '@/store'
.imagezone{
display: flex;
+ // flex-direction: row;
line-height: 72rpx;
padding: 10rpx;
@@ -249,9 +253,28 @@ import store from '@/store'
.txtzone{
margin-top: 12rpx;
- font-size: 26rpx;
+ font-size: 22rpx;
color: #999;
- padding-left: 32rpx;
+ line-height: 1.4;
+ display: flex;
+ flex-direction: column;
+ width: 98%;
+ padding-bottom: 12rpx;
+
+ .txtit{
+ font-size: 22rpx;
+ font-weight: 600;
+ color: #034373;
+ }
+ .txbk{
+ margin-top: 10rpx;
+ padding-right: 12%;
+ color: #034373;
+ font-size: 20rpx;
+ }
+ .txck{
+ color: #999;
+ }
}
}