合并分支 'dev_third_stage' 到 'dev_2nd_period_test'
Dev third stage 查看合并请求 laws-nio/laws-weilai!231
This commit is contained in:
+15
@@ -90,6 +90,21 @@ public class BussDocumentLibraryEOController extends JeroController<BussDocument
|
|||||||
return Result.OK(infoPage);
|
return Result.OK(infoPage);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 文档翻译调取已入库文件
|
||||||
|
* @param parameter
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
@AutoLog(value = "文档翻译调取已入库文件")
|
||||||
|
@ApiOperation(value="文档翻译调取已入库文件", notes="文档翻译调取已入库文件")
|
||||||
|
@PostMapping(value = "/transPageInfo")
|
||||||
|
@ResponseBody
|
||||||
|
@RequiresPermissions("documentTranslation:retrieval")
|
||||||
|
public Result<?> transPageInfo(@RequestBody Map<String,Object> parameter) {
|
||||||
|
IPage infoPage = bussDocumentLibraryEOService.ocrPageInfo(parameter);
|
||||||
|
return Result.OK(infoPage);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 列表查询
|
* 列表查询
|
||||||
*
|
*
|
||||||
|
|||||||
+1
-1
@@ -223,7 +223,7 @@
|
|||||||
...this.queryParam
|
...this.queryParam
|
||||||
}
|
}
|
||||||
this.loading = true
|
this.loading = true
|
||||||
postAction('document/bussDocumentLibraryEO/ocrPageInfo', query).then((res) => {
|
postAction('document/bussDocumentLibraryEO/transPageInfo', query).then((res) => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.dataList = res.result.records || []
|
this.dataList = res.result.records || []
|
||||||
this.total = res.result.total
|
this.total = res.result.total
|
||||||
|
|||||||
@@ -416,6 +416,7 @@ export default {
|
|||||||
controlValues: [
|
controlValues: [
|
||||||
{ required: true, message: this.$t('PleaseEnter')+this.$t('controlAlternatives'), trigger: 'blur' },
|
{ required: true, message: this.$t('PleaseEnter')+this.$t('controlAlternatives'), trigger: 'blur' },
|
||||||
{ min:1, max: 500, message: this.$t('cantExeed')+'500'+this.$t('characters'), trigger: 'blur' },
|
{ min:1, max: 500, message: this.$t('cantExeed')+'500'+this.$t('characters'), trigger: 'blur' },
|
||||||
|
{ validator: this.test }
|
||||||
],
|
],
|
||||||
titleDefaultValue: [
|
titleDefaultValue: [
|
||||||
{ required: true, message: this.$t('PleaseEnter')+this.$t('DefaultValue'), trigger: 'blur' },
|
{ required: true, message: this.$t('PleaseEnter')+this.$t('DefaultValue'), trigger: 'blur' },
|
||||||
@@ -453,6 +454,14 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
test(rule, value, callback) {
|
||||||
|
var money = /^[^##!!]*$/
|
||||||
|
if (money.test(value)) {
|
||||||
|
callback()
|
||||||
|
} else {
|
||||||
|
callback(new Error(this.$t('disableInput') + '!#'))
|
||||||
|
}
|
||||||
|
},
|
||||||
getcontentListedEdit() {
|
getcontentListedEdit() {
|
||||||
getAction('sys/dict/getDictItems/cert_category', { }).then((res) => {
|
getAction('sys/dict/getDictItems/cert_category', { }).then((res) => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
|
|||||||
@@ -189,6 +189,7 @@
|
|||||||
<TaskListModel @TaskListModelList="TaskListModelList" ref="TaskListModelRef"/>
|
<TaskListModel @TaskListModelList="TaskListModelList" ref="TaskListModelRef"/>
|
||||||
<taskBatSetting @taskBatSettingForm="taskBatSettingForm" ref="taskBatSettingRef"></taskBatSetting>
|
<taskBatSetting @taskBatSettingForm="taskBatSettingForm" ref="taskBatSettingRef"></taskBatSetting>
|
||||||
<batchChangeModel @batchChangeModel="batchChangeModel" ref="batchChangeModelRef"/>
|
<batchChangeModel @batchChangeModel="batchChangeModel" ref="batchChangeModelRef"/>
|
||||||
|
<cuibanModel @cibanModel="cibanModel" ref="cModelRef"/>
|
||||||
<batchModel @batchModel="batchModel" ref="batchModelRef"/>
|
<batchModel @batchModel="batchModel" ref="batchModelRef"/>
|
||||||
<cuibanModel @cibanModel="cibanModel" ref="cModelRef"/>
|
<cuibanModel @cibanModel="cibanModel" ref="cModelRef"/>
|
||||||
<!-- 错误数据提示-->
|
<!-- 错误数据提示-->
|
||||||
@@ -222,6 +223,7 @@
|
|||||||
import batchChangeModel from './batchChangeModel'
|
import batchChangeModel from './batchChangeModel'
|
||||||
import batchModel from './batchModel'
|
import batchModel from './batchModel'
|
||||||
import TaskListModel from './TaskListModel'
|
import TaskListModel from './TaskListModel'
|
||||||
|
import cuibanModel from './cuibanModel'
|
||||||
import taskBatSetting from './taskBatSetting'
|
import taskBatSetting from './taskBatSetting'
|
||||||
import cuibanModel from './cuibanModel'
|
import cuibanModel from './cuibanModel'
|
||||||
import { getAction, postAction, deleteAction, downloadFile } from '@/api/manage'
|
import { getAction, postAction, deleteAction, downloadFile } from '@/api/manage'
|
||||||
@@ -618,6 +620,17 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
|
// 催办
|
||||||
|
cuibanClick(){
|
||||||
|
if(this.selectionRowsArray.length <1){
|
||||||
|
this.$message.warning(this.$t('selectLeastOne'))
|
||||||
|
}else{
|
||||||
|
this.$refs.cModelRef.getData(this.selectionRowsArray)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
cibanModel(){
|
||||||
|
this.getList()
|
||||||
|
},
|
||||||
cancleoperationFailed(){
|
cancleoperationFailed(){
|
||||||
this.visibleoperationFailed = false
|
this.visibleoperationFailed = false
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user