<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
elementui Tag標籤
<el-table-column label="明細" type="expand"> <template slot-scope="scope"> <!-- 迴圈渲染tag元件 引數明細 --> <el-tag :key="i" v-for="(item,i) in scope.row.attr_vals" closable @close="handleClose(scope.row,i)"> {{ item }} </el-tag> <!-- 輸入的文字方塊 --> <el-input class="input-new-tag" v-if="inputVisible" v-model="inputValue" ref="saveTagInput" size="small" @keyup.enter.native="handleInputConfirm" @blur="handleInputConfirm"> </el-input> <!-- 新增的按鈕i --> <el-button v-else class="button-new-tag" size="small" @click="showInput">+ New Tag</el-button> </template>
// 獲取分類引數的資料 async getParamsData() { // 判斷是否選中三級分類,如果未選中則重新選中 if (this.selectdKeys.length !== 3) { this.selectdKeys = [] this.paramsData = [] return } // 根據所選分類獲取動態引數或者靜態屬性 三級分類的id const { data: res } = await this.$http.get(`categories/${this.cateId}/attributes`, { params: { sel: this.activeName, }, }) if (res.meta.status !== 200) { return this.$message.error('獲取參數列失敗') } //對引數的明細進行處理:按空格拆分為陣列 res.data.forEach(item=>{ item.attr_vals = item.attr_vals ? item.attr_vals.split(',') : [] }) console.log(res.data) this.paramsData = res.data },
inputVisible 控制輸入框的顯示
showInput
// tag 標籤 顯示文字輸入框 inputVisible:false,
<!-- 輸入的文字方塊 --> <el-input class="input-new-tag" v-if="inputVisible" v-model="inputValue" ref="saveTagInput" size="small" @keyup.enter.native="handleInputConfirm" @blur="handleInputConfirm"> </el-input> <!-- 新增的按鈕i --> <el-button v-else class="button-new-tag" size="small" @click="showInput">+ New Tag</el-button>
// tag 顯示文字輸入框 showInput(){ this.inputVisible=true }
輸入框太寬,修改下長度
.input-new-tag{ width: 120px; }
但是現在會存在一個問題,顏色和尺寸屬性應該是獨立的互不產生影響才對,但是這裡產生了關聯(點選按鈕顏色和尺寸都會出現輸入框,如果輸入記憶體也都會同時輸入)
直接在data裡面定義下面的屬性是不行的
// tag 標籤 顯示文字輸入框
inputVisible:false,
解決方法:可以在後端返回的引數資料裡面加上該屬性,用以控制文字方塊的顯示和隱藏
//對引數的明細進行處理:按空格拆分為陣列 res.data.forEach(item=>{ item.attr_vals = item.attr_vals ? item.attr_vals.split(',') : [] item.inputVisible=false //控制文字方塊的顯示和隱藏 })
這裡的v-if 相當於從該行資料中獲取該值用以控制
<!-- 輸入的文字方塊 --> <el-input class="input-new-tag" v-if="scope.row.inputVisible" v-model="scope.row.inputValue" ref="saveTagInput" size="small" @keyup.enter.native="handleInputConfirm" @blur="handleInputConfirm">
這是文字方塊輸入的值
v-model="scope.row.inputValue"
//對引數的明細進行處理:按空格拆分為陣列 res.data.forEach(item=>{ item.attr_vals = item.attr_vals ? item.attr_vals.split(',') : [] item.inputVisible=false //控制文字方塊的顯示和隱藏 item.inputValue='' // 文字方塊輸入的值 })
這兩步的目的就是讓新增引數的按鈕輸入框互不產生影響
showInput(scope.row)
這裡需要拿到引數物件
<!-- 新增的按鈕i --> <el-button v-else class="button-new-tag" size="small" @click="showInput(scope.row)">+ New Tag</el-button>
所以獲取到使用者輸入的引數後先新增到引數明細attr_vals中
row.attr_vals.push(row.inputValue.trim())
// tag 顯示文字輸入框 showInput(row){ row.inputVisible=true this.$nextTick(_ => { // 點選新增按鈕後 輸入框獲取焦點 ref = saveTagInput this.$refs.saveTagInput.$refs.input.focus(); }); }, // 文字方塊失去焦點或按下enter 按鍵 handleInputConfirm(row){ if(row.inputValue.trim()){ row.attr_vals.push(row.inputValue.trim()) // 更新引數的明細 this.updateParamsDetail(row) } row.inputVisible=false }, // 更新引數的明細 async updateParamsDetail(row){ const {data:res} = await this.$http.put(`categories/${this.cateId}/attributes/${row.attr_id}`,{ attr_name:row.attr_name, attr_sel:row.attr_sel, attr_vals:row.attr_vals.join(',') }) if(res.meta.status !== 200){ return this.$message.error('更新引數明細失敗') } this.$message.success('更新引數明細成功!') }
這裡失去焦點和執行enter會觸發兩次事件,執行兩次
row.inputValue=''
// 文字方塊失去焦點或按下enter 按鍵 handleInputConfirm(row){ if(row.inputValue.trim()){ row.attr_vals.push(row.inputValue.trim()) // 更新引數的明細 this.updateParamsDetail(row) } row.inputVisible=false // 執行完一次(enter 或者失去焦點) 清空,這樣就不會執行上面的if row.inputValue='' },
// 監視tag標籤的關閉事件,即刪除對應的引數明細項 handleClose(){ row.attr_vals.splice(i,1) // 更新引數的明細 this.updateParamsDetail(row) },
<el-table-column label="明細" type="expand"> <template slot-scope="scope"> <!-- 迴圈渲染tag元件 引數明細 --> <el-tag :key="i" v-for="(item,i) in scope.row.attr_vals" closable @close="handleClose(scope.row,i)"> {{ item }} </el-tag> <!-- 輸入的文字方塊 --> <el-input class="input-new-tag" v-if="scope.row.inputVisible" v-model="inputValue" ref="saveTagInput" size="small" @keyup.enter.native="handleInputConfirm(scope.row)" @blur="handleInputConfirm(scope.row)"> </el-input> <!-- 新增的按鈕i --> <el-button v-else class="button-new-tag" size="small" @click="showInput(scope.row)">+ New Tag</el-button> </template> </el-table-column>
只需要把動態屬性的明細 複製到靜態屬性即可
完整程式碼
<template> <div> <!-- 麵包屑導航--> <el-breadcrumb separator-class="el-icon-arrow-right"> <el-breadcrumb-item :to="{ path: '/home' }">首頁</el-breadcrumb-item> <el-breadcrumb-item>商品管理</el-breadcrumb-item> <el-breadcrumb-item>分類引數</el-breadcrumb-item> </el-breadcrumb> <!-- 卡片試圖--> <el-card> <!-- 提示資訊--> <el-alert title="注意:只允許為第三級分類設定相關引數!" type="warning" show-icon :closable="false"> </el-alert> <!-- 選擇商品分類--> <el-row class="cat_select"> <el-col> <span>選擇商品分類:</span> <el-cascader v-model="selectdKeys" :options="cateList" :props="cascaderProps" @change="handleChange" clearable></el-cascader> </el-col> </el-row> <!-- tabs分頁--> <el-tabs v-model="activeName" @tab-click="handleClick"> <el-tab-pane label="動態引數" name="many"> <el-button type="primary" size="mini" :disabled="btnDisabled" @click="addDialogVisible = true">新增引數</el-button> <el-table :data="paramsData" border stripe> <el-table-column label="明細" type="expand"> <template slot-scope="scope"> <!-- 迴圈渲染tag元件 引數明細 --> <el-tag :key="i" v-for="(item, i) in scope.row.attr_vals" closable @close="handleClose(scope.row, i)"> {{ item }} </el-tag> <!-- 輸入的文字方塊 --> <el-input class="input-new-tag" v-if="scope.row.inputVisible" v-model="scope.row.inputValue" ref="saveTagInput" size="small" @keyup.enter.native="handleInputConfirm(scope.row)" @blur="handleInputConfirm(scope.row)" > </el-input> <!-- 新增的按鈕i --> <el-button v-else class="button-new-tag" size="small" @click="showInput(scope.row)">+ New Tag</el-button> </template> </el-table-column> <el-table-column label="序號" type="index"></el-table-column> <el-table-column label="引數名稱" prop="attr_name"></el-table-column> <el-table-column label="操作"> <template slot-scope="scope"> <el-button type="primary" icon="el-icon-edit" size="mini" @click="showEditDialog(scope.row.attr_id)">編輯</el-button> <el-button type="warning" icon="el-icon-delete" size="mini" @click="removeParams(scope.row.attr_id)">刪除</el-button> </template> </el-table-column> </el-table> </el-tab-pane> <el-tab-pane label="靜態屬性" name="only"> <el-button type="primary" size="mini" :disabled="btnDisabled" @click="addDialogVisible = true">新增屬性</el-button> <el-table :data="paramsData" border stripe> <el-table-column label="明細" type="expand"> <template slot-scope="scope"> <!-- 迴圈渲染tag元件 引數明細 --> <el-tag :key="i" v-for="(item, i) in scope.row.attr_vals" closable @close="handleClose(scope.row, i)"> {{ item }} </el-tag> <!-- 輸入的文字方塊 --> <el-input class="input-new-tag" v-if="scope.row.inputVisible" v-model="scope.row.inputValue" ref="saveTagInput" size="small" @keyup.enter.native="handleInputConfirm(scope.row)" @blur="handleInputConfirm(scope.row)" > </el-input> <!-- 新增的按鈕i --> <el-button v-else class="button-new-tag" size="small" @click="showInput(scope.row)">+ New Tag</el-button> </template> </el-table-column> <el-table-column label="序號" type="index"></el-table-column> <el-table-column label="屬性名稱" prop="attr_name"></el-table-column> <el-table-column label="操作"> <template slot-scope="scope"> <el-button type="primary" icon="el-icon-edit" size="mini" @click="showEditDialog(scope.row.attr_id)">編輯</el-button> <el-button type="warning" icon="el-icon-delete" size="mini" @click="removeParams(scope.row.attr_id)">刪除</el-button> </template> </el-table-column> </el-table> </el-tab-pane> </el-tabs> </el-card> <!-- 新增對話方塊--> <el-dialog :title="'新增' + title" :visible.sync="addDialogVisible" width="50%" @close="addDialogClosed"> <el-form :model="addForm" :rules="addFormRules" ref="addFormRef" label-width="100px"> <el-form-item :label="title" prop="attr_name"> <el-input v-model="addForm.attr_name"></el-input> </el-form-item> </el-form> <span slot="footer" class="dialog-footer"> <el-button @click="addDialogVisible = false">取 消</el-button> <el-button type="primary" @click="addParams()">確 定</el-button> </span> </el-dialog> <!-- 修改對話方塊--> <el-dialog :title="'修改' + title" :visible.sync="editDialogVisible" width="50%" @close="editDialogClosed"> <el-form :model="editForm" :rules="editFormRules" ref="editFormRef" label-width="100px"> <el-form-item :label="title" prop="attr_name"> <el-input v-model="editForm.attr_name"></el-input> </el-form-item> </el-form> <span slot="footer" class="dialog-footer"> <el-button @click="editDialogVisible = false">取 消</el-button> <el-button type="primary" @click="editParams()">確 定</el-button> </span> </el-dialog> </div> </template> <script> export default { data() { return { // 分類列表 cateList: [], // 級聯選擇器的屬性設定 cascaderProps: { label: 'cat_name', value: 'cat_id', children: 'children', expandTrigger: 'hover', }, //級聯選擇器選中的id陣列 selectdKeys: [], // 啟用第幾個分頁 activeName: 'many', // 獲取引數屬性資料 paramsData: [], // 新增引數對話方塊 addDialogVisible: false, addForm: {}, addFormRules: { attr_name: [{ required: true, message: '請輸入引數名稱', trigger: 'blur' }], }, // 編輯引數對話方塊 editDialogVisible: false, editForm: {}, editFormRules: { attr_name: [{ required: true, message: '請輸入引數名稱', trigger: 'blur' }], }, } }, created() { this.getCateList() }, methods: { // 獲取所有分類列表資料(因為沒有傳遞具體引數) async getCateList() { const { data: res } = await this.$http.get('categories') if (res.meta.status !== 200) { return this.$message.error('獲取分類失敗') } this.cateList = res.data }, // 監聽級聯選擇器的改變事件 handleChange() { this.getParamsData() }, // 監聽分頁的點選事件 handleClick() { this.getParamsData() }, // 獲取分類引數的資料 async getParamsData() { // 判斷是否選中三級分類,如果未選中則重新選中 if (this.selectdKeys.length !== 3) { this.selectdKeys = [] this.paramsData = [] return } // 根據所選分類獲取動態引數或者靜態屬性 三級分類的id const { data: res } = await this.$http.get(`categories/${this.cateId}/attributes`, { params: { sel: this.activeName, }, }) if (res.meta.status !== 200) { return this.$message.error('獲取參數列失敗') } //對引數的明細進行處理:按空格拆分為陣列 res.data.forEach((item) => { item.attr_vals = item.attr_vals ? item.attr_vals.split(',') : [] item.inputVisible = false //控制文字方塊的顯示和隱藏 }) console.log(res.data) this.paramsData = res.data }, // 監聽新增對話方塊的關閉事件 addDialogClosed() { this.$refs.addFormRef.resetFields() }, // 新增引數 addParams() { this.$refs.addFormRef.validate(async (valid) => { if (!valid) { return } const { data: res } = await this.$http.post(`categories/${this.cateId}/attributes`, { attr_name: this.addForm.attr_name, attr_sel: this.activeName, }) if (res.meta.status !== 201) { return this.$message.error('新增引數失敗') } this.addDialogVisible = false this.getParamsData() this.$message.success('新增引數成功') }) }, // 刪除引數 removeParams(id) { this.$confirm('確定要刪除該引數嗎?', '提示', { confirmButtonText: '確定', cancelButtonText: '取消', type: 'warning', }) .then(async () => { const { data: res } = await this.$http.delete(`categories/${this.cateId}/attributes/${id}`) if (res.meta.status !== 200) { return this.$message.error('刪除引數失敗') } this.getParamsData() this.$message.success('刪除引數成功') }) .catch(() => { this.$message({ type: 'info', message: '已取消刪除', }) }) }, // 顯示編輯對話方塊 async showEditDialog(id) { const { data: res } = await this.$http.get(`categories/${this.cateId}/attributes/${id}`, { params: { attr_sel: this.activeName, }, }) if (res.meta.status !== 200) { return this.$message.error('查詢引數失敗') } this.editForm = res.data this.editDialogVisible = true }, // 監聽修改對話方塊的關閉事件 editDialogClosed() { this.$refs.editFormRef.resetFields() }, // 修改引數 editParams() { this.$refs.editFormRef.validate(async (valid) => { if (!valid) { return } const { data: res } = await this.$http.put(`categories/${this.cateId}/attributes/${this.editForm.attr_id}`, { attr_name: this.editForm.attr_name, attr_sel: this.activeName, attr_vals: this.editForm.attr_vals, }) if (res.meta.status !== 200) { return this.$message.error('修改引數名稱失敗') } this.editDialogVisible = false this.getParamsData() this.$message.success('修改引數名稱成功!') }) }, // 監視tag標籤的關閉事件,即刪除對應的引數明細項 handleClose() { row.attr_vals.splice(i, 1) // 更新引數的明細 this.updateParamsDetail(row) }, // tag 顯示文字輸入框 showInput(row) { row.inputVisible = true this.$nextTick((_) => { // 點選新增按鈕後 輸入框獲取焦點 ref = saveTagInput this.$refs.saveTagInput.$refs.input.focus() }) }, // 文字方塊失去焦點或按下enter 按鍵 handleInputConfirm(row) { if (row.inputValue.trim()) { row.attr_vals.push(row.inputValue.trim()) // 更新引數的明細 this.updateParamsDetail(row) } row.inputVisible = false // 執行完一次(enter 或者失去焦點) 清空,這樣就不會執行上面的if row.inputValue = '' }, // 更新引數的明細 async updateParamsDetail(row) { const { data: res } = await this.$http.put(`categories/${this.cateId}/attributes/${row.attr_id}`, { attr_name: row.attr_name, attr_sel: row.attr_sel, attr_vals: row.attr_vals.join(','), }) if (res.meta.status !== 200) { return this.$message.error('更新引數明細失敗') } this.$message.success('更新引數明細成功!') }, }, computed: { // 當前選中的三級分類的id cateId() { return this.selectdKeys.length === 3 ? this.selectdKeys[2] : null }, // 是否禁用按鈕 btnDisabled() { return this.selectdKeys.length === 3 ? false : true }, // 新增對話方塊標題 title() { return this.activeName === 'many' ? '動態引數' : '靜態屬性' }, }, } </script> <style lang="less" scoped> .cat_select { margin: 15px 0; } .el-tag { margin: 10px; } .input-new-tag { width: 120px; } </style>
本篇文章就到這裡了,希望能夠給你帶來幫助,也希望您能夠多多關注it145.com的更多內容!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45