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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
| <template>
| <!--流程模板定义-->
| <basic-container>
| <div>
| 流程分类:
| <el-select v-model="tempType" :clearable="true" placeholder="请选择" size="small"
| style="width: 300px;margin-right: 20px;"
| @change="tempTypeChange">
| <el-option
| v-for="item in tempTypeData"
| :key="item.oid"
| :label="item.text"
| :value="item.attributes.name">
| </el-option>
| </el-select>
| 流程模板名称:
| <el-input size="small" v-model="tempName" style="width: 300px;margin-right: 10px;"></el-input>
| <el-button icon="el-icon-search" plain size="small" style="margin-right: 40px;" type="primary"
| @click="searchValue">
| 查询
| </el-button>
| </div>
| </basic-container>
| </template>
|
| <script>
| import {mapGetters} from "vuex";
| import basicOption from "@/util/basic-option";
|
| export default {
| name: "index",
| data(){
| return {
| tempType:'',
| tempName:'',
| tempTypeData:[],
| form:{},
| tableLoading: false,
| tableData: [],
| currentRow:null,
| selectionList: [],
| }
| },
| computed: {
| ids() {
| let ids = [];
| this.selectionList.forEach(ele => {
| ids.push(ele.id);
| });
| return ids.join(",");
| },
| ...mapGetters(["permission"]),
| permissionList() {
| return {
| addBtn: this.vaildData(this.permission[this.$route.query.id].ADD, false),
| delBtn: this.vaildData(this.permission[this.$route.query.id].DELETE, false),
| editBtn: this.vaildData(this.permission[this.$route.query.id].EDIT, false),
| };
| },
| option(){
| return {
| ...basicOption,
| addBtn:false,
| editBtn:false,
| delBtn:false,
| calcHeight: -60,
| align:'left',
| headerAlign:'center',
| menuWidth:160,
| dialogMenuPosition: 'right',
| dialogWidth:600,
| column: [
| {
| label: '流程模板名称',
| prop: 'name'
| },{
| label: '版本',
| prop: 'desc'
| },{
| label: '状态',
| prop: 'status'
| }]
| }
| }
| },
| methods:{
| getTableList(){
|
| },
| tempTypeChange(val){
| this.getTableList();
| }
| }
| }
| </script>
|
| <style scoped>
|
| </style>
|
|