Compare commits
No commits in common. "338040370bef7c1cc680894d5f008148c9210fff" and "44d96c81543c85e2aa4494fc47aef57eb508f2e2" have entirely different histories.
338040370b
...
44d96c8154
|
@ -346,7 +346,6 @@ export function getZwyBusinessList(params) {
|
|||
params,
|
||||
})
|
||||
}
|
||||
|
||||
// 政务云资源列详情
|
||||
export function getZwyBusinessInfoById(params) {
|
||||
return request({
|
||||
|
@ -355,22 +354,7 @@ export function getZwyBusinessInfoById(params) {
|
|||
params,
|
||||
})
|
||||
}
|
||||
// 视频列表
|
||||
export function getZwyVideoList(params) {
|
||||
return request({
|
||||
url: '/act/task/getZwyVideoList',
|
||||
method: 'get',
|
||||
params,
|
||||
})
|
||||
}
|
||||
// 视频详情
|
||||
export function getZwyVideoInfoById(params) {
|
||||
return request({
|
||||
url: '/act/task/getZwyVideoInfoById',
|
||||
method: 'get',
|
||||
params,
|
||||
})
|
||||
}
|
||||
|
||||
// 催办
|
||||
export function treminders(data) {
|
||||
return request({
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 1.7 KiB |
Binary file not shown.
Before Width: | Height: | Size: 1.6 KiB |
Binary file not shown.
Before Width: | Height: | Size: 1.6 KiB |
Binary file not shown.
Before Width: | Height: | Size: 1.8 KiB |
|
@ -30,20 +30,16 @@
|
|||
<script setup>
|
||||
import { onMounted, defineProps, ref } from 'vue'
|
||||
import {
|
||||
getZwyBusinessInfoById,
|
||||
getZwyVideoInfoById
|
||||
getZwyBusinessInfoById
|
||||
} from '@/api/personalCenter'
|
||||
const props = defineProps({
|
||||
BSNUM: { type: String, default: '' },
|
||||
baseInfo: { type: Object, default: null },
|
||||
chooseTab: { type: Number, default: 0 },
|
||||
|
||||
})
|
||||
const BSNUM = ref('')
|
||||
const chooseTab = ref(0)
|
||||
const baseInfo = ref({})
|
||||
BSNUM.value = props.BSNUM
|
||||
chooseTab.value=props.chooseTab
|
||||
baseInfo.value = props.baseInfo
|
||||
const columns = ref([
|
||||
{
|
||||
|
@ -61,27 +57,17 @@ const xVideoList = ref([
|
|||
|
||||
])
|
||||
onMounted(() => {
|
||||
|
||||
const params={
|
||||
"id":BSNUM.value
|
||||
}
|
||||
if(chooseTab.value===2){
|
||||
getZwyBusinessInfoById(params).then(
|
||||
getZwyBusinessInfoById(params).then(
|
||||
(res) => {
|
||||
xVideoList.value = res.data.data
|
||||
|
||||
// total.value = res.data.data.length
|
||||
num.value = []
|
||||
total.value = res.data.data.total
|
||||
}
|
||||
)
|
||||
}else if(chooseTab.value===3){
|
||||
getZwyVideoInfoById(params).then(
|
||||
(res) => {
|
||||
xVideoList.value = res.data.data
|
||||
|
||||
// total.value = res.data.data.length
|
||||
}
|
||||
)
|
||||
}
|
||||
|
||||
})
|
||||
|
||||
</script>
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue