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

 

posted @ 2018-10-24 16:58  不做大哥好多年  阅读(637)  评论(0编辑  收藏  举报