|
|
@@ -0,0 +1,41 @@
|
|
|
+<template>
|
|
|
+ <div>
|
|
|
+ <div>
|
|
|
+ <wrapper
|
|
|
+ fill
|
|
|
+ margin
|
|
|
+ padding
|
|
|
+ background
|
|
|
+ >
|
|
|
+ <schema-table
|
|
|
+ ref="table"
|
|
|
+ :schema="schema"
|
|
|
+ />
|
|
|
+ </wrapper>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import { getCooperations } from './api'
|
|
|
+
|
|
|
+export default {
|
|
|
+ name: 'Cooperations',
|
|
|
+ data () {
|
|
|
+ return {
|
|
|
+ schema: {
|
|
|
+ condition: { name: '' },
|
|
|
+ list: getCooperations,
|
|
|
+ cols: [
|
|
|
+ { type: 'refresh' },
|
|
|
+ { prop: 'name', label: '姓名' },
|
|
|
+ { prop: 'phone', label: '手机' },
|
|
|
+ { prop: 'email', label: '邮箱' },
|
|
|
+ { prop: 'company', label: '公司' },
|
|
|
+ { prop: 'summary', label: '需求' }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|