1、前端翻译页面大致功能完成 2、mp雪花算法的坑,前端精度丢失问题解决,通过json序列化配置解决 3、远程调用接口出bug被降级处理,原因是json配置类少加了一个配置,加上之后解决了pull/254/head
parent
17a702cdf2
commit
f8eff071a9
@ -0,0 +1,10 @@
|
|||||||
|
import request from '@/utils/request'
|
||||||
|
|
||||||
|
// 查询日志列表
|
||||||
|
export function translation(query) {
|
||||||
|
return request({
|
||||||
|
url: '/english/translation',
|
||||||
|
method: 'post',
|
||||||
|
data: query
|
||||||
|
})
|
||||||
|
}
|
@ -1,196 +1,141 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
|
<el-row>
|
||||||
<el-form-item label="接口名称" prop="apiName">
|
<el-col :span="24">
|
||||||
<el-input
|
<div class="grid-content bg-purple" style="height: 100px"></div>
|
||||||
v-model="queryParams.apiName"
|
</el-col>
|
||||||
placeholder="请输入接口名称"
|
</el-row>
|
||||||
clearable
|
<el-row :gutter="20">
|
||||||
size="small"
|
<el-col :span="12">
|
||||||
@keyup.enter.native="handleQuery"
|
<!-- 翻译区域-->
|
||||||
/>
|
<div class="grid-content bg-purple">
|
||||||
</el-form-item>
|
<el-row :gutter="15">
|
||||||
|
<el-form ref="translation" :model="translationData" :rules="translationRules" size="medium"
|
||||||
<el-form-item>
|
label-width="100px" label-position="top">
|
||||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
<el-col :span="12">
|
||||||
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
<el-form-item label="翻译平台" prop="translationType">
|
||||||
</el-form-item>
|
<el-select
|
||||||
</el-form>
|
v-model="translationData.translationType"
|
||||||
|
placeholder="翻译平台"
|
||||||
<el-row :gutter="10" class="mb8">
|
clearable
|
||||||
<el-col :span="1.5">
|
size="small"
|
||||||
<el-button
|
style="width: 150px">
|
||||||
type="danger"
|
<el-option
|
||||||
plain
|
v-for="dict in dict.type.translation_type"
|
||||||
icon="el-icon-delete"
|
:key="dict.value"
|
||||||
size="mini"
|
:label="dict.label"
|
||||||
:disabled="multiple"
|
:value="dict.value"/>
|
||||||
@click="handleDelete"
|
</el-select>
|
||||||
v-hasPermi="['english:log:remove']"
|
</el-form-item>
|
||||||
>删除</el-button>
|
</el-col>
|
||||||
|
<el-col :span="20">
|
||||||
|
<el-form-item label="翻译区域" prop="q">
|
||||||
|
<el-input v-model="translationData.q" type="textarea" placeholder="请输入翻译内容" show-word-limit
|
||||||
|
:autosize="{minRows: 4, maxRows: 4}" :style="{width: '100%'}"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item size="large">
|
||||||
|
<el-button type="primary" @click="submitForm">提交</el-button>
|
||||||
|
<el-button @click="resetForm">重置</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-form>
|
||||||
|
</el-row>
|
||||||
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="1.5">
|
<el-col :span="12">
|
||||||
<el-button
|
<!-- 翻译结果显示区域-->
|
||||||
type="warning"
|
<div class="grid-content bg-purple ">
|
||||||
plain
|
<div class="spans">
|
||||||
icon="el-icon-download"
|
{{responseTranslation}}
|
||||||
size="mini"
|
</div>
|
||||||
@click="handleExport"
|
</div>
|
||||||
v-hasPermi="['english:log:export']"
|
|
||||||
>导出</el-button>
|
|
||||||
</el-col>
|
</el-col>
|
||||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
||||||
</el-row>
|
</el-row>
|
||||||
|
|
||||||
<el-table v-loading="loading" :data="logList" @selection-change="handleSelectionChange">
|
|
||||||
<el-table-column type="selection" width="55" align="center" />
|
|
||||||
<el-table-column label="接口名称" align="center" prop="apiName" :show-overflow-tooltip="true"/>
|
|
||||||
<el-table-column label="URL" align="center" prop="url" :show-overflow-tooltip="true"/>
|
|
||||||
<el-table-column label="请求方法" align="center" prop="method" :show-overflow-tooltip="true"/>
|
|
||||||
<el-table-column label="请求体" align="center" prop="request" :show-overflow-tooltip="true"/>
|
|
||||||
<el-table-column label="响应体" align="center" prop="response" :show-overflow-tooltip="true"/>
|
|
||||||
<el-table-column label="是否请求成功" align="center" prop="isSuccess" :show-overflow-tooltip="true"/>
|
|
||||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
||||||
<template slot-scope="scope">
|
|
||||||
<el-button
|
|
||||||
size="mini"
|
|
||||||
type="text"
|
|
||||||
icon="el-icon-delete"
|
|
||||||
@click="handleDelete(scope.row)"
|
|
||||||
v-hasPermi="['english:log:remove']"
|
|
||||||
>删除</el-button>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
</el-table>
|
|
||||||
|
|
||||||
<pagination
|
|
||||||
v-show="total>0"
|
|
||||||
:total="total"
|
|
||||||
:page.sync="queryParams.pageNum"
|
|
||||||
:limit.sync="queryParams.pageSize"
|
|
||||||
@pagination="getList"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { listLog, getLog, delLog} from "@/api/business/english/log";
|
import {translation} from "@/api/business/english/translation";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
dicts: ['translation_type'],
|
||||||
name: "Log",
|
name: "Log",
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
// 遮罩层
|
//翻译响应数据
|
||||||
loading: true,
|
responseTranslation:'',
|
||||||
// 选中数组
|
|
||||||
ids: [],
|
translationData: {
|
||||||
// 非单个禁用
|
translationType: '',
|
||||||
single: true,
|
q: '',
|
||||||
// 非多个禁用
|
|
||||||
multiple: true,
|
|
||||||
// 显示搜索条件
|
|
||||||
showSearch: true,
|
|
||||||
// 总条数
|
|
||||||
total: 0,
|
|
||||||
// 日志表格数据
|
|
||||||
logList: [],
|
|
||||||
// 弹出层标题
|
|
||||||
title: "",
|
|
||||||
// 是否显示弹出层
|
|
||||||
open: false,
|
|
||||||
// 查询参数
|
|
||||||
queryParams: {
|
|
||||||
pageNum: 1,
|
|
||||||
pageSize: 10,
|
|
||||||
apiName: null,
|
|
||||||
isSuccess: null
|
|
||||||
},
|
},
|
||||||
// 表单参数
|
translationRules: {
|
||||||
form: {},
|
translationType: [{
|
||||||
// 表单校验
|
required: true,
|
||||||
rules: {
|
message: '翻译平台不能为空',
|
||||||
}
|
trigger: 'change'
|
||||||
};
|
}],
|
||||||
|
q: [{
|
||||||
|
required: true,
|
||||||
|
message: '请输入翻译内容',
|
||||||
|
trigger: 'blur'
|
||||||
|
}],
|
||||||
|
},
|
||||||
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.getList();
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
/** 查询日志列表 */
|
submitForm() {
|
||||||
getList() {
|
this.$refs['translation'].validate(valid => {
|
||||||
this.loading = true;
|
if (valid) {
|
||||||
listLog(this.queryParams).then(response => {
|
translation(this.translationData).then(res => {
|
||||||
this.logList = response.rows;
|
let result =res .data.transResult
|
||||||
this.total = response.total;
|
let results = ''
|
||||||
this.loading = false;
|
console.log(result)
|
||||||
});
|
result.forEach(r =>{
|
||||||
},
|
results = results +' '+ r.dst;
|
||||||
// 取消按钮
|
})
|
||||||
cancel() {
|
this.responseTranslation=results
|
||||||
this.open = false;
|
|
||||||
this.reset();
|
})
|
||||||
},
|
}
|
||||||
// 表单重置
|
|
||||||
reset() {
|
})
|
||||||
this.form = {
|
|
||||||
id: null,
|
|
||||||
apiName: null,
|
|
||||||
url: null,
|
|
||||||
method: null,
|
|
||||||
request: null,
|
|
||||||
response: null,
|
|
||||||
isSuccess: null
|
|
||||||
};
|
|
||||||
this.resetForm("form");
|
|
||||||
},
|
|
||||||
/** 搜索按钮操作 */
|
|
||||||
handleQuery() {
|
|
||||||
this.queryParams.pageNum = 1;
|
|
||||||
this.getList();
|
|
||||||
},
|
|
||||||
/** 重置按钮操作 */
|
|
||||||
resetQuery() {
|
|
||||||
this.resetForm("queryForm");
|
|
||||||
this.handleQuery();
|
|
||||||
},
|
|
||||||
// 多选框选中数据
|
|
||||||
handleSelectionChange(selection) {
|
|
||||||
this.ids = selection.map(item => item.id)
|
|
||||||
this.single = selection.length!==1
|
|
||||||
this.multiple = !selection.length
|
|
||||||
},
|
|
||||||
/** 新增按钮操作 */
|
|
||||||
handleAdd() {
|
|
||||||
this.reset();
|
|
||||||
this.open = true;
|
|
||||||
this.title = "添加日志";
|
|
||||||
},
|
|
||||||
/** 修改按钮操作 */
|
|
||||||
handleUpdate(row) {
|
|
||||||
this.reset();
|
|
||||||
const id = row.id || this.ids
|
|
||||||
getLog(id).then(response => {
|
|
||||||
this.form = response.data;
|
|
||||||
this.open = true;
|
|
||||||
this.title = "修改日志";
|
|
||||||
});
|
|
||||||
},
|
},
|
||||||
/** 删除按钮操作 */
|
resetForm() {
|
||||||
handleDelete(row) {
|
this.$refs['translation'].resetFields()
|
||||||
const ids = row.id || this.ids;
|
|
||||||
this.$modal.confirm('是否确认删除日志编号为"' + ids + '"的数据项?').then(function() {
|
|
||||||
return delLog(ids);
|
|
||||||
}).then(() => {
|
|
||||||
this.getList();
|
|
||||||
this.$modal.msgSuccess("删除成功");
|
|
||||||
}).catch(() => {});
|
|
||||||
},
|
},
|
||||||
/** 导出按钮操作 */
|
},
|
||||||
handleExport() {
|
|
||||||
this.download('english/log/export', {
|
|
||||||
...this.queryParams
|
|
||||||
}, `log_${new Date().getTime()}.xlsx`)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.bg-purple {
|
||||||
|
box-shadow: 0 0 9px 3px #999;
|
||||||
|
}
|
||||||
|
|
||||||
|
.grid-content {
|
||||||
|
border-radius: 4px;
|
||||||
|
min-height: 36px;
|
||||||
|
height: 500px;
|
||||||
|
margin-top: 20px;
|
||||||
|
padding: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.spans{
|
||||||
|
margin :100px;
|
||||||
|
margin-top: 100px;
|
||||||
|
padding: 50px;
|
||||||
|
font-family: Georgia;
|
||||||
|
font-size:20px;
|
||||||
|
height: 200px;
|
||||||
|
box-shadow: 0 0 9px 3px #999;
|
||||||
|
color: #00afff;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
@ -1,11 +0,0 @@
|
|||||||
package com.xjs.translation.domain.vo.translation;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author xiejs
|
|
||||||
* @desc 谷歌翻译实体
|
|
||||||
* @create 2021-12-25
|
|
||||||
*/
|
|
||||||
public class GoogleTranslationVo extends TranslationVo {
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in new issue