|
|
|
@ -9,52 +9,52 @@ const doSearch = (_formData: { page: number; limit: number }, onSuccess: Functio |
|
|
|
data: { |
|
|
|
data: [ |
|
|
|
{ |
|
|
|
img: "/static/img/grxx.png", |
|
|
|
name: "陈志远", |
|
|
|
class: "现任财务总监", |
|
|
|
img: '/static/img/grxx.png', |
|
|
|
name: '陈志远', |
|
|
|
class: '现任财务总监' |
|
|
|
}, |
|
|
|
{ |
|
|
|
img: "/static/img/grxx.png", |
|
|
|
name: "陈志远", |
|
|
|
class: "现任财务总监", |
|
|
|
img: '/static/img/grxx.png', |
|
|
|
name: '陈志远', |
|
|
|
class: '现任财务总监' |
|
|
|
}, |
|
|
|
{ |
|
|
|
img: "/static/img/grxx.png", |
|
|
|
name: "陈志远", |
|
|
|
class: "现任财务总监", |
|
|
|
img: '/static/img/grxx.png', |
|
|
|
name: '陈志远', |
|
|
|
class: '现任财务总监' |
|
|
|
}, |
|
|
|
{ |
|
|
|
img: "/static/img/grxx.png", |
|
|
|
name: "陈志远", |
|
|
|
class: "现任财务总监", |
|
|
|
img: '/static/img/grxx.png', |
|
|
|
name: '陈志远', |
|
|
|
class: '现任财务总监' |
|
|
|
}, |
|
|
|
{ |
|
|
|
img: "/static/img/grxx.png", |
|
|
|
name: "陈志远", |
|
|
|
class: "现任财务总监", |
|
|
|
}, |
|
|
|
img: '/static/img/grxx.png', |
|
|
|
name: '陈志远', |
|
|
|
class: '现任财务总监' |
|
|
|
} |
|
|
|
], |
|
|
|
total: 0, |
|
|
|
}, |
|
|
|
}); |
|
|
|
}; |
|
|
|
total: 0 |
|
|
|
} |
|
|
|
}) |
|
|
|
} |
|
|
|
|
|
|
|
const selectIndex = ref(0); |
|
|
|
const selectIndex = ref(0) |
|
|
|
const buttlist = ref([ |
|
|
|
{ |
|
|
|
butname: "同意", |
|
|
|
butname: '同意' |
|
|
|
}, |
|
|
|
{ |
|
|
|
butname: "反对", |
|
|
|
butname: '反对' |
|
|
|
}, |
|
|
|
{ |
|
|
|
butname: "弃权", |
|
|
|
}, |
|
|
|
]); |
|
|
|
butname: '弃权' |
|
|
|
} |
|
|
|
]) |
|
|
|
|
|
|
|
const selectBut = (index: number) => { |
|
|
|
selectIndex.value = index; |
|
|
|
}; |
|
|
|
selectIndex.value = index |
|
|
|
} |
|
|
|
</script> |
|
|
|
|
|
|
|
<template> |
|
|
|
@ -81,7 +81,13 @@ const selectBut = (index: number) => { |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="bottomp"> |
|
|
|
<view class="minbut" v-for="(item, index) in buttlist" :key="'minbut' + index" @click="selectBut(index)" :class="{ active: selectIndex === index }"> |
|
|
|
<view |
|
|
|
class="minbut" |
|
|
|
v-for="(item, index) in buttlist" |
|
|
|
:key="'minbut' + index" |
|
|
|
@click="selectBut(index)" |
|
|
|
:class="{ active: selectIndex === index }" |
|
|
|
> |
|
|
|
{{ item.butname }} |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|