• 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的基本操作
    Redis下载和安装-windows
    Redis介绍
    day08 网络编程
    day07
    day06
    python day05
    Day04
    windows自带反编译chm文件
    CSS Hack表 各版本IE、chrome、firefox、opera
  • 原文地址:https://www.cnblogs.com/xiaonq/p/9844485.html
Copyright © 2020-2023  润新知