소스 검색

【程序目录】更新v5.2.1版本

evoxwht 2 년 전
부모
커밋
2d1eb45987
1개의 변경된 파일0개의 추가작업 그리고 92개의 파일을 삭제
  1. 0 92
      template/admin/src/pages/order/orderList/orderlistDetails.vue

+ 0 - 92
template/admin/src/pages/order/orderList/orderlistDetails.vue

@@ -1,92 +0,0 @@
-<template>
-  <div>
-    <el-card :bordered="false" shadow="never" :body-style="{padding:0}">
-      <table-form @getList="getData" />
-    </el-card>
-    <el-card :bordered="false" shadow="never" class="mt16" :body-style="{ padding: '0 20px 20px' }">
-      <table-list ref="table" @on-changeCards="getCards" @changeGetTabs="changeGetTabs" />
-    </el-card>
-  </div>
-</template>
-
-<script>
-import cardsData from '../../../components/cards/cards';
-import tableForm from './components/tableFrom';
-import tableList from './components/tableList';
-export default {
-  name: 'orderListDetails',
-  components: {
-    tableForm,
-    tableList,
-    cardsData,
-  },
-  data() {
-    return {
-      currentTab: '',
-      cardLists: [],
-    };
-  },
-  methods: {
-    changeGetTabs() {
-      this.$parent.getTabs();
-    },
-    // 列表数据
-    getData(res) {
-      this.$refs.table.getList(res);
-    },
-    // 模块数据
-    getCards(list) {
-      this.cardLists = list;
-    },
-    handleResize() {
-      this.$refs.ellipsis.forEach((item) => item.init());
-    },
-  },
-  mounted() {},
-};
-</script>
-
-<style scoped lang="stylus">
-.card_cent ::v-deep .ivu-card-body {
-  width: 100%;
-  height: 100%;
-}
-
-.card_box {
-  width: 100%;
-  height: 100%;
-  display: flex;
-  align-items: center;
-  justify-content: center;
-  padding: 25px;
-  box-sizing: border-box;
-  border-radius: 4px;
-
-  .card_box_img {
-    width: 48px;
-    height: 48px;
-    border-radius: 50%;
-    overflow: hidden;
-    margin-right: 20px;
-
-    img {
-      width: 100%;
-      height: 100%;
-    }
-  }
-
-  .card_box_txt {
-    .sp1 {
-      display: block;
-      color: #252631;
-      font-size: 24px;
-    }
-
-    .sp2 {
-      display: block;
-      color: #98A9BC;
-      font-size: 12px;
-    }
-  }
-}
-</style>