Vue-Element UI 增刪改查(值得學(xué)習(xí)蜈彼,真的很詳細(xì)哦)

公司最近在組織培訓(xùn)Springboot+Vue前后端分離,可特么終于要換了

簡單介紹一下所涉及的技術(shù)內(nèi)容

前端

  • vue:^2.5.2
  • vue-router:^3.0.1
  • axios:^0.21.1
  • element-ui:^2.15.3

后端

  • spring-boot:2.1.1.RELEASE
  • jdk:1.8
  • mybatis-plus:3.1.1
  • mysql:5.1.47
  • swagger2:2.9.2

先看下效果圖

image.png

后端接口

接口文檔

http://localhost:8089//swagger-ui.html#/

image.png

查詢

  • 請求
URL http://localhost:8089/sysUser/selectAll
hethod get
  • 入?yún)?/li>
name 用戶名
current 當(dāng)前頁數(shù)
size 當(dāng)前頁數(shù)量
  • 出參
{
  "code": 0,
  "data": {
    "records": [
      {
        "id": 35,
        "name": "12333",
        "nickName": "33333",
        "email": "132@qq.com",
        "mobile": "15606981928",
        "createTime": "2021-08-19 13:29:33"
      }
    ],
    "total": 13,
    "size": 10,
    "current": 1,
    "searchCount": true,
    "pages": 2
  },
  "msg": "執(zhí)行成功"
}

新增

  • 請求
URL http://localhost:8089/sysUser/insert
hethod post
  • 入?yún)?/li>
name 用戶名
nickName 昵稱
mobile 手機(jī)號(hào)碼
email 郵箱
  • 出參
{
  "code": 0,
  "data": true,
  "msg": "執(zhí)行成功"
}

修改

  • 請求
URL http://localhost:8089/sysUser/update
hethod post
  • 入?yún)?/li>
name 用戶名
nickName 昵稱
mobile 手機(jī)號(hào)碼
email 郵箱
id 主鍵
  • 出參
{
  "code": 0,
  "data": true,
  "msg": "執(zhí)行成功"
}

刪除

  • 請求
URL http://localhost:8089/sysUser/delete
hethod post
  • 入?yún)?/li>
idList id集合
  • 出參
{
  "code": 0,
  "data": true,
  "msg": "執(zhí)行成功"
}

前端部分

下面內(nèi)容分為以下幾個(gè)部分

  1. 顯示列表
  2. 查詢
  3. 分頁
  4. 新增
  5. 修改
  6. 刪除
  7. 出現(xiàn)的問題以及解決辦法

顯示列表

image-20210819112356820.png
  • 頁面代碼
<template>
  <el-row>
    <el-col :span="24">
      <el-card class="box-card">
        <el-row :gutter="20" style="margin-bottom: 15px">
          <el-col :span="6">
            <el-input placeholder="請輸入用戶名" v-model="query.name" clearable>
              <el-button slot="append" icon="el-icon-search"></el-button>
            </el-input>
          </el-col>
        </el-row>
        <el-table
          :data="userList"
          border
          stripe
          ref="userTable"
          style="width: 100%">
          <el-table-column
            type="selection"
            width="55">
          </el-table-column>
          <el-table-column
            prop="name"
            label="用戶名"
            align="center"
          >
          </el-table-column>
          <el-table-column
            prop="nickName"
            label="昵稱"
            align="center"
          >
          </el-table-column>
          <el-table-column
            prop="email"
            label="郵箱"
            align="center"
          >
          </el-table-column>
          <el-table-column
            prop="mobile"
            label="手機(jī)號(hào)"
            align="center"
          >
          </el-table-column>
          <el-table-column
            prop="createTime"
            label="創(chuàng)建時(shí)間"
            align="center"
          >
          </el-table-column>
        </el-table>
      </el-card>
    </el-col>
  </el-row>
</template>

<script>
    export default {
        name: "SysUser",
        data() {
            return {
                query: {
                    current: 1,
                    size: 10,
                    name: ''
                },
                userList: []
            }
        },
        methods:{
            async getUserList() {
               this.$http.get('/sysUser/selectAll', {
                    params: this.query
                }).then(res => {
                   if (res.data.data.records.length > 0 ){
                       this.userList = res.data.data.records;
                   }
                }).catch(err => {
                    console.log(err);
                })
            }
        },
        created() {
            this.getUserList()
        }
    }
</script>
<style scoped>
</style>

查詢

給查詢按鈕綁定事件

<el-input placeholder="請輸入用戶名" v-model="query.name" clearable>
  <el-button slot="append" icon="el-icon-search" @click="queryBtn"></el-button>
</el-input>

事件內(nèi)容

queryBtn(){
  // 再次調(diào)用加載用戶數(shù)據(jù)方法
  this.getUserList();
 }

分頁

image-20210819114223855.png
  • 新增頁面內(nèi)容
<el-pagination
               @size-change="handleSizeChange"  //每頁數(shù)量大小改變事件
               @current-change="handleCurrentChange" // 頁數(shù)改變事件
               :current-page="query.current"   // 當(dāng)前頁數(shù)
               :page-sizes="[10, 20, 30, 40, 50]"
               :page-size="query.size"   // 每頁顯示條數(shù)
               layout="total, sizes, prev, pager, next, jumper"
               :total="total">  // 總條數(shù)
</el-pagination>
  • javascript修改
    • 新增total屬性氏淑,并在加載數(shù)據(jù)時(shí)進(jìn)行賦值
    • 新增handleSizeChange读整、handleCurrentChange

此時(shí)需要修改加載用戶數(shù)據(jù)方法,將查詢出的總頁數(shù)進(jìn)行賦值

// 加載用戶數(shù)據(jù)
async getUserList() {
    this.$http.get('/sysUser/selectAll', {
        params: this.query
    }).then(res => {
        if (res.data.data.records.length > 0) {
            this.userList = res.data.data.records;
            this.total = res.data.data.total
        }
    }).catch(err => {
        console.log(err);
    })
},
 //當(dāng)前每頁數(shù)量改變事件
handleSizeChange(newSize) {
    this.query.size = newSize;
    this.getUserList();
},
// 當(dāng)前頁數(shù)改變事件
handleCurrentChange(current) {
     this.query.current = current;
     this.getUserList();
}

修改頁面數(shù)據(jù)

image-20210819114955161.png

新增

image-20210819115824854.png
  • 新增彈窗頁面

      <!--新增彈窗-->
    <el-dialog
               center //居中
               title="新增" //標(biāo)題
               :visible.sync="addDialogVisible"  // 控制是否顯示
               width="30%"  // 寬度
               >
        <el-form :model="addUserForm" ref="addRuleForm" label-width="90px">
            <el-form-item label="用戶名">
                <el-input v-model="addUserForm.name"></el-input>
            </el-form-item>
            <el-form-item label="昵稱">
                <el-input v-model="addUserForm.nickName"></el-input>
            </el-form-item>
            <el-form-item label="手機(jī)號(hào)碼">
                <el-input v-model="addUserForm.mobile"></el-input>
            </el-form-item>
            <el-form-item label="郵箱">
                <el-input v-model="addUserForm.email"></el-input>
            </el-form-item>
        </el-form>
        <span slot="footer" class="dialog-footer">
            <el-button @click="addDialogVisible = false">取 消</el-button>
            <el-button type="primary">確 定</el-button>
        </span>
    </el-dialog>
    
  • 新增按鈕新增點(diǎn)擊事件,點(diǎn)擊按鈕彈出

    <el-button type="primary" icon="el-icon-plus"@click="addDialogVisible=true">新增</el-button>
    
    
  • 新增屬性

    addDialogVisible: false,
    addUserForm: {
       name: '',
       nickName: '',
       email: '',
       mobile: ''
    }
    

數(shù)據(jù)校驗(yàn)

image-20210819121104955.png
  • <el-form> 新增 :rules="addRules" <el-form-item> 新增prop屬性 罐氨。比如用戶名 prop = "name" prop = "nickName" 等等

配置檢驗(yàn)規(guī)則

---------------------以下為自定義校驗(yàn)規(guī)則臀规,return外面----------------------------

// 手機(jī)校驗(yàn)
let validatorPhone = function (rule, value, callback) {
    if (value === '') {
        callback(new Error('手機(jī)號(hào)不能為空'))
    } else if (!/^1\d{10}$/.test(value)) {
        callback(new Error('手機(jī)號(hào)格式錯(cuò)誤'))
    } else {
        callback()
    }
};
let validatorEmail = function (rule, value, callback) {
    const mailReg = /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(.[a-zA-Z0-9_-])+/
    if (value === '') {
        callback(new Error('郵箱不能為空'))
    } else if (!mailReg.test(value)) {
        callback(new Error('郵箱格式錯(cuò)誤'))
    } else {
        callback()
    }
};

---------------------------------以下為return里面-----------------------------

 addRules: {
     name: [
         {required: true, message: '請輸入用戶名', trigger: 'blur'},
         {min: 3, max: 12, message: '長度在 3 到 12 個(gè)字符', trigger: 'blur'}
     ],
         nickName: [
             {required: true, message: '請輸入昵稱', trigger: 'blur'},
             {min: 3, max: 12, message: '長度在 3 到 12 個(gè)字符', trigger: 'blur'}
         ],
             mobile: [
                 {required: true, message: '請輸入手機(jī)號(hào)碼', trigger: 'blur'},
                 {validator: validatorPhone, trigger: 'blur'}
             ],
                 email: [
                     {required: true, message: '請輸入郵箱', trigger: 'blur'},
                     {validator: validatorEmail, trigger: 'blur'}
                 ]
 }
  • 確 定按鈕綁定事件

    <el-button type="primary" @click="insertSubmit">確 定</el-button>
    
     // 新增提交
    insertSubmit(){
        // 判斷是否通過校驗(yàn)
        this.$refs['addRuleForm'].validate((valid) => {
            if (valid) {
                const headers = {"content-type": "application/json;charset=UTF-8"};
                this.$http.post('/sysUser/insert', JSON.stringify(this.addUserForm),{headers:headers}).then(res => {
                    if (res.data.code == 0 || res.data.data == true) {
                        this.$message({
                            type: 'success',
                            message: '保存成功!'
                        });
                        this.addDialogVisible = false;
                        this.getUserList();
                    } else {
                        this.$message({
                            type: 'error',
                            message: '保存失敗!'
                        });
                    }
                }).catch(err => {
                    console.log(err);
                })
            } else {
                return false;
            }
        });
    }
    

修改

image-20210819130142801.png

修改的校驗(yàn)采用新增一致即可!

 <!--修改彈窗-->
<el-dialog
           center
           title="修改"
           :visible.sync="updateDialogVisible"
           width="30%"
           >
    <el-form :model="updateUserForm" ref="updateRuleForm" :rules="addRules" label-width="90px">
        <el-form-item label="用戶名" prop="name">
            <el-input v-model="updateUserForm.name"></el-input>
        </el-form-item>
        <el-form-item label="昵稱" prop="nickName">
            <el-input v-model="updateUserForm.nickName"></el-input>
        </el-form-item>
        <el-form-item label="手機(jī)號(hào)碼" prop="mobile">
            <el-input v-model="updateUserForm.mobile"></el-input>
        </el-form-item>
        <el-form-item label="郵箱" prop="email">
            <el-input v-model="updateUserForm.email"></el-input>
        </el-form-item>
    </el-form>
    <span slot="footer" class="dialog-footer">
        <el-button @click="updateDialogVisible = false">取 消</el-button>
        <el-button type="primary" @click="insertSubmit">確 定</el-button>
    </span>
</el-dialog>

新增屬性

updateDialogVisible:false,
updateUserForm: {
    name: '',
    nickName: '',
    email: '',
    mobile: '',
    id:''
}

為修改按鈕綁定事件

<el-button type="warning" icon="el-icon-edit" @click="updateBtn">編輯</el-button>
// 修改
updateBtn(){
    // 判斷是否勾選了 栅隐,無勾選不予彈窗塔嬉,并給予提示
    // userTable 為table 的ref
    const _selectData = this.$refs.userTable.selection;
    if (_selectData.length === 0) {
        this.$message({
            message: '請選擇一行數(shù)據(jù)',
            type: 'warning'
        });
        return false;
    } else if (_selectData.length > 1) {
        this.$message({
            message: '只能選中一行數(shù)據(jù)哦',
            type: 'warning'
        });
        return false;
    }
    // 顯示彈窗
    this.updateDialogVisible = true;
    // 將選中的數(shù)據(jù)進(jìn)行賦值
    this.updateUserForm = _selectData[0];
}

刪除

image-20210819132318016.png

為刪除按鈕綁定點(diǎn)擊事件

<el-button type="danger" icon="el-icon-delete" @click="deleteBatch">刪除</el-button>
deleteBatch() {
                const ids = [];
                const _selectData = this.$refs.userTable.selection;
                if (_selectData.length === 0) {
                    this.$message({
                        message: '請至少選擇一行數(shù)據(jù)',
                        type: 'warning'
                    });
                    return false;
                }
                for (const i in _selectData) {
                    ids.push(_selectData[i].id)
                }
                this.$confirm('是否刪除?', '提示', {
                    confirmButtonText: '確定',
                    cancelButtonText: '取消',
                    type: 'warning'
                }).then(() => {
                    const headers = {"content-type": "application/json;charset=UTF-8"};
                    this.$http.post('/sysUser/delete', JSON.stringify(ids),{headers:headers}).then(res => {
                        if (res.data.code == 0 || res.data.data == true) {
                            this.$message({
                                type: 'success',
                                message: '刪除成功!'
                            });
                            this.addDialogVisible = false;
                            this.getUserList();
                        } else {
                            this.$message({
                                type: 'error',
                                message: '刪除失敗!'
                            });
                        }
                    }).catch(err => {
                        console.log(err);
                    })
                }).catch(() => {
                    return false;
                });
            }

問題及解決辦法

  • 新增完成后,再次打開新增按鈕租悄,會(huì)出現(xiàn)上次數(shù)據(jù)谨究!
    解決辦法:
    為彈窗新增一個(gè)關(guān)閉回調(diào)事件
<el-dialog
           center
           title="新增"
           :visible.sync="addDialogVisible"
           width="30%"
           @close="addFormClose"
           >
</el-dialog>
    <!--修改彈窗-->
        <el-dialog
          center
          title="修改"
          :visible.sync="updateDialogVisible"
          width="30%"
          @close="updateFormClose"
        >
</el-dialog>
  // 新增彈窗關(guān)閉回調(diào)事件
addFormClose(){
    this.$refs.addRuleForm.resetFields();
},
    // 修改彈窗關(guān)閉回調(diào)事件
    updateFormClose(){
        this.$refs.updateRuleForm.resetFields();
    }
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市泣棋,隨后出現(xiàn)的幾起案子胶哲,更是在濱河造成了極大的恐慌,老刑警劉巖潭辈,帶你破解...
    沈念sama閱讀 211,265評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件鸯屿,死亡現(xiàn)場離奇詭異,居然都是意外死亡把敢,警方通過查閱死者的電腦和手機(jī)寄摆,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,078評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來修赞,“玉大人婶恼,你說我怎么就攤上這事。” “怎么了勾邦?”我有些...
    開封第一講書人閱讀 156,852評(píng)論 0 347
  • 文/不壞的土叔 我叫張陵联逻,是天一觀的道長。 經(jīng)常有香客問我检痰,道長包归,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,408評(píng)論 1 283
  • 正文 為了忘掉前任铅歼,我火速辦了婚禮公壤,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘椎椰。我一直安慰自己厦幅,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,445評(píng)論 5 384
  • 文/花漫 我一把揭開白布慨飘。 她就那樣靜靜地躺著确憨,像睡著了一般。 火紅的嫁衣襯著肌膚如雪瓤的。 梳的紋絲不亂的頭發(fā)上休弃,一...
    開封第一講書人閱讀 49,772評(píng)論 1 290
  • 那天,我揣著相機(jī)與錄音圈膏,去河邊找鬼塔猾。 笑死,一個(gè)胖子當(dāng)著我的面吹牛稽坤,可吹牛的內(nèi)容都是我干的丈甸。 我是一名探鬼主播,決...
    沈念sama閱讀 38,921評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼尿褪,長吁一口氣:“原來是場噩夢啊……” “哼睦擂!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起杖玲,我...
    開封第一講書人閱讀 37,688評(píng)論 0 266
  • 序言:老撾萬榮一對情侶失蹤顿仇,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后天揖,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體夺欲,經(jīng)...
    沈念sama閱讀 44,130評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡跪帝,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,467評(píng)論 2 325
  • 正文 我和宋清朗相戀三年今膊,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片伞剑。...
    茶點(diǎn)故事閱讀 38,617評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡斑唬,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情恕刘,我是刑警寧澤缤谎,帶...
    沈念sama閱讀 34,276評(píng)論 4 329
  • 正文 年R本政府宣布,位于F島的核電站褐着,受9級(jí)特大地震影響坷澡,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜含蓉,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,882評(píng)論 3 312
  • 文/蒙蒙 一频敛、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧馅扣,春花似錦斟赚、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,740評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至蓄喇,卻和暖如春发侵,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背妆偏。 一陣腳步聲響...
    開封第一講書人閱讀 31,967評(píng)論 1 265
  • 我被黑心中介騙來泰國打工器紧, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人楼眷。 一個(gè)月前我還...
    沈念sama閱讀 46,315評(píng)論 2 360
  • 正文 我出身青樓铲汪,卻偏偏與公主長得像,于是被迫代替她去往敵國和親罐柳。 傳聞我的和親對象是個(gè)殘疾皇子掌腰,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,486評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容