|
|
|
@ -69,6 +69,16 @@
|
|
|
|
|
>导出</el-button
|
|
|
|
|
>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
plain
|
|
|
|
|
icon="el-icon-download"
|
|
|
|
|
size="mini"
|
|
|
|
|
@click="handleDownloadData"
|
|
|
|
|
>下载元数据</el-button
|
|
|
|
|
>
|
|
|
|
|
</el-col>
|
|
|
|
|
<right-toolbar
|
|
|
|
|
:showSearch.sync="showSearch"
|
|
|
|
|
@queryTable="getList"
|
|
|
|
@ -241,6 +251,36 @@
|
|
|
|
|
<el-button @click="cancel">取 消</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
<!-- 密码输入框-->
|
|
|
|
|
<el-dialog
|
|
|
|
|
:title="title"
|
|
|
|
|
:visible.sync="open1"
|
|
|
|
|
width="800px"
|
|
|
|
|
append-to-body
|
|
|
|
|
>
|
|
|
|
|
<el-form
|
|
|
|
|
ref="queryForm"
|
|
|
|
|
:model="queryParams"
|
|
|
|
|
:rules="rules"
|
|
|
|
|
label-width="140px"
|
|
|
|
|
>
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="14">
|
|
|
|
|
<el-form-item label="密码" prop="inputPassword">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryParams.inputPassword"
|
|
|
|
|
placeholder="请输入密码"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-form>
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
|
<el-button type="primary" @click="submitForm1">确 定</el-button>
|
|
|
|
|
<el-button @click="cancel1">取 消</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
@ -251,6 +291,7 @@ import {
|
|
|
|
|
getAccountingReport,
|
|
|
|
|
getAccountingReportPage,
|
|
|
|
|
exportAccountingReportExcel,
|
|
|
|
|
downloadXml,
|
|
|
|
|
} from "@/api/accounting/report";
|
|
|
|
|
import { getAccessToken } from "@/utils/auth";
|
|
|
|
|
import { getOrganizationPage } from "@/api/setting/organization";
|
|
|
|
@ -277,6 +318,7 @@ export default {
|
|
|
|
|
fileList2: [],
|
|
|
|
|
// 是否显示弹出层
|
|
|
|
|
open: false,
|
|
|
|
|
open1: false,
|
|
|
|
|
// 查询参数
|
|
|
|
|
queryParams: {
|
|
|
|
|
pageNo: 1,
|
|
|
|
@ -295,6 +337,7 @@ export default {
|
|
|
|
|
archiveState: null,
|
|
|
|
|
deptId: null,
|
|
|
|
|
deptName: null,
|
|
|
|
|
inputPassword: null,
|
|
|
|
|
},
|
|
|
|
|
// 表单参数
|
|
|
|
|
form: {},
|
|
|
|
@ -307,6 +350,9 @@ export default {
|
|
|
|
|
period: [
|
|
|
|
|
{ required: true, message: "请输入会计期间", trigger: "blur" },
|
|
|
|
|
],
|
|
|
|
|
inputPassword: [
|
|
|
|
|
{ required: true, message: "密码不能为空", trigger: "blur" },
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
uploadUrl:
|
|
|
|
|
process.env.VUE_APP_BASE_API +
|
|
|
|
@ -338,6 +384,10 @@ export default {
|
|
|
|
|
this.open = false;
|
|
|
|
|
this.reset();
|
|
|
|
|
},
|
|
|
|
|
/** 取消按钮 */
|
|
|
|
|
cancel1() {
|
|
|
|
|
this.open1 = false;
|
|
|
|
|
},
|
|
|
|
|
/** 表单重置 */
|
|
|
|
|
reset() {
|
|
|
|
|
this.form = {
|
|
|
|
@ -371,6 +421,26 @@ export default {
|
|
|
|
|
this.resetForm("queryForm");
|
|
|
|
|
this.handleQuery();
|
|
|
|
|
},
|
|
|
|
|
//下载元数据
|
|
|
|
|
handleDownloadData() {
|
|
|
|
|
this.open1 = true;
|
|
|
|
|
this.queryParams.inputPassword = null;
|
|
|
|
|
},
|
|
|
|
|
submitForm1() {
|
|
|
|
|
this.$refs["queryForm"].validate((valid) => {
|
|
|
|
|
if (!valid) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
// 处理查询参数
|
|
|
|
|
let params = { ...this.queryParams };
|
|
|
|
|
downloadXml(params)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.$download.excel(response, "会计账簿元数据.xml");
|
|
|
|
|
this.open1 = false;
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {});
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
/** 新增按钮操作 */
|
|
|
|
|
handleAdd() {
|
|
|
|
|
this.reset();
|
|
|
|
|