123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- import request from '/@/utils/request';
- import axios from 'axios';
- export function fetchList(query?: Object) {
- return request({
- url: '/admin/i18n/page',
- method: 'get',
- params: query,
- });
- }
- export function addObj(obj?: Object) {
- return request({
- url: '/admin/i18n',
- method: 'post',
- data: obj,
- });
- }
- export function getObj(id?: string) {
- return request({
- url: '/admin/i18n/details/' + id,
- method: 'get',
- });
- }
- export function getObjDetails(obj?: object) {
- return request({
- url: '/admin/i18n/details',
- method: 'get',
- params: obj,
- });
- }
- export function delObj(ids?: object) {
- return request({
- url: '/admin/i18n',
- method: 'delete',
- data: ids,
- });
- }
- export function putObj(obj?: Object) {
- return request({
- url: '/admin/i18n',
- method: 'put',
- data: obj,
- });
- }
- export function refreshCache() {
- return request({
- url: '/admin/i18n/sync',
- method: 'put',
- });
- }
- /**
- * 注意这里使用原声axios对象进行操作,request 实例中依赖i18n 所以还没有初始化会报错
- * @returns
- */
- export function info() {
- return axios.get(import.meta.env.VITE_API_URL + '/admin/i18n/info');
- }
- export function validateName(rule: any, value: any, callback: any, isEdit: boolean) {
- if (isEdit) {
- return callback();
- }
- getObjDetails({ name: value }).then((response) => {
- const result = response.data;
- if (result !== null) {
- callback(new Error('国际化编码已经存在'));
- } else {
- callback();
- }
- });
- }
- export function validateZhCn(rule: any, value: any, callback: any, isEdit: boolean) {
- if (isEdit) {
- return callback();
- }
- getObjDetails({ zhCn: value }).then((response) => {
- const result = response.data;
- if (result !== null) {
- callback(new Error('国际化中文已经存在'));
- } else {
- callback();
- }
- });
- }
- export function validateEn(rule: any, value: any, callback: any, isEdit: boolean) {
- if (isEdit) {
- return callback();
- }
- getObjDetails({ en: value }).then((response) => {
- const result = response.data;
- if (result !== null) {
- callback(new Error('国际化英文已经存在'));
- } else {
- callback();
- }
- });
- }
|