|
@@ -8,7 +8,7 @@ export function noticeWebsitList(data) {
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
|
|
-export function noticeWebsitListExport(data) {
|
|
|
|
|
|
+export function noticeWebsitListExport(data, name) {
|
|
return postBlob({
|
|
return postBlob({
|
|
url: '/noticeWebsit/list/export',
|
|
url: '/noticeWebsit/list/export',
|
|
data,
|
|
data,
|
|
@@ -56,10 +56,18 @@ export function noticeWebsitListWebsit(data) {
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
|
|
-export function noticeWebsitListWebsitExport(data) {
|
|
|
|
|
|
+export function noticeWebsitListWebsitExport(data, name) {
|
|
return postBlob({
|
|
return postBlob({
|
|
url: '/noticeWebsit/listWebsit/export',
|
|
url: '/noticeWebsit/listWebsit/export',
|
|
data,
|
|
data,
|
|
name
|
|
name
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+export function noticeWebsitMarkRead(params) {
|
|
|
|
+ return request({
|
|
|
|
+ url: `/noticeWebsit/mark/read`,
|
|
|
|
+ method: 'post',
|
|
|
|
+ params
|
|
|
|
+ })
|
|
|
|
+}
|