hookehuyr

✨ feat(书籍详情页): 书籍查询方言列表接口新增ID过滤条件

1 /* 1 /*
2 * @Date: 2022-05-05 18:07:16 2 * @Date: 2022-05-05 18:07:16
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2022-06-18 05:35:23 4 + * @LastEditTime: 2022-06-20 11:01:53
5 * @FilePath: /tswj/src/composables/useVideoList.js 5 * @FilePath: /tswj/src/composables/useVideoList.js
6 * @Description: 文件描述 6 * @Description: 文件描述
7 */ 7 */
...@@ -47,7 +47,7 @@ export const useVideoList = () => { ...@@ -47,7 +47,7 @@ export const useVideoList = () => {
47 { text: '所有方言', val: '所有方言' }, 47 { text: '所有方言', val: '所有方言' },
48 ]) 48 ])
49 // 49 //
50 - axios.get('/srv/?a=localism_list') 50 + axios.get('/srv/?a=localism_list&book_id=' + $route.query.id)
51 .then(res => { 51 .then(res => {
52 if (res.data.code === 1) { 52 if (res.data.code === 1) {
53 let arr = []; 53 let arr = [];
......