swq 2 kuukautta sitten
vanhempi
commit
1ec375cbbb
1 muutettua tiedostoa jossa 49 lisäystä ja 0 poistoa
  1. 49 0
      src/views/enterprise/export_code.vue

+ 49 - 0
src/views/enterprise/export_code.vue

@@ -0,0 +1,49 @@
+<template>
+  <div style="margin-top: 5%;margin-left: 5%;width: 90%;">
+    <el-table
+      :data="tableData"
+      style="width: 100%">
+      <el-table-column
+        prop="date1"
+        label="01-01"
+        width="180">
+      </el-table-column>
+      <el-table-column
+        prop="date2"
+        label="01-02"
+        width="180">
+      </el-table-column>
+      <el-table-column
+        prop="date3"
+        label="01-03">
+      </el-table-column>
+    </el-table>
+  </div>
+
+</template>
+
+<script>
+export default {
+  data() {
+    return {
+      tableData: [{
+        date: '2016-05-02',
+        name: '王小虎',
+        address: '上海市普陀区金沙江路 1518 弄'
+      }, {
+        date: '2016-05-04',
+        name: '王小虎',
+        address: '上海市普陀区金沙江路 1517 弄'
+      }, {
+        date: '2016-05-01',
+        name: '王小虎',
+        address: '上海市普陀区金沙江路 1519 弄'
+      }, {
+        date: '2016-05-03',
+        name: '王小虎',
+        address: '上海市普陀区金沙江路 1516 弄'
+      }]
+    }
+  }
+}
+</script>