1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
| <template>
| <el-bus-crud v-bind="tableConfig"></el-bus-crud>
| </template>
|
| <script>
| export default {
| data() {
| return {
| tableConfig: {
| url: 'flower/api/supplier/type/page',
| newUrl: 'flower/api/supplier/type/add',
| editUrl: 'flower/api/supplier/type/update',
| deleteUrl: 'flower/api/supplier/type/delete',
| deleteOnPath: true,
| deleteMethodType: 'post',
| columns: [
| { label: '供应商类型', prop: 'name' },
| { label: '类型说明', prop: 'description' },
| ],
| searchForm: [
| {
| type: 'row',
| items: [{ label: '供应商类型', id: 'name', type: 'input' }],
| },
| ],
| form: [
| {
| label: '供应商类型:',
| id: 'name',
| type: 'input',
| rules: {
| required: true,
| message: '请输入供应商类型',
| trigger: 'blur',
| },
| },
| {
| label: '类型说明:',
| id: 'description',
| type: 'input',
| el: {
| type: 'textarea',
| rows: 6,
| },
| },
| ],
| },
| }
| },
| head() {
| return {
| title: '供应商类型管理',
| }
| },
| }
| </script>
|
|