Commit 80efe44c authored by 沈良进's avatar 沈良进

add .

parent c386dda9
This diff is collapsed.
src/assets/img/about/team-bg.png

354 KB | W: | H:

src/assets/img/about/team-bg.png

353 KB | W: | H:

src/assets/img/about/team-bg.png
src/assets/img/about/team-bg.png
src/assets/img/about/team-bg.png
src/assets/img/about/team-bg.png
  • 2-up
  • Swipe
  • Onion skin
...@@ -2,7 +2,7 @@ import Vue from 'vue' ...@@ -2,7 +2,7 @@ import Vue from 'vue'
import axios from 'axios' import axios from 'axios'
import md5 from 'js-md5' import md5 from 'js-md5'
// import {eventBus} from './eventBus' // import {eventBus} from './eventBus'
import VueCoreVideoPlayer from 'vue-core-video-players' // import VueCoreVideoPlayer from 'vue-core-video-players'
import 'viewerjs/dist/viewer.css' import 'viewerjs/dist/viewer.css'
import user from './user' import user from './user'
import message from './message' import message from './message'
...@@ -10,7 +10,7 @@ import product from './product' ...@@ -10,7 +10,7 @@ import product from './product'
import VueViewer from 'v-viewer' import VueViewer from 'v-viewer'
// import VueCoreVideoPlayer from 'vue-core-video-player' // import VueCoreVideoPlayer from 'vue-core-video-player'
Vue.prototype.$EventBus = new Vue() Vue.prototype.$EventBus = new Vue()
Vue.use(VueCoreVideoPlayer) // Vue.use(VueCoreVideoPlayer)
Vue.use(VueViewer) Vue.use(VueViewer)
Vue.prototype.$md5 = md5; Vue.prototype.$md5 = md5;
Vue.prototype.$message = message Vue.prototype.$message = message
......
...@@ -105,6 +105,9 @@ ...@@ -105,6 +105,9 @@
.f22 { .f22 {
font-size: 22px; font-size: 22px;
} }
.f25 {
font-size: 25px;
}
.f26 { .f26 {
font-size: 26px; font-size: 26px;
} }
......
This diff is collapsed.
...@@ -93,27 +93,54 @@ ...@@ -93,27 +93,54 @@
<div class="login-box" :class="$q.platform.is.desktop ? 'login-box-pc': ''"> <div class="login-box" :class="$q.platform.is.desktop ? 'login-box-pc': ''">
<div class="f34 bold">重置密码</div> <div class="f34 bold">重置密码</div>
<div class="login_row"> <div class="login_row">
<div class="form-group"> <q-input
<div class="login_labelName">輸入郵箱</div> filled
<q-input outlined v-model="loginMsg.Mailbox" /> v-model="loginMsg.Mailbox"
<div class="primary q-mt-sm" v-show="tips">邮箱格式有误,请核实</div> class="q-mt-xl"
</div> label="輸入郵箱"
<div> style="ime-mode: disabled"
<q-btn aria-autocomplete="off"
v-if="!isSend" class="q-mb-lg" :rules="[
unelevated (val) =>
color="grey-3" /^[a-zA-Z0-9]+([-_.][A-Za-zd]+)*@([a-zA-Z0-9]+[-.])+[A-Za-zd]{2,5}$/.test(
style="width: 100%; color: #8B8B8B !important; height: 50px; margin-top: 20px" val
filled ) || '請輸入正確的郵箱地址',
label="发送验证码" ]"
@click="sendVerify" >
/> <template
<div v-else class="mt q-mb-sm"> v-slot:after
<q-input outlined v-model="loginMsg.MailCode" type="text" /> >
<div class="q-mt-sm" :class="cutDown ? 'text-grey-6' : ''"> <q-btn
{{ cutDown ? cutDown + "秒后可重新发送" : "重新發送驗證碼" }} unelevated
</div> color="text-white bg-secondary"
</div> :disable="
!/^[a-zA-Z0-9]+([-_.][A-Za-zd]+)*@([a-zA-Z0-9]+[-.])+[A-Za-zd]{2,5}$/.test(
loginMsg.Mailbox
) || cutDown > 0
"
style="height: 46px; margin-top: -10px"
filled
:loading="inSending"
:label="
!isSend
? '发送验证码'
: cutDown > 0
? cutDown + '秒'
: '重新發送'
"
@click="sendVerify"
/>
</template>
</q-input>
<div
class="q-mt-md"
>
<verify-code
:digit="6"
hint="請輸入正確的驗證碼"
ref="verify"
v-model="loginMsg.MailCode"
></verify-code>
</div> </div>
<div class="form-group"> <div class="form-group">
<div class="login_labelName flex justify-between items-center"> <div class="login_labelName flex justify-between items-center">
...@@ -161,10 +188,11 @@ ...@@ -161,10 +188,11 @@
<script> <script>
import QrcodeVue from "qrcode.vue"; import QrcodeVue from "qrcode.vue";
import verifyCode from "src/components/auth/verifyCode.vue";
export default { export default {
name: "Login", name: "Login",
components: { components: {
QrcodeVue, QrcodeVue,verifyCode
}, },
data() { data() {
return { return {
...@@ -183,6 +211,7 @@ export default { ...@@ -183,6 +211,7 @@ export default {
logo: "", logo: "",
flag: 2, flag: 2,
mylabel: "重置密码", mylabel: "重置密码",
inSending: false,
}; };
}, },
created() {}, created() {},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment