| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281 |
- <template>
- <div>
- <div class="car_series">
- <div class="count">
- <button @click="showModal">新增类别</button>
- <Count :sum="sum"></Count>
- </div>
- <div class="table">
- <Table
- :tableData="tableData"
- @edit="edit"
- @delet_data="deleteData"
- :pageSize="sum"
- ></Table>
- </div>
- <div class="page" v-if="sum > 0">
- <Tablepage
- :totalPage="totalPage"
- :currentPage="currentPage"
- @change_page="changePage"
- @jump_page="jumpPage"
- ></Tablepage>
- </div>
- <div class="modal" v-if="modalFlag">
- <Modal
- :modalFlag="modalFlag"
- @submit="submit"
- @hide_modal="showModal"
- ></Modal>
- </div>
- </div>
- </div>
- </template>
- <script>
- import Count from "../../components/Count";
- import Tablepage from "../../components/TablePage";
- import Table from "./components/ContentCategory2/Table";
- import Modal from "./components/ContentCategory2/Modal";
- export default {
- components: {
- Count,
- Table,
- Tablepage,
- Modal,
- },
- data() {
- return {
- sum: 0, // 一共有多少条数据
- pageSize: 20, // 每页展示的数据
- currentPage: 1,
- tableData: [],
- modalFlag: false, // 控制模态框展示
- dictList: [],
- };
- },
- computed: {
- // 表格总页数
- totalPage() {
- return Math.ceil(this.sum / this.pageSize);
- },
- // 获取路由参数
- queryTag() {
- console.log(111, this.$route.query);
- return this.$route.query && this.$route.query.tag ? 0 : 1;
- },
- },
- methods: {
- // 获取某一页面的数据,展示在表格
- changePage: function (page) {
- this.currentPage = page;
- this.getDateList(this.currentPage, this.pageSize);
- },
- // 点击上一页,下一页,首页,尾页
- jumpPage: function (item) {
- switch (item) {
- case 1:
- this.currentPage = 1;
- break;
- case 2:
- this.currentPage = this.currentPage - 1;
- break;
- case 3:
- this.currentPage = this.currentPage + 1;
- break;
- case 4:
- this.currentPage = this.totalPage;
- break;
- }
- this.getDateList(this.currentPage, this.pageSize);
- },
- // 展示、隐藏模态框
- showModal: function () {
- this.modalFlag = !this.modalFlag;
- },
- // 点击编辑
- edit(index, newName) {
- this.updataDict(newName, index).then(() => {
- this.getDateList(this.currentPage, this.pageSize);
- });
- },
- // 点击删除
- deleteData(index) {
- this.deleteDict(index).then(() => {
- this.currentPage = Math.ceil((this.sum - 1) / this.pageSize);
- this.getDateList(this.currentPage, this.pageSize);
- });
- },
- // 新增分类模态框 保存
- submit: function (name) {
- this.addList(name).then(() => {
- this.currentPage = Math.ceil((this.sum + 1) / this.pageSize);
- this.getDateList(this.currentPage, this.pageSize);
- });
- this.modalFlag = false;
- },
- // 获取内容分类、媒体平台、常用参数接口的标识,再调接口时需要用到
- selectSysDataDictList: function () {
- return new Promise((resolve, reject) => {
- this.$http({
- method: "post",
- url: "/sys/dataDict/selectSysDataDictList",
- data: {},
- })
- .then((res) => {
- if (res.data && res.data.code === 200) {
- this.dictList = res.data.data;
- resolve();
- } else {
- console.log(res);
- reject();
- }
- })
- .catch((err) => {
- console.log(err);
- reject();
- });
- });
- },
- // 获取列表数据 接口
- getDateList: function (page, rows) {
- this.$http({
- method: "post",
- url: "/sys/dataDict/selectSysDataDictPage",
- data: {
- dictCode: this.dictList[2]["dictCode"],
- parentId: this.dictList[2]["id"],
- page,
- rows,
- },
- })
- .then((res) => {
- if (res.data && res.data.code === 200) {
- this.tableData = res.data.data;
- this.sum = res.data.count;
- console.log(res);
- } else {
- console.log(res);
- }
- })
- .catch((err) => {
- console.log(err);
- });
- },
- // 新增 接口
- addList: function (name) {
- return new Promise((resolve, reject) => {
- this.$http({
- url: "/sys/dataDict/addSysDataDictInfo",
- method: "post",
- data: {
- dictName: name,
- parentId: this.dictList[2]["id"],
- dictCode: this.dictList[2]["dictCode"],
- },
- })
- .then((res) => {
- if (res.data && res.data.code === 200) {
- console.log(res);
- resolve();
- } else {
- alert(res.data.message);
- console.log(res);
- }
- })
- .catch((err) => {
- alert("新增失败,请重试");
- reject(err);
- });
- });
- },
- // 编辑 接口
- updataDict: function (newName, index) {
- return new Promise((resolve, reject) => {
- this.$http({
- url: "/sys/dataDict/updateSysDataDictInfo",
- method: "post",
- data: {
- dictName: newName,
- id: this.tableData[index]["id"],
- parentId: this.dictList[2]["id"],
- dictCode: this.dictList[2]["dictCode"],
- },
- })
- .then((res) => {
- if (res.data && res.data.code === 200) {
- console.log(res);
- resolve();
- } else {
- alert("编辑失败,请重试");
- console.log(res);
- }
- })
- .catch((err) => {
- alert("编辑失败,请重试");
- reject(err);
- });
- });
- },
- // 删除 接口
- deleteDict: function (index) {
- return new Promise((resolve, reject) => {
- this.$http({
- url: "/sys/dataDict/deleteSysDataDictInfo",
- method: "post",
- data: {
- id: this.tableData[index]["id"],
- parentId: this.dictList[2]["id"],
- dictCode: this.dictList[2]["dictCode"],
- },
- })
- .then((res) => {
- if (res.data && res.data.code === 200) {
- console.log(res);
- resolve();
- } else {
- alert("删除失败,请重试");
- console.log(res);
- }
- })
- .catch((err) => {
- alert("删除失败,请重试");
- reject(err);
- });
- });
- },
- },
- created() {
- this.selectSysDataDictList()
- .then(() => {
- this.getDateList(1, this.pageSize);
- console.log(this.dictList);
- })
- .catch((err) => {
- console.log(err);
- });
- },
- };
- </script>
- <style scoped lang="less">
- .car_series {
- .count {
- height: 40px;
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- button {
- width: 86px;
- height: 30px;
- position: relative;
- bottom: -5px;
- margin: 0;
- border-radius: 2px;
- }
- }
- }
- </style>
|