vue 纯前端 增删改查(排序)(返回顶部)

瞎做 记录 还有很多不好的地方


微信截图_20211201110751.png

初始数据data.js
数据格式 [ { arr: [ {} ] } ] 数组对象数组对象格式

const datalist = [
    {
        id: 1,
        arr: [
            {
                text: "七里香",
            },
            {
                text: "一路向北",
            },
            {
                text: "晴天",
            },
            {
                text: "花海",
            },
            {
                text: "等你下课",
            },
        ],
    },
    {
        id: 1,
        arr: [
            {
                text: "曹操",
            },
            {
                text: "关键词",
            },
            {
                text: "江南",
            },
            {
                text: "修炼爱情",
            },
        ],
    },
    {
        id: 1,
        arr: [
            {
                a: 1,
                text: "光年之外",
            },
            {
                text: "泡沫",
            },
            {
                text: "喜欢你",
            },
            {
                text: "桃花诺"
            },
        ],
    },
];

export {
    datalist
}

html

<template>
  <div class="content">
    <!-- <inputs @click="gogo()"></inputs> -->
    <div class="add">
      <button @click="add()">添加音乐数据</button>
    </div>
    <div v-for="(item, index) in datalist" :key="index" class="big">
      <div class="addbtn" @click="additem(index + 1, item.arr)">+</div>
      <div class="downbtn" @click="downitem(index)">-</div>
      <h2>第{{ index + 1 }}组音乐数据</h2>
      <div v-for="(item1, index1) in item.arr" :key="index1" class="big_con">
        <input
          class="sort"
          v-model="item1.sorts"
          @blur="blurs(item, index, item1, index1)"
        />
        <span v-show="item1.flag"> {{ item1.text }}</span>
        <input class="texts" v-show="!item1.flag" v-model="item1.text" />
        <div>
          <button class="del" @click="del(index, index1)">删除</button>
          <button v-show="item1.flag" class="edit" @click="edit(index, index1)">
            编辑
          </button>
          <button
            class="save"
            v-show="!item1.flag"
            @click="save(index, index1)"
          >
            完成
          </button>
        </div>
      </div>
    </div>
    <div class="back" v-show="backshow" @click="backtop()">返回</div>
  </div>
</template>

script


<script>
import { datalist } from "./data.js";
export default {
  data() {
    return {
      datalist,
      show: false,
      indnum: "",
      backshow: false,
    };
  },
  mounted() {
    window.addEventListener("scroll", this.scrollToTop);
  },
  destroyed() {
    window.removeEventListener("scroll", this.scrollToTop);
  },
  created() {
    // 遍历数组push单个元素
    this.datalist.map((it) => {
      it.arr.map((item, index) => {
        it.arr[index].sorts = index + 1;
        it.arr[index].flag = true;
        return;
      });
    });
  },
  methods: {
    scrollToTop() {
      var scrollTop =
        window.pageYOffset ||
        document.documentElement.scrollTop ||
        document.body.scrollTop;
      scrollTop > 50 && (this.backshow = true);
      scrollTop <= 50 && (this.backshow = false);
    },
    // 返回顶部
    backtop() {
      document.body.scrollTop = document.documentElement.scrollTop = 0;
    },
    // 焦点失去进行排序
    blurs(item, index, item1, index1) {
      this.datalist.map((mapit, mapin) => {
        if (index == mapin) {
          mapit.arr.sort((q, w) => {
            return q.sorts - w.sorts;
          });
        }
      });
    },
    // 删除某一条
    del(ind, ind1) {
      this.datalist.map((item, index) => {
        if (ind == index) {
          item.arr.map((item1, index1) => {
            if (ind1 == index1) {
              item.arr.splice(ind1, 1);
            }
          });
          return;
        }
      });
    },
    caozuo(ind, ind1, flag) {
      this.datalist.forEach((item, index) => {
        if (ind == index) {
          item.arr.forEach((item1, index1) => {
            if (ind1 == index1) {
              if (!flag) {
                item1.flag = false;
              } else {
                item1.flag = true;
              }
            }
          });
        }
      });
      this.$forceUpdate();
    },
    edit(ind, ind1) {
      this.caozuo(ind, ind1, false);
    },
    save(ind, ind1) {
      this.caozuo(ind, ind1, true);
    },
    add() {
      this.datalist.push({
        arr: [],
      });
    },
    additem(index, arr) {
      arr.push({ sorts: arr.length + 1 });
    },
    downitem(index) {
      this.datalist.splice(index, 1);
    },
    gogo() {
      this.$router.push({ path: "/m/link" });
    },
  },
};
</script>

css

<style lang="less">
.back {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  position: fixed;
  left: 0;
  bottom: 0;
  text-align: center;
  line-height: 50px;
}
.aa {
  margin-top: 20px;
}
.text {
  margin: 0 auto;
  text-align: center;
  margin-top: 20px;
  line-height: 30px;
}
.content {
  // 解决ios滑动不流畅
  -webkit-overflow-scrolling: touch;
  transition-duration: 300ms;
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
  padding-bottom: 50px;
  .add {
    width: 90%;
    margin: 0 auto;
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    > span {
      line-height: 35px;
      margin-left: 20px;
    }
    > button {
      width: 100px;
      height: 35px;
      color: #fff;
      background: royalblue;
      outline: none;
      border: 0;
      border-radius: 10px;
    }
  }
  .big {
    width: 85%;
    margin: 0 auto;
    border: 3px solid #ccc;
    border-radius: 8px;
    margin-top: 10px;
    padding: 20px 10px;

    > div {
      border-radius: 5px;
    }
    .addbtn {
      float: right;
      width: 30px;
      height: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 30px;
      background: #ccc;
      margin-left: 8px;
    }
    .downbtn {
      float: right;
      width: 30px;
      height: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 30px;
      color: #fff;
      background: rgb(241, 46, 46);
    }
    .big_con {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 50px;
      > input {
        border-radius: 8px;
        border: 0;
        outline: none;
        background: rgb(209, 208, 208);
        color: #333;
        height: 20px;
        line-height: 20px;
      }
      > .sort {
        width: 60px;
        text-align: center;
      }
      > .texts {
        width: 100px;
        text-align: center;
      }
      button {
        color: #fff;
        outline: none;
        padding: 3px 5px;
        border-radius: 5px;
        border: 0;
      }
      .del {
        background: rgb(241, 46, 46);
      }
      .edit {
        background: royalblue;
      }
      .save {
        background: rgb(2, 189, 2);
      }
    }
  }
}
.sel {
  outline: none;
  border: 0;
  width: 200px;
  height: 50px;
}
</style>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,386评论 6 479
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,939评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,851评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,953评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,971评论 5 369
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,784评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,126评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,765评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,148评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,744评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,858评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,479评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,080评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,053评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,278评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,245评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,590评论 2 343

推荐阅读更多精彩内容