shaun-sheep %!s(int64=4) %!d(string=hai) anos
pai
achega
428df8990f

BIN=BIN
src/assets/images/background.png


BIN=BIN
src/assets/images/content.png


A diferenza do arquivo foi suprimida porque é demasiado grande
+ 10 - 474
src/assets/style/iconfont/iconfont.css


BIN=BIN
src/assets/style/iconfont/iconfont.eot


A diferenza do arquivo foi suprimida porque é demasiado grande
+ 2 - 350
src/assets/style/iconfont/iconfont.svg


BIN=BIN
src/assets/style/iconfont/iconfont.ttf


BIN=BIN
src/assets/style/iconfont/iconfont.woff


+ 31 - 0
src/components/business/addBrand.vue

@@ -0,0 +1,31 @@
+
+<template>
+
+  <el-dialog title="添加品牌" :visible.sync="outerVisible">
+    <el-dialog
+      width="30%"
+      title="确定要删除该品牌吗?"
+      :visible.sync="innerVisible"
+      append-to-body>
+    </el-dialog>
+    <div slot="footer" class="dialog-footer">
+      <el-button @click="outerVisible = false">取 消</el-button>
+      <el-button type="primary" @click="innerVisible = true">打开内层 Dialog</el-button>
+    </div>
+  </el-dialog>
+</template>
+<script>
+  export default {
+    name: "addBrand",
+    data() {
+      return {
+        outerVisible: false,
+        innerVisible: false
+      }
+    }
+  }
+</script>
+
+<style scoped>
+
+</style>

+ 2 - 2
src/components/model/file/floorTable.vue

@@ -59,7 +59,7 @@
 import { mapGetters } from "vuex";
 export default {
   components: {
-    
+
   },
   props: {
     tableData: Array,
@@ -239,4 +239,4 @@ export default {
 /deep/ .el-progress-bar__inner {
   text-align: center;
 }
-</style>
+</style>

+ 36 - 0
src/components/public/search.vue

@@ -0,0 +1,36 @@
+<template>
+  <el-input
+    :placeholder="text"
+    v-model="value"
+    :class="type == 'header' ? 'header' :'content'"
+  >
+    <i slot="prefix" class="el-input__icon el-icon-search"></i>
+  </el-input>
+</template>
+
+<script>
+  export default {
+    name: "search",
+    props: ['text', 'type'],
+    data() {
+      return {
+        value: ''
+      }
+    }
+  }
+</script>
+
+<style scoped lang="less">
+  .header {
+    width: 360px;
+
+    /deep/ .el-input__inner  {
+      background: #F6F6F6;
+
+    }
+  }
+
+  .content {
+    width: 221px;
+  }
+</style>

+ 130 - 0
src/components/public/selectTree.vue

@@ -0,0 +1,130 @@
+<template>
+  <el-select :value="valueTitle" :clearable="clearable" @clear="clearHandle">
+    <el-option :value="valueTitle" :label="valueTitle" class="options">
+      <el-tree
+        id="tree-option"
+        ref="selectTree"
+        :accordion="accordion"
+        :data="options"
+        :props="props"
+        :node-key="props.value"
+        :default-expanded-keys="defaultExpandedKey"
+        @node-click="handleNodeClick">
+      </el-tree>
+    </el-option>
+  </el-select>
+</template>
+
+<script>
+  export default {
+    name: "select-tree",
+    props:{
+      // 配置项
+      props:{
+        type: Object,
+        default: {
+          value:'id',             // ID字段名
+          label: 'title',         // 显示名称
+          children: 'children'    // 子级字段名
+        }
+      },
+
+      // 选项列表数据(树形结构的对象数组)
+      options:{ type: Array, default: [] },
+
+      // 初始值
+      value:{ type: Number, default: null },
+
+      // 可清空选项
+      clearable:{ type:Boolean, default: true },
+
+      // 自动收起
+      accordion:{ type:Boolean, default: false }
+    },
+    data() {
+      return {
+        valueId: null,
+        valueTitle:'',
+        defaultExpandedKey:[]
+      }
+    },
+    mounted(){
+      this.valueId = this.value,    // 初始值
+        this.initHandle()
+    },
+    methods: {
+      // 初始化值
+      initHandle(){
+        if(this.valueId){
+          this.valueTitle = this.$refs.selectTree.getNode(this.valueId).data[this.props.label]     // 初始化显示
+          this.$refs.selectTree.setCurrentKey(this.valueId)       // 设置默认选中
+          this.defaultExpandedKey = [this.valueId]      // 设置默认展开
+        }
+        this.initScroll()
+      },
+      // 初始化滚动条
+      initScroll(){
+        this.$nextTick(()=>{
+          let scrollWrap = document.querySelectorAll('.el-scrollbar .el-select-dropdown__wrap')[0]
+          let scrollBar = document.querySelectorAll('.el-scrollbar .el-scrollbar__bar')
+          scrollWrap.style.cssText = 'margin: 0px; max-height: none; overflow: hidden;'
+          scrollBar.forEach(ele => ele.style.width = 0)
+        })
+      },
+      // 切换选项
+      handleNodeClick(node){
+        this.valueTitle = node[this.props.label]
+        this.valueId = node[this.props.value]
+        this.$emit('getValue',this.valueId)
+        this.defaultExpandedKey = []
+      },
+      // 清除选中
+      clearHandle(){
+        this.valueTitle = ''
+        this.valueId = null
+        this.defaultExpandedKey = []
+        this.clearSelected()
+        this.$emit('getValue',null)
+      },
+      // 清空选中样式
+      clearSelected(){
+        let allNode = document.querySelectorAll('#tree-option .el-tree-node')
+        allNode.forEach((element)=>element.classList.remove('is-current'))
+      }
+    },
+    watch: {
+      value(){
+        this.valueId = this.value
+        this.initHandle()
+      }
+    },
+  }
+</script>
+
+<style scoped>
+  .el-scrollbar .el-scrollbar__view .el-select-dropdown__item{
+    height: auto;
+    max-height: 274px;
+    padding: 0;
+    overflow: hidden;
+    overflow-y: auto;
+  }
+  .el-select-dropdown__item.selected{
+    font-weight: normal;
+  }
+  ul li >>>.el-tree .el-tree-node__content{
+    height:auto;
+    padding: 0 20px;
+  }
+  .el-tree-node__label{
+    font-weight: normal;
+  }
+  .el-tree >>>.is-current .el-tree-node__label{
+    color: #409EFF;
+    font-weight: 700;
+  }
+  .el-tree >>>.is-current .el-tree-node__children .el-tree-node__label{
+    color:#606266;
+    font-weight: normal;
+  }
+</style>

+ 82 - 0
src/components/test.vue

@@ -0,0 +1,82 @@
+<template>
+  <div id="app">
+    <h1>{{`组件测试`}}</h1>
+    <!-- 调用树形下拉框组件 -->
+    <SelectTree
+      :props="props"
+      :options="optionData"
+      :value="valueId"
+      :clearable="isClearable"
+      :accordion="isAccordion"
+      @getValue="getValue($event)"/>
+    <search text="请输入关键词/拼音/首字母" type="header"></search>
+    <search text="请输入品牌名称" type="content"></search>
+    <el-button type="primary" @click="handBrand">添加产品</el-button>
+    <addBrand ref="addBrand"></addBrand>
+  </div>
+</template>
+
+<script>
+  import SelectTree from "./public/selectTree";
+  import search from "./public/search";
+  import addBrand from "./business/addBrand";
+  export default {
+    name: "test",
+    components: {
+      SelectTree,
+      search,
+      addBrand
+    },
+    data() {
+      return {
+        isClearable:true,      // 可清空(可选)
+        isAccordion:true,      // 可收起(可选)
+        valueId:20,            // 初始ID(可选)
+        props:{                // 配置项(必选)
+          value: 'id',
+          label: 'name',
+          children: 'children',
+          // disabled:true
+        },
+        // 选项列表(必选)
+        list:[
+          {id:1,parentId:0,name:"一级菜单A",rank:1},
+          {id:2,parentId:0,name:"一级菜单B",rank:1},
+          {id:3,parentId:0,name:"一级菜单C",rank:1},
+          {id:4,parentId:1,name:"二级菜单A-A",rank:2},
+          {id:5,parentId:1,name:"二级菜单A-B",rank:2},
+          {id:6,parentId:2,name:"二级菜单B-A",rank:2},
+          {id:7,parentId:4,name:"三级菜单A-A-A",rank:3},
+          {id:20,parentId:0,name:"一级菜单C",rank:1},
+          {id:39,parentId:0,name:"一级菜单C",rank:1},
+          {id:40,parentId:0,name:"一级菜单end",rank:1}
+        ]
+      };
+    },
+    computed:{
+      /* 转树形数据 */
+      optionData(){
+        let cloneData = JSON.parse(JSON.stringify(this.list))      // 对源数据深度克隆
+        return  cloneData.filter(father=>{                      // 循环所有项,并添加children属性
+          let branchArr = cloneData.filter(child=>father.id == child.parentId);       // 返回每一项的子级数组
+          branchArr.length>0 ? father.children=branchArr : ''   //给父级添加一个children属性,并赋值
+          return father.parentId==0;      //返回第一层
+        });
+      }
+    },
+    methods:{
+      // 取值
+      getValue(value){
+        this.valueId = value
+        console.log(this.valueId);
+      },
+      handBrand() {
+        this.$refs.addBrand.outerVisible = true
+      }
+    }
+  };
+</script>
+
+<style>
+</style>
+

+ 172 - 0
src/framework/layout/index.vue

@@ -0,0 +1,172 @@
+<template>
+  <div class="sign">
+    <div class="content">
+      <ul class="poa brand font-size">
+        <li>1280</li>
+        <li>已收录品牌</li>
+      </ul>
+      <ul class="poa product font-size">
+        <li>3000</li>
+        <li>已收录产品</li>
+      </ul>
+      <ul class="poa parameter font-size">
+        <li>9877</li>
+        <li>已收录技术参数</li>
+      </ul>
+
+      <div class="submit poa">
+        <p class="title">上格云产品管理平台</p>
+        <el-form :model="ruleForm" :rules="rules" ref="ruleForm" class="form">
+          <el-form-item prop="name">
+            <el-input v-model="ruleForm.name">
+              <i slot="prefix" class="iconyonghu iconfont reset-icon"></i>
+            </el-input>
+          </el-form-item>
+          <el-form-item prop="password">
+            <el-input v-model="ruleForm.password" type="password">
+              <i slot="prefix" class="iconlock1 iconfont reset-icon"></i>
+            </el-input>
+          </el-form-item>
+          <el-form-item>
+            <el-checkbox v-model="ruleForm.checked">记住密码</el-checkbox>
+          </el-form-item>
+          <el-form-item>
+            <el-button type="primary" @click="submitForm('ruleForm')" class="btn">登录</el-button>
+          </el-form-item>
+        </el-form>
+        <div class="copy-right">版权信息:北京上格云技术有限公司</div>
+      </div>
+
+
+    </div>
+  </div>
+</template>
+
+<script>
+  export default {
+    name: "login",
+    data() {
+      return {
+        ruleForm: {
+          name: '',
+          password: '',
+          checked: true
+        },
+        rules: {
+          name: [{required: true, message: '请输入用户名', trigger: 'blur'}],
+          password: [{required: true, message: '请输入密码', trigger: 'blur'}]
+        }
+      }
+    },
+    methods: {
+      submitForm(formName) {
+        this.$refs[formName].validate(valid => {
+          if (valid) {
+            console.log('success')
+          } else {
+            console.log('error')
+            return false
+          }
+        })
+      }
+    }
+  }
+</script>
+
+<style scoped lang="less">
+  .sign {
+    background: url(~@/assets/images/background.png) top center no-repeat;
+    object-fit: cover;
+    width: 100%;
+    height: 100%;
+
+    .content {
+      width: 1200px;
+      height: 100%;;
+      margin: 0 auto;
+      position: relative;
+      object-fit: cover;
+      background: url(~@/assets/images/content.png) center center no-repeat;
+
+      .poa {
+        position: absolute;
+      }
+
+      .brand {
+        left: 190px;
+        top: 172px;
+      }
+
+      .product {
+        left: 195px;
+        top: 412px;
+      }
+
+      .parameter {
+        left: 195px;
+        top: 660px;
+      }
+
+      .font-size {
+        color: #ffffff;
+        list-style: none;
+
+        li:first-child {
+          font-size: 48px;
+        }
+
+        li:last-child {
+          font-size: 20px;
+        }
+      }
+
+      .submit {
+        right: 100px;
+        width: 450px;
+        height: 500px;
+        top: 200px;
+
+        .form {
+          width: 300px;
+          margin: 50px auto 0 auto;
+
+          /deep/ .el-input--small .el-input__inner {
+            border-radius: 50px;
+            height: 42px;
+            padding-left: 40px;
+          }
+
+          .btn {
+            width: 300px;
+            height: 42px;
+            border-radius: 50px;
+          }
+
+          .reset-icon {
+            padding-left: 13px;
+            display: inline-block;
+            padding-top: 3px;
+          }
+        }
+
+        .title {
+          color: #1F2429;
+          font-size: 24px;
+          margin-top: 70px;
+          text-align: center;
+        }
+
+        .copy-right {
+          margin-top: 100px;
+          font-size: 14px;
+          color: #C3C7CB;
+          text-align: center;
+        }
+      }
+
+    }
+
+
+  }
+
+</style>

+ 36 - 23
src/router/system.js

@@ -1,30 +1,43 @@
 import LayoutMain from '@/framework/layout/Main'
 import Dasboard from '@/views/dasboard'
-
+//首页登录页面
+import login from '@/framework/layout'
+//测试页面
+import test from '@/components/test'
 /**模型管理 */
 import modelFile from '@/views/model/file'
 
 export default [{
-        path: '/',
-        name: '',
-        component: LayoutMain,
-        children: [
-            { path: '', name: 'blank', component: Dasboard }
-        ]
-    },
-    //模型管理
-    {
-        path: '/model',
-        name: 'LayoutMain',
-        component: LayoutMain,
-        children: [
-            { path: '', name: 'modelFile', component: modelFile },
-            {
-                path: 'file',
-                name: 'modelFile',
-                component: modelFile,
-                meta: { keepAlive: false, breadcrumbs: [{ label: '模型管理', path: '/model/file' }, { label: '模型文件管理' }] }
-            },
-        ]
-    },
+  path: '/',
+  name: '',
+  component: LayoutMain,
+  children: [
+    {path: '', name: 'blank', component: Dasboard}
+  ]
+},
+  //模型管理
+  {
+    path: '/model',
+    name: 'LayoutMain',
+    component: LayoutMain,
+    children: [
+      {path: '', name: 'modelFile', component: modelFile},
+      {
+        path: 'file',
+        name: 'modelFile',
+        component: modelFile,
+        meta: {keepAlive: false, breadcrumbs: [{label: '模型管理', path: '/model/file'}, {label: '模型文件管理'}]}
+      },
+    ]
+  },
+  {
+    path: '/login',
+    name: 'login',
+    component: login,
+  },
+  {
+    path: '/test',
+    name: 'test',
+    component: test,
+  },
 ]