本章用到......uni-app頁面跳轉uni.navigateTo方法、uni.navigateBack方法。uni-app簡單實現郵箱驗證碼發送點擊后讀秒樣式。登錄賬號、密碼正則表達式驗證等
適合剛入門的小伙伴,大佬就沒必要看了
靜態頁面!靜態頁面!沒有綁定后端數據接口
目錄
一、HBuilderX下載
二、創建uni-app項目
pages.json配置文件
三、登錄頁面
login.vue頁面
login.css文件
四、手機短信驗證頁面
phoneVerify.vue頁面
phoneVerify.css文件
五、找回密碼頁面
findBack.vue頁面
findBack.css文件
六、郵箱找回密碼頁面
mailFandBack.vue頁面
mailFandBack.css文件
七、郵箱發送驗證成功頁面
emailFinish.vue頁面
emailFinish.css文件
一、HBuilderX下載
https://dcloud.io/hbuilderx.html
官網直接下載解壓即可
二、創建uni-app項目
文件-新建-項目
我這里直接選擇默認模板,Vue版本、uniCloud自行選擇即可
創建完成后自動生成文件夾
文件名這里自動生成原本是index,文件名自行定義即可
頁面文件自己新建Vue文件即可
pages.json配置文件
注意??!這個文件后續如果需要新添加新頁面時這個文件里一定要配置參數不然頁面出不來,代碼格式看下面代碼↓↓↓↓↓↓↓↓↓
-
-
-
"pages": [ //pages數組中第一項表示應用啟動頁,參考:https://uniapp.dcloud.io/collocation/pages
-
-
"path": "pages/login/login",
-
-
-
"navigationBarTitleText": "",
-
"navigationBarBackgroundColor": "#FFFFFF"
-
-
-
-
"path": "pages/login/findBack",
-
-
"navigationBarTitleText": "找回密碼"
-
-
-
-
"path": "pages/login/mailFindBack",
-
-
"navigationBarTitleText": "郵箱找回密碼"
-
-
-
-
"path": "pages/login/phoneVerify",
-
-
"navigationBarTitleText": "",
-
"navigationBarBackgroundColor": "#FFFFFF"
-
-
-
-
"path": "pages/login/emailFinish",
-
-
"navigationBarTitleText": ""
-
-
-
-
-
-
-
"navigationBarTitleText": ""
-
-
-
-
-
-
"navigationBarTextStyle": "black",
-
"navigationBarTitleText": "uni-app",
-
"navigationBarBackgroundColor": "#F8F8F8",
-
"backgroundColor": "#F8F8F8"
-
-
-
-
-
-
-
-
類似navigationBarTitleText(導航欄text)、navigationBarBackgroundColor(導航欄背景色)等等屬性可以查看相關資料自行配置即可
pages里設置單頁面參數,每個頁面配置對應path路徑參數
globalStyle里設置全局頁面參數
js、josn、scss文件等等其他配置文件這里就不多說了自行研究吧?。?!因為我也還沒搞清楚到底怎么用哈哈哈
進入正題↓↓↓↓↓↓↓↓↓↓↓↓↓代碼看著有些亂........湊合看慢慢理解吧
代碼里的src圖片鏈接自行修改?。。。。ㄟ€有css里的URL)
三、登錄頁面
先看一下效果圖
login.vue頁面
-
-
-
<view class="flex-col flex-auto group">
-
<text class="self-center text_2" v-if="type==1000">手機號登錄</text>
-
<text class="self-center text_2" v-if="type==2000">賬號登錄</text>
-
-
<view class="" v-if="type==1000">
-
<view class="flex-col justify-start items-start text-wrapper">
-
<input type="text" class="font_1" @input="onInput" placeholder="請輸入手機號" v-model="phoneNumber">
-
-
-
<view style="height: 1px;">
-
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
-
<line x1="0" y1="0" x2="400" y2="0" style="stroke:rgb(0,0,0);stroke-width:0.2" />
-
-
-
-
<view class="flex-col justify-start items-start text-wrapper_2">
-
<input type="text" password="true" class="font_1" @input="onInput" placeholder="請輸入密碼" v-model="phonePassword">
-
-
-
-
<view style="height: 1px;">
-
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
-
<line x1="0" y1="0" x2="400" y2="0" style="stroke:rgb(0,0,0);stroke-width:0.2" />
-
-
-
-
-
<view class="" v-if="type==2000">
-
<view class="flex-col justify-start items-start text-wrapper">
-
<input type="text" class="font_1" @input="onInput" placeholder="請輸入用戶名" v-model="idNumber">
-
-
-
<view style="height: 1px;">
-
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
-
<line x1="0" y1="0" x2="400" y2="0" style="stroke:rgb(0,0,0);stroke-width:0.2" />
-
-
-
<view class="flex-col justify-start items-start text-wrapper_2">
-
<input type="text" password="true" class="font_1" @input="onInput" placeholder="請輸入用戶密碼" v-model="idPassword">
-
-
-
<view style="height: 1px;">
-
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
-
<line x1="0" y1="0" x2="400" y2="0" style="stroke:rgb(0,0,0);stroke-width:0.2" />
-
-
-
-
-
<view class="self-start font_1 text_3" @click="type=2000" v-if="type==1000">用賬號登錄</view>
-
<view class="self-start font_1 text_3" @click="type=1000" v-if="type==2000">用手機號登錄</view>
-
-
<view class="flex-col justify-start items-center button" v-if="btnShow">
-
<button class="font_1 text_4" @click="onSubmit">登 錄</button>
-
-
-
<view class="flex-col justify-start items-center button2" v-else>
-
<button class="font_1 text_66">登 錄</button>
-
-
-
-
<view class="flex-row justify-between group_2" v-if="type==1000">
-
<text class="font_2" @click="onPageJump('/pages/login/phoneVerify')">短信驗證碼登錄</text>
-
<text class="font_2" @click="onPageJump('/pages/login/findBack')">找回密碼</text>
-
-
<view class="flex-row justify-between group_3" v-else>
-
<text class="font_2" @click="onPageJump('/pages/login/findBack')">找回密碼</text>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
this.timeOut && clearTimeout(this.timeOut)
-
this.timeOut = setTimeout(() => {
-
-
if (this.phoneNumber && this.phonePassword) {
-
-
-
-
-
-
if (this.idNumber && this.idPassword) {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
const phoneNumber= /^(0|86|17951)?(13[0-9]|15[012356789]|17[678]|18[0-9]|14[57])[0-9]{8}$/;
-
if(!phoneNumber.test(this.phoneNumber)){
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@import"../../style/css/login.css";
-
一個小tips:
先說一下這個頁面↑↑↑↑↑↑↑↑↑↑↑↑↑↑
svg因為我這里賬號、密碼input輸入框的border邊框要設置成小數1px以下0.1px、0.2px、0.3px等等,所以這里用了svg的畫圖,如果有小伙伴碰到同樣問題可以參考一下,不需要的直接style里直接設置border參數即可
uni.showToast是uni-app彈出框的方法直接用就行,參數么。。自己研究研究就行 (例:icon圖標參數有四種類型none、loading、success、error)
style外部引用css樣式直接用@import相對路徑即可
login.css文件
style樣式最好還是用自己寫的就別直接復制了,我這里用的是平臺自動生成的所以比較亂隨便看看就行了看多了頭疼(僅供參考全局樣式可以直接略過)
-
-
-
-
-
-
-
-
-
-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans',
-
'Droid Sans', 'Helvetica Neue', 'Microsoft Yahei', sans-serif;
-
-webkit-font-smoothing: antialiased;
-
-moz-osx-font-smoothing: grayscale;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
justify-content: flex-start;
-
-
-
-
justify-content: flex-end;
-
-
-
-
-
-
-
-
justify-content: space-between;
-
-
-
-
justify-content: space-around;
-
-
-
-
justify-content: space-evenly;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
font-family: 'PingFang SC';
-
-
-
-
-
-
-
-
-
-
-
-
font-family: 'PingFang SC';
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
background-image: url('。。。。。。。。。。。。。。。。。。。。');
-
background-size: 100% 100%;
-
background-repeat: no-repeat;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
font-family: 'PingFang SC';
-
-
-
-
-
-
-
-
-
background-color: #166bf880;
-
-
-
-
-
-
-
四、手機短信驗證頁面
點擊登錄頁面上的短信驗證碼登錄后跳轉到此頁,跳轉方法會用到uni.navigateTo方法在登錄頁面看代碼自行理解吧↑↑↑↑↑↑↑↑↑↑↑
跳轉、返回的方法參考文檔:
https://www.bookstack.cn/read/uniapp-api/spilt.5.ead34267bd06d88a.md
https://www.bookstack.cn/read/uniapp-api/spilt.5.ead34267bd06d88a.md
注意!!添加新頁面的時候上面的↑↑↑↑↑↑↑↑↑↑↑pages.json配置文件也需要添加對應的頁面配置才行不然頁面出不來
效果圖:
phoneVerify.vue頁面
-
-
-
<view class="flex-col flex-auto group">
-
<text class="self-center text_2">手機號+短信驗證碼登錄</text>
-
<view class="flex-col group_2 space-y-10">
-
<input type="number" class="self-start font_1" @input="onInput" placeholder="請輸入手機號碼" v-model="phoneNumber">
-
-
<view style="height: 1px;">
-
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
-
<line x1="0" y1="0" x2="400" y2="0" style="stroke:rgb(0,0,0);stroke-width:0.2" />
-
-
-
-
<view class="flex-row justify-between group_3">
-
<input type="number" class="self-start font_1 text_4" maxlength="6" @input="onInput" placeholder="請輸入驗證碼" v-model="code">
-
<view class="flex-col justify-start items-center self-center text-wrapper">
-
-
<text v-bind:class="{acquire:isGrey,again:!isGrey}"
-
v-bind:disabled="dis" type="primary"
-
-
<span v-if="show">獲取驗證碼</span>
-
<span v-else>重新發送({{count}}s)</span>
-
-
-
-
-
-
<view style="height: 1px;">
-
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
-
<line x1="0" y1="0" x2="400" y2="0" style="stroke:rgb(0,0,0);stroke-width:0.2" />
-
-
-
-
<view class="self-start font_1 text_5" @click="onPageJump('/pages/login/login')">用密碼登錄</view>
-
<view class="flex-col justify-start items-center button" v-if="btnShow">
-
<button class="font_1 text_6" @click="onSubmit()">登 錄</button>
-
-
-
<view class="flex-col justify-start items-center button2" v-else>
-
<button class="font_1 text_66">登 錄</button>
-
-
<text class="self-center text_7" @click="onPageJump('/pages/login/findBack')">找回密碼</text>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
this.timer = setInterval(() => {
-
if (this.count > 0 && this.count <= TIME_COUNT) {
-
-
-
-
-
-
clearInterval(this.timer);
-
-
-
-
-
-
-
-
this.timeOut && clearTimeout(this.timeOut)
-
this.timeOut = setTimeout(() => {
-
if (this.phoneNumber && this.code) {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
const phoneNumber= /^(0|86|17951)?(13[0-9]|15[012356789]|17[678]|18[0-9]|14[57])[0-9]{8}$/;
-
if(!phoneNumber.test(this.phoneNumber)){
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@import"../../style/css/phoneVerify.css";
-
-
-
-
background-color: #eeeeee;
-
-
-
-
-
-
-
-
-
-
-
background-color: #eeeeee;
-
-
-
-
-
-
-
-
-
-
這個頁面因為是靜態的沒有后端接口只是做的樣式,所以驗證碼讀秒這塊內容刷新頁面時會重置重新開始讀秒這里注意一下就行,如果接后端接口實現的話原理也差不多自己慢慢理解就行
大概就長這樣:
至于左上角這個返回鍵的小鈕鈕是uni-app創建項目時自帶的 pages.json配置文件可以配置關閉 用("navigationStyle":"custom")這個參數就能關閉,單頁面關閉在pages里配置,全部關閉在globalStyle里配置。
大概長這樣:
也可以在Vue頁面的方法里用uni.navigateBack方法自己寫一個返回的方法。uni.navigateBack返回頁面的方法具體怎么用↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓后面的頁面會有用到
phoneVerify.css文件
-
-
-
-
-
-
-
-
-
-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans',
-
'Droid Sans', 'Helvetica Neue', 'Microsoft Yahei', sans-serif;
-
-webkit-font-smoothing: antialiased;
-
-moz-osx-font-smoothing: grayscale;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
justify-content: flex-start;
-
-
-
-
justify-content: flex-end;
-
-
-
-
-
-
-
-
justify-content: space-between;
-
-
-
-
justify-content: space-around;
-
-
-
-
justify-content: space-evenly;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
font-family: 'PingFang SC';
-
-
-
-
-
-
-
.space-y-10 > view:not(:first-child),
-
.space-y-10 > text:not(:first-child),
-
.space-y-10 > image:not(:first-child) {
-
-
-
-
-
font-family: 'PingFang SC';
-
-
-
-
-
-
-
-
-
-
-
-
-
background-color: #eeeeee;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
background-image: url('。。。。。。。。。。。。。。。。。。。。。。');
-
background-size: 100% 100%;
-
background-repeat: no-repeat;
-
-
-
-
-
-
-
-
-
-
-
font-family: 'PingFang SC';
-
-
-
-
-
-
-
-
background-color: #166bf880;
-
-
-
-
-
-
-
五、找回密碼頁面
在登錄頁面點擊找回密碼后跳轉到此頁面
同樣在pages.json文件里配置對應頁面參數↑↑↑↑↑↑↑↑↑
效果圖:
點擊通過手機號跳轉到手機短信驗證頁面 也就是第四步的頁面點擊通過郵箱驗證跳轉到郵箱驗證頁面 也就是第六步的頁面
findBack.vue頁面
-
-
-
<view class="flex-col justify-start flex-auto group_3">
-
<view class="flex-col section">
-
<view class="flex-row justify-between items-center group_4" @click="onPageJump('/pages/login/phoneVerify')">
-
<text class="font_1">通過已綁定手機號,用短信驗證登錄</text>
-
-
-
src="https://codefun-proj-user-res-1256085488.cos.ap-guangzhou.myqcloud.com/637d8bf95a7e3f031010c80e/63e351ec66570000128a304a/16758423632990405565.png"
-
-
-
<view class="flex-row justify-between items-center group_4" @click="onPageJump('/pages/login/mailFindBack')">
-
<text class="font_1">通過已綁定郵箱重設密碼</text>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@import"../../style/css/findBack.css";
-
findBack.css文件
-
-
-
-
-
-
-
-
-
-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans',
-
'Droid Sans', 'Helvetica Neue', 'Microsoft Yahei', sans-serif;
-
-webkit-font-smoothing: antialiased;
-
-moz-osx-font-smoothing: grayscale;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
justify-content: flex-start;
-
-
-
-
justify-content: flex-end;
-
-
-
-
-
-
-
-
justify-content: space-between;
-
-
-
-
justify-content: space-around;
-
-
-
-
justify-content: space-evenly;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
font-family: 'PingFang SC';
-
-
-
-
-
-
-
-
-
-
background-color: #ffffff;
-
-
-
-
border-bottom: solid 1px #979797;
-
-
-
-
-
-
六、郵箱找回密碼頁面
效果圖:
mailFandBack.vue頁面
-
-
-
<view class="flex-col flex-auto group">
-
<text class="self-center text_2">通過郵箱找回密碼</text>
-
<input type="text" class="self-start font_1 text_3" @input="onInput" placeholder="請輸入您綁定的郵箱地址" v-model="email">
-
-
<view style="height: 1px;">
-
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
-
<line x1="0" y1="0" x2="400" y2="0" style="stroke:rgb(0,0,0);stroke-width:0.2" />
-
-
-
-
<view class="flex-col justify-start items-center button" v-if="btnShow">
-
<text class="font_1 text_4" @click="onSubmit()">下一步</text>
-
-
-
<view class="flex-col justify-start items-center button2" v-else>
-
<button class="font_1 text_66">下一步</button>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
this.timeOut && clearTimeout(this.timeOut)
-
this.timeOut = setTimeout(() => {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
const email= /^\w{3,}@\w{2,}\.(com|cn|net|com\.cn)$/;
-
if(!email.test(this.email)){
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
url: '/pages/login/emailFinish'
-
-
-
-
-
-
-
-
-
-
@import"../../style/css/mailFindBack.css";
-
mailFandBack.css文件
-
-
-
-
-
-
-
-
-
-
-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans',
-
'Droid Sans', 'Helvetica Neue', 'Microsoft Yahei', sans-serif;
-
-webkit-font-smoothing: antialiased;
-
-moz-osx-font-smoothing: grayscale;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
justify-content: flex-start;
-
-
-
-
justify-content: flex-end;
-
-
-
-
-
-
-
-
justify-content: space-between;
-
-
-
-
justify-content: space-around;
-
-
-
-
justify-content: space-evenly;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
padding: 25px 40px 127px;
-
-
-
-
-
-
font-family: 'PingFang SC';
-
-
-
-
-
font-family: 'PingFang SC';
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
background-image: url('。。。。。。。。。。。。');
-
background-size: 100% 100%;
-
background-repeat: no-repeat;
-
-
-
-
-
-
-
-
-
-
-
background-color: #166bf880;
-
-
-
-
-
-
-
七、郵箱發送驗證成功頁面
效果圖:
emailFinish.vue頁面
-
-
<view class="flex-col flex-auto group">
-
<view class="flex-col group_2">
-
-
class="self-center image_5"
-
-
-
<text class="self-center text_2">請訪問郵件中給出的網頁鏈接地址,根據頁面提示完成密碼重設。</text>
-
<view class="flex-col justify-start items-center button">
-
<button class="text_3" @click="Back">確定</button>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@import"../../style/css/emailFinish.css";
-
點擊返回上一頁面可以用uni.navigateBack方法
點擊跳轉到指定頁面可以用uni.navigateTo方法(因為都屬于跳轉頁面也可以用這個方法返回上一頁自行理解吧)
大概長這樣:
emailFinish.css文件
-
-
-
-
-
-
-
-
-
-
-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans',
-
'Droid Sans', 'Helvetica Neue', 'Microsoft Yahei', sans-serif;
-
-webkit-font-smoothing: antialiased;
-
-moz-osx-font-smoothing: grayscale;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
justify-content: flex-start;
-
-
-
-
justify-content: flex-end;
-
-
-
-
-
-
-
-
justify-content: space-between;
-
-
-
-
justify-content: space-around;
-
-
-
-
justify-content: space-evenly;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
padding: 25px 40px 127px;
-
-
-
-
-
-
font-family: 'PingFang SC';
-
-
-
-
-
font-family: 'PingFang SC';
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
background-image: url('。。。。。。。。。。。。。。。');
-
background-size: 100% 100%;
-
background-repeat: no-repeat;
-
-
-
-
-
-
-
-
-
-
-
background-color: #166bf880;
-
-
-
-
-
-
-
本章也是自己參考相關資料和各位大佬的文章自行整理僅供參考,希望可以幫助到和我一樣菜雞的小伙伴
參考資料:
https://blog.csdn.net/weixin_40614372/article/details/101537653
uni-app官網:
https://uniapp.dcloud.net.cn/component/
登錄頁面完成后我用的是Strophe.js對接Openfire的接口,然后把Strophe.js的用法加到↑本文的登錄頁里使用
藍藍設計建立了UI設計分享群,每天會分享國內外的一些優秀設計,如果有興趣的話,可以進入一起成長學習,請加微信ban_lanlan,報下信息,藍小助會請您入群。歡迎您加入噢~~
希望得到建議咨詢、商務合作,也請與我們聯系01063334945。
分享此文一切功德,皆悉回向給文章原作者及眾讀者. 免責聲明:藍藍設計尊重原作者,文章的版權歸原作者。如涉及版權問題,請及時與我們取得聯系,我們立即更正或刪除。
藍藍設計( www.syprn.cn )是一家專注而深入的界面設計公司,為期望卓越的國內外企業提供卓越的UI界面設計、BS界面設計 、 cs界面設計 、 ipad界面設計 、 包裝設計 、 圖標定制 、 用戶體驗 、交互設計、 網站建設 、平面設計服務、UI設計公司、界面設計公司、UI設計服務公司、數據可視化設計公司、UI交互設計公司、高端網站設計公司、UI咨詢、用戶體驗公司、軟件界面設計公司。