Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
ufo-app-web
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
htoooth
6 years ago
Commit
e899f114e5a255a893dfc1649b5bc82d3af846db
1 parent
19ae5131
fix error
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
8 deletions
apps/pages/single/components/layout/header-ufo.vue
apps/pages/single/license/components/upload.vue
apps/pages/single/license/form/form.vue
create-app.js
apps/pages/single/components/layout/header-ufo.vue
View file @
e899f11
<template>
<div class="header">
<div class="back" @touchend="onBack"></div>
<div class="back-wrapper" @touchend="onBack">
<div class="back"></div>
</div>
</div>
</template>
...
...
@@ -19,12 +21,17 @@ export default {
.header {
width: 100%;
height: 45PX;
display: flex;
padding-left: 20PX;
padding-right: 20PX;
align-items: center;
background-color: #fff;
.back-wrapper {
display: flex;
align-items: center;
height: 100%;
width: 60PX;
}
.back {
width: 24PX;
height: 24PX;
...
...
apps/pages/single/license/components/upload.vue
View file @
e899f11
...
...
@@ -94,6 +94,10 @@ export default {
/deep/ .cube-upload-btn-def {
background-color: #eee;
}
/deep/ .cube-upload-file-status {
font-size: 30px !important;
}
}
</style>
...
...
apps/pages/single/license/form/form.vue
View file @
e899f11
...
...
@@ -138,7 +138,8 @@ export default {
}).show();
const result = await this.saveLicense(this.model);
await this.sleep(2000);
await this.sleep(1000);
this.toast && this.toast.hide();
...
...
@@ -171,11 +172,11 @@ export default {
return [
'footer',
{
active: this.
validate2
active: this.
inNotEmpty
}
];
},
validate2
() {
inNotEmpty
() {
return this.model.businessName &&
this.model.socialCreditCode &&
this.model.certName &&
...
...
@@ -187,7 +188,7 @@ export default {
(this.model.time.noLimit ? this.model.time.start_time : this.model.time.start_time && this.model.time.expire_time);
}
},
async
mounted() {
mounted() {
this.fetchToken();
},
components: {
...
...
create-app.js
View file @
e899f11
...
...
@@ -46,7 +46,7 @@ exports.createApp = async(app) => {
}
app
.
use
((
req
,
res
,
next
)
=>
{
req
.
isApmReport
=
_
.
get
(
req
.
app
.
locals
,
'wap.open.bughd'
,
false
)
;
req
.
isApmReport
=
app
.
locals
.
proEnv
;
next
();
});
...
...
Please
register
or
login
to post a comment