zoukankan      html  css  js  c++  java
  • 15:element/Vue Admin

    1.1 简介

      1、Vue Admin 简介

          1. Vue Admin 是一个基于 Vue 2.0 & Bulma 0.3 的后台管理面板(管理系统),相当于是 Vue 版本的 Bootstrap 管理系统

          2. 提供了一组通用的后台界面 UI 和组件,其中还有丰富的图表组件,开箱即用

          官网:http://element.eleme.io
          地址:https://github.com/PanJiaChen/vue-admin-template 

      2、vue 后台使用

          https://segmentfault.com/a/1190000010043013

          // 取消会议弹出框
          cancelMeetingAlter(hours, msg){
            // MessageBox.confirm(msg, "警告:选确认取消会议").then(action => {
            MessageBox.confirm(msg, {
              title:'提示',
              message:msg,
              confirmButtonText:'取消会议',
              cancelButtonText:'会议详情'
            }).then(action => {
    
            }).then(() => {
              var cancel_meetingorderid = this.hourChoose.cancelMeetingOrderid[hours];
              var params = { 'cancel_meetingorderid': cancel_meetingorderid };
              this.meetingOrderCancelMethod(params).then(response => {
                MessageBox({
                  title: '提 示',
                  message: '成功取消会议!',
                });
                this.updataPage()
              }).catch(error => {
                this.loading = false;
                this.error(error.desc ? error.desc : '服务器异常')
              });
            }).catch(() => {
              var cancel_meetingorderid = this.hourChoose.cancelMeetingOrderid[hours];
              this.$router.push({ path: '/mb/meeting/detail?id=' + cancel_meetingorderid })
            });
          },
    MessageBox.confirm
  • 相关阅读:
    Redis
    cut
    grep
    MySQL中EXPLAIN的解释
    MySQL数据类型
    有用的MySQL语句
    mysql函数
    memcache
    存储过程 游标的使用
    存储过程批量删除
  • 原文地址:https://www.cnblogs.com/xiaonq/p/9844485.html
Copyright © 2011-2022 走看看