| 1234567891011121314151617181920212223242526272829303132333435 |
- import { http } from '@/utils/http';
- // 添加拼音校正
- export function toolAddPinyinCorrection(data) {
- return http.post(`${process.env.VUE_APP_EepServer}?MethodName=tool-AddPinyinCorrection`, data);
- }
- // 删除拼音校正
- export function toolDeletePinyinCorrection(data) {
- return http.post(`${process.env.VUE_APP_EepServer}?MethodName=tool-DeletePinyinCorrection`, data);
- }
- // 得到词性列表
- export function toolGetCXList() {
- return http.post(`${process.env.VUE_APP_EepServer}?MethodName=tool-GetCXList`);
- }
- // 复制拼音校正到指定库
- export function toolCopyPinyinCorrectionToStorage(data) {
- return http.post(`${process.env.VUE_APP_EepServer}?MethodName=tool-CopyPinyinCorrectionToStorage`,data);
- }
- // 编辑拼音校正
- export function toolUpdatePinyinCorrection(data) {
- return http.post(`${process.env.VUE_APP_EepServer}?MethodName=tool-UpdatePinyinCorrection`, data);
- }
- // 得到词的拼音校正列表
- export function toolGetWordPinyinCorrectionList(data) {
- return http.post(`${process.env.VUE_APP_EepServer}?MethodName=tool-GetWordPinyinCorrectionList`, data);
- }
|