前台我的申请修改
This commit is contained in:
parent
1e6707711e
commit
25ae58a82b
|
@ -346,6 +346,7 @@ export function getZwyBusinessList(params) {
|
||||||
params,
|
params,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
// 政务云资源列详情
|
// 政务云资源列详情
|
||||||
export function getZwyBusinessInfoById(params) {
|
export function getZwyBusinessInfoById(params) {
|
||||||
return request({
|
return request({
|
||||||
|
@ -354,7 +355,22 @@ export function getZwyBusinessInfoById(params) {
|
||||||
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) {
|
export function treminders(data) {
|
||||||
return request({
|
return request({
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 1.7 KiB |
Binary file not shown.
After Width: | Height: | Size: 1.6 KiB |
Binary file not shown.
After Width: | Height: | Size: 1.6 KiB |
Binary file not shown.
After Width: | Height: | Size: 1.8 KiB |
|
@ -30,16 +30,20 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import { onMounted, defineProps, ref } from 'vue'
|
import { onMounted, defineProps, ref } from 'vue'
|
||||||
import {
|
import {
|
||||||
getZwyBusinessInfoById
|
getZwyBusinessInfoById,
|
||||||
|
getZwyVideoInfoById
|
||||||
} from '@/api/personalCenter'
|
} from '@/api/personalCenter'
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
BSNUM: { type: String, default: '' },
|
BSNUM: { type: String, default: '' },
|
||||||
baseInfo: { type: Object, default: null },
|
baseInfo: { type: Object, default: null },
|
||||||
|
chooseTab: { type: Number, default: 0 },
|
||||||
|
|
||||||
})
|
})
|
||||||
const BSNUM = ref('')
|
const BSNUM = ref('')
|
||||||
|
const chooseTab = ref(0)
|
||||||
const baseInfo = ref({})
|
const baseInfo = ref({})
|
||||||
BSNUM.value = props.BSNUM
|
BSNUM.value = props.BSNUM
|
||||||
|
chooseTab.value=props.chooseTab
|
||||||
baseInfo.value = props.baseInfo
|
baseInfo.value = props.baseInfo
|
||||||
const columns = ref([
|
const columns = ref([
|
||||||
{
|
{
|
||||||
|
@ -57,17 +61,27 @@ const xVideoList = ref([
|
||||||
|
|
||||||
])
|
])
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
|
|
||||||
const params={
|
const params={
|
||||||
"id":BSNUM.value
|
"id":BSNUM.value
|
||||||
}
|
}
|
||||||
getZwyBusinessInfoById(params).then(
|
if(chooseTab.value===2){
|
||||||
|
getZwyBusinessInfoById(params).then(
|
||||||
(res) => {
|
(res) => {
|
||||||
xVideoList.value = res.data.data
|
xVideoList.value = res.data.data
|
||||||
num.value = []
|
|
||||||
total.value = res.data.data.total
|
// total.value = res.data.data.length
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
}else if(chooseTab.value===3){
|
||||||
|
getZwyVideoInfoById(params).then(
|
||||||
|
(res) => {
|
||||||
|
xVideoList.value = res.data.data
|
||||||
|
|
||||||
|
// total.value = res.data.data.length
|
||||||
|
}
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue