Browse Source

增加功能

master
1549469775 4 years ago
parent
commit
2bca1a7a66
  1. 3
      .gitignore
  2. 30
      cypress/integration/enesoon/login-page.js
  3. 4
      cypress/integration/home_page_spec.js
  4. 5
      cypress/support/index.js
  5. 98
      gulpfile.js/index.js
  6. 6624
      package-lock.json
  7. 12
      package.json
  8. 2
      src/common/__common.less
  9. 28
      src/common/__meida.less
  10. 5
      src/common/style.less
  11. 10
      src/css/index/index.less
  12. 2
      src/html/__include/foot.pug
  13. 2
      src/html/__include/head.pug
  14. 11
      src/html/__layout/layout.pug
  15. 10
      src/html/index.pug
  16. 1
      src/js/index/main.js
  17. 1
      src/static/a.txt

3
.gitignore

@ -1 +1,2 @@
node_modules
node_modules
dist

30
cypress/integration/enesoon/login-page.js

@ -0,0 +1,30 @@
describe('The Home Page', () => {
beforeEach(() => {
cy.visit('http://localhost:8080')
})
it('标题的文字', () => {
cy.get('.login-title > span').should('have.text', "登录智慧能源")
})
it('输入不规范账号密码', () => {
cy.intercept(
'https://www.enesoon-saas-back-test.cn:8381/**/*',
{ middleware: true },
(req) => {
req.on('before:response', (res) => {
// force all API responses to not be cached
res.headers['cache-control'] = 'no-store'
})
}
).as('login');
cy.get('body > uni-app > uni-page > uni-page-wrapper > uni-page-body > uni-view > uni-view:nth-child(2) > uni-view:nth-child(1) > uni-input > div > input')
.type('have.text')
cy.get('body > uni-app > uni-page > uni-page-wrapper > uni-page-body > uni-view > uni-view:nth-child(2) > uni-view:nth-child(2) > uni-input > div > input')
.type('have.text')
cy.get('.login').click()
cy.wait("@login").its('response.body').should((rep) => {
expect(rep).to.have.property("code", 1)
expect(rep).to.have.property("message", '用户名非邮箱手机号')
})
})
})

4
cypress/integration/home_page_spec.js

@ -6,6 +6,8 @@ describe('The Home Page', () => {
cy.get('.login-title > span').should('have.text', "登录智慧能源")
})
it('输入账号密码', () => {
cy.get('.input .content-input input').type('have.text')
cy.get('.input.email .content-input input').type('have.text')
cy.get('.input.pwd .content-input input').type('have.text')
cy.get('.login').click()
})
})

5
cypress/support/index.js

@ -18,3 +18,8 @@ import './commands'
// Alternatively you can use CommonJS syntax:
// require('./commands')
Cypress.on('uncaught:exception', (err, runnable) => {
// returning false here prevents Cypress from
// failing the test
return false
})

98
gulpfile.js/index.js

@ -0,0 +1,98 @@
const { src, dest, parallel, series, watch } = require('gulp');
const del = require('del');
const inject = require('gulp-inject');
const rename = require('gulp-rename');
const pug = require('gulp-pug');
const less = require('gulp-less');
const path = require('path');
const es = require('event-stream');
const browserSync = require('browser-sync').create();
const reload = browserSync.reload;
let srcPath = "src"
// let distPath = "node_modules/.gcache"
let distPath = "dist"
/**
* 删除输出文件夹目录
*/
function remove() {
return del(['dist/**/*']);
}
function removeStatic() {
return del(['dist/static/**/*']);
}
// 处理公共库
function common() {
let commonJS = src([`${srcPath}/common/**/*.js`,`!${srcPath}/**/__*`]).pipe(rename({suffix: "._cn",dirname: 'js'}))
let commonCSS = src([`${srcPath}/common/**/*.css`,`!${srcPath}/**/__*`]).pipe(rename({suffix: "._cn",dirname: 'css'}))
let commonLess = src([`${srcPath}/common/**/*.less`,`!${srcPath}/**/__*`]) .pipe(less()).pipe(rename({suffix: "._cn",dirname: 'css', extname: ".css" }))
return es.merge(commonJS, commonCSS, commonLess).pipe(dest(`${distPath}`))
}
// 处理页面资源
function page(name="index") {
let pageJS = src([`${srcPath}/js/${name}/**/*`,`!src/**/__*`]).pipe(rename({suffix: `._${name}`,dirname: 'js'}))
let pageLess = src([`${srcPath}/css/${name}/**/*.less`,`!${srcPath}/**/__*`]) .pipe(less()).pipe(rename({suffix: "._cn",dirname: 'css', extname: ".css" }))
let pageCSS = src([`${srcPath}/css/${name}/**/*`,`!${srcPath}/**/__*`]).pipe(rename({suffix: `._${name}`,dirname: 'css'}))
return es.merge(pageJS, pageCSS, pageLess).pipe(dest(`${distPath}`))
}
// 处理页面资源的包装函数
function asset(name="index") {
return function asset() {
return page(name)
}
}
// 静态资源
function static() {
return src(`${srcPath}/static/**/*`).pipe(dest(`${distPath}/static`))
}
// 处理页面
function pageFn(name="index") {
return function page() {
const jsCNiles = src(`${distPath}/js/**/*._cn.js`, {read: false})
const jsFiles = src(`${distPath}/js/**/*._${name}.js`, {read: false})
const cssCNFiles = src(`${distPath}/css/**/*._cn.css`, {read: false})
const cssFiles = src(`${distPath}/css/**/*._${name}.css`, {read: false})
return src([`${srcPath}/html/${name}.pug`,`!${srcPath}/**/__*`]).pipe(pug()).pipe(inject(es.merge(
jsCNiles,
cssCNFiles,
cssFiles,
jsFiles
), {relative: true, ignorePath: `../../${distPath}`})).pipe(dest(`${distPath}`));
}
}
let task = series(remove,static, common, parallel(asset("index")),parallel(pageFn("index")))
/**
* 开发时监听
*/
function watchTask() {
browserSync.init({
server: {
baseDir: `./${distPath}`
}
});
watch([`${srcPath}/static/**/*`], series(removeStatic, static))
.on("add", reload)
.on("change", reload)
.on("unlink", reload)
watch([`${srcPath}/common/`], common)
.on("add", reload)
.on("change", reload)
.on("unlink", reload)
watch([`${srcPath}/css/**/*`,`${srcPath}/js/**/*`], asset("index"))
.on("add", reload)
.on("change", reload)
.on("unlink", reload)
watch([`${srcPath}/html/**/*`], pageFn("index"))
.on("add", reload)
.on("change", reload)
.on("unlink", reload)
}
exports.watch = series(task,watchTask)
exports.default = task
exports.index = series(remove, static, common, asset("index"), pageFn("index"))
exports.about = series(remove, static, common, asset("about"), pageFn("about"))

6624
package-lock.json

File diff suppressed because it is too large

12
package.json

@ -10,6 +10,16 @@
"author": "",
"license": "ISC",
"devDependencies": {
"cypress": "^8.3.1"
"browser-sync": "^2.27.5",
"cypress": "^8.3.1",
"gulp": "^4.0.2",
"gulp-inject": "^5.0.5"
},
"dependencies": {
"del": "^6.0.0",
"event-stream": "^4.0.1",
"gulp-less": "^5.0.0",
"gulp-pug": "^5.0.0",
"gulp-rename": "^2.0.0"
}
}

2
src/common/__common.less

@ -0,0 +1,2 @@
@import (reference) "./__meida.less";
@red: red;

28
src/common/__meida.less

@ -0,0 +1,28 @@
.choose(@type, @style) when (@type=xs){
@media (max-width: 768px){
@style();
}
}
.choose(@type, @style) when (@type=sm){
@media (max-width: 920px){
@style();
}
}
.choose(@type, @style) when (@type=md){
@media (max-width: 1200px){
@style();
}
}
.choose(@type, @style) when (@type=lg){
@media (max-width: 1366px){
@style();
}
}
.loop(@i,@style,@list) when (@i<length(@list)){
.choose(extract(@list,@i+1),@style);
.loop(@i+1,@style,@list);
}
.media(@style,@rest...){
.loop(0,@style,@rest);
}

5
src/common/style.less

@ -0,0 +1,5 @@
@import (reference) "./__common.less";
.@{red}-w{
color: @red;
}

10
src/css/index/index.less

@ -0,0 +1,10 @@
@red: green;
.@{red}{
color: @red;
}
.container{
margin: 0 auto;
width: 1200px;
}

2
src/html/__include/foot.pug

@ -0,0 +1,2 @@
// inject:js
// endinject

2
src/html/__include/head.pug

@ -0,0 +1,2 @@
// inject:css
// endinject

11
src/html/__layout/layout.pug

@ -0,0 +1,11 @@
doctype html
html(lang="zh-cn")
head
block title
title 我的站点 - #{title}
include ../__include/head.pug
block head
body
block content
block foot
include ../__include/foot.pug

10
src/html/index.pug

@ -0,0 +1,10 @@
//- 继承布局
extends __layout/layout.pug
block title
- var title = "哈哈"
block content
.container
p 不错了

1
src/js/index/main.js

@ -0,0 +1 @@
console.log(12311111111);

1
src/static/a.txt

@ -0,0 +1 @@
sadasdasdas
Loading…
Cancel
Save