master
xy 9 months ago
parent a5cbacd4eb
commit f97091b251

@ -0,0 +1,64 @@
<template>
<div>
<xy-dialog
ref="dialog"
:is-show.sync="isShow"
type="normal"
title="出差审批"
>
<xy-table :table-item="table"></xy-table>
</xy-dialog>
</div>
</template>
<script>
export default {
data() {
return {
isShow: false,
table: [
{
prop: '',
label: '资金来源'
},
{
prop: '',
label: '年份'
},
{
prop: '',
label: '科室'
},
{
prop: '',
label: '姓名'
},
{
prop: '',
label: '报销金额'
},
{
prop: '',
label: '日期区间'
},
{
prop: '',
label: '状态'
},
]
}
},
methods: {
show() {
this.isShow = true;
},
hidden() {
this.isShow = false;
},
},
computed: {},
}
</script>
<style scoped lang="scss">
</style>

@ -99,6 +99,13 @@
>出差报销 >出差报销
</Button> </Button>
</div> </div>
<div v-if="/Finance/g.test($route.path)">
<Button
type="primary"
@click="$refs['MultiExamine'].show()"
>批量确认
</Button>
</div>
</div> </div>
</slot> </slot>
</lx-header> </lx-header>
@ -250,10 +257,13 @@
<iframe style="width: 100%;height: 100%;border-radius: 0 0 6px 6px;" :src="oaUrl" frameborder="0"></iframe> <iframe style="width: 100%;height: 100%;border-radius: 0 0 6px 6px;" :src="oaUrl" frameborder="0"></iframe>
</div> </div>
</Modal> </Modal>
<MultiExamine ref="MultiExamine"></MultiExamine>
</div> </div>
</template> </template>
<script> <script>
import MultiExamine from "@/views/away/component/MultiExamine.vue";
import examineAway from "@/views/away/component/examineAway.vue"; import examineAway from "@/views/away/component/examineAway.vue";
import addAway from "@/views/away/component/addAway.vue" import addAway from "@/views/away/component/addAway.vue"
import { index, destroy, save } from "@/api/away"; import { index, destroy, save } from "@/api/away";
@ -262,6 +272,7 @@ import {flowStatusConfig} from "@/api/common";
export default { export default {
components: { components: {
MultiExamine,
addAway, addAway,
examineAway examineAway
}, },

@ -1027,6 +1027,12 @@ export default {
[1, "rgb(147, 201, 134)"] [1, "rgb(147, 201, 134)"]
]), ]),
table: [ table: [
{
type: 'selection',
align: 'center',
width: 58,
fixed: 'left'
},
{ {
label: "项目名称", label: "项目名称",
width: 300, width: 300,

Loading…
Cancel
Save