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
| <template>
| <div>
| <el-button @click="HandlerRend"></el-button>
| <el-table :data="data">
| <el-table-column
| fixed
| type="selection"
| width="55">
| </el-table-column>
| <el-table-column
| fixed
| label="序号"
| type="index"
| width="55">
| </el-table-column>
| </el-table>
| </div>
| </template>
|
| <script>
| import {businese} from '@/api/work/businese'
| export default {
| name: "BusinessWork",
| props:['ids','templateId'],
| data() {
| return {
| BuinessOids:[],
| data:[
| {
| label:'app'
| }
| ]
| }
| },
| watch:{
| ids:{
| handler(newval,oldval){
| this.BuinessOids=newval;
| this.BuinseseRend()
| console.log(newval)
| console.log(this.BuinessOids)
| },
| deep:true
| }
| },
| created() {
| },
| mounted() {
| },
| methods:{
| HandlerRend(){
| },
| BuinseseRend(){
| businese({
| btmType:'wupin',
| 'conditionMap[oid]':this.BuinessOids.toString()
| }).then(res=>{
| console.log(res)
| })
| }
| }
| }
| </script>
|
| <style scoped>
|
| </style>
|
|