[update] 清空
This commit is contained in:
@@ -280,6 +280,7 @@ export default {
|
|||||||
}
|
}
|
||||||
.add_flex_item{
|
.add_flex_item{
|
||||||
flex: 1;
|
flex: 1;
|
||||||
|
margin-right: 10px;
|
||||||
}
|
}
|
||||||
.selectWid{
|
.selectWid{
|
||||||
min-width: 150px;
|
min-width: 150px;
|
||||||
@@ -288,6 +289,6 @@ export default {
|
|||||||
min-width: 150px;
|
min-width: 150px;
|
||||||
}
|
}
|
||||||
.add-width{
|
.add-width{
|
||||||
width: 33%;
|
width: 30%;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -395,11 +395,12 @@ export default {
|
|||||||
console.log(pagination,filters,sorter,'iiiiiiiiiiiiiiiii')
|
console.log(pagination,filters,sorter,'iiiiiiiiiiiiiiiii')
|
||||||
},
|
},
|
||||||
getTableListReset() {
|
getTableListReset() {
|
||||||
console.log('清空')
|
|
||||||
let params = {
|
let params = {
|
||||||
paramsManifestId: this.paramsManifest.id,
|
paramsManifestId: this.paramsManifest.id,
|
||||||
|
userTypes: this.LoginUserType,
|
||||||
}
|
}
|
||||||
this.loading = true
|
this.loading = true
|
||||||
|
this.$emit('listReset', '')
|
||||||
getAction(this.url.tableList, params).then((res) => {
|
getAction(this.url.tableList, params).then((res) => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.dataSource = res.result
|
this.dataSource = res.result
|
||||||
|
|||||||
@@ -67,22 +67,22 @@
|
|||||||
<template slot="title" id="popconfirm">
|
<template slot="title" id="popconfirm">
|
||||||
<!-- 下发收集 -->
|
<!-- 下发收集 -->
|
||||||
<div @click="distributionAndCollectionJurisdiction" class="operator-text-title">
|
<div @click="distributionAndCollectionJurisdiction" class="operator-text-title">
|
||||||
<a-icon type="plus"/>
|
<a-icon type="solution"/>
|
||||||
{{$t('distributionAndCollection')}}
|
{{$t('distributionAndCollection')}}
|
||||||
</div>
|
</div>
|
||||||
<!-- 冻结配置-->
|
<!-- 冻结配置-->
|
||||||
<div @click="freezeConfiguration" class="operator-text-title">
|
<div @click="freezeConfiguration" class="operator-text-title">
|
||||||
<a-icon type="plus"/>
|
<a-icon type="solution"/>
|
||||||
{{$t('FreezeConfiguration')}}
|
{{$t('FreezeConfiguration')}}
|
||||||
</div>
|
</div>
|
||||||
<!-- 同步上报库 -->
|
<!-- 同步上报库 -->
|
||||||
<div @click="handleSynchronousReportLibraryJurisdiction" class="operator-text-title">
|
<div @click="handleSynchronousReportLibraryJurisdiction" class="operator-text-title">
|
||||||
<a-icon type="plus"/>
|
<a-icon type="setting"/>
|
||||||
{{$t('SynchronousReportLibrary')}}
|
{{$t('SynchronousReportLibrary')}}
|
||||||
</div>
|
</div>
|
||||||
<!-- 强制撤回-->
|
<!-- 强制撤回-->
|
||||||
<div @click="compulsoryWithdrawaljurisdiction" class="operator-text-title">
|
<div @click="compulsoryWithdrawaljurisdiction" class="operator-text-title">
|
||||||
<a-icon type="bulb"/>
|
<a-icon type="delete"/>
|
||||||
{{$t('CompulsoryWithdrawal')}}
|
{{$t('CompulsoryWithdrawal')}}
|
||||||
</div>
|
</div>
|
||||||
<!-- 分配填写人-->
|
<!-- 分配填写人-->
|
||||||
@@ -112,12 +112,12 @@
|
|||||||
</div>
|
</div>
|
||||||
<!-- 提交-->
|
<!-- 提交-->
|
||||||
<div @click="handleSubmit" class="operator-text">
|
<div @click="handleSubmit" class="operator-text">
|
||||||
<a-icon type="plus"/>
|
<a-icon type="check-circle"/>
|
||||||
{{$t('submit')}}
|
{{$t('submit')}}
|
||||||
</div>
|
</div>
|
||||||
<!-- 退回-->
|
<!-- 退回-->
|
||||||
<div @click="returnDataJurisdiction" class="operator-text">
|
<div @click="returnDataJurisdiction" class="operator-text">
|
||||||
<a-icon type="plus"/>
|
<a-icon type="delete"/>
|
||||||
{{$t('sendBack')}}
|
{{$t('sendBack')}}
|
||||||
</div>
|
</div>
|
||||||
<!-- 批量删除-->
|
<!-- 批量删除-->
|
||||||
@@ -129,7 +129,7 @@
|
|||||||
<div style="width: 100%">
|
<div style="width: 100%">
|
||||||
<!-- 表格-10控件-->
|
<!-- 表格-10控件-->
|
||||||
<table-collection ref="CollectionTabel" :url='url' :paramsManifest='paramsManifest' @rowValue='rowValue'
|
<table-collection ref="CollectionTabel" :url='url' :paramsManifest='paramsManifest' @rowValue='rowValue'
|
||||||
:formInline='formInline' @LoginUserType='LoginUserType' @value='value'/>
|
:formInline='formInline' @LoginUserType='LoginUserType' @value='value' @listReset='listReset'/>
|
||||||
</div>
|
</div>
|
||||||
<!-- 添加--->
|
<!-- 添加--->
|
||||||
<a-modal v-model="areaVisible" :title="$t('ParameterLibrary')" width='750px' :footer="null">
|
<a-modal v-model="areaVisible" :title="$t('ParameterLibrary')" width='750px' :footer="null">
|
||||||
@@ -958,6 +958,9 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
listReset() {
|
||||||
|
this.formInline = {}
|
||||||
|
},
|
||||||
handleModule() {
|
handleModule() {
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user