95 lines
1.8 KiB
Vue
95 lines
1.8 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<!-- 列表 -->
|
|
<base-table
|
|
v-loading="dataListLoading"
|
|
:table-props="tableProps"
|
|
:page="listQuery.pageNo"
|
|
:limit="listQuery.pageSize"
|
|
:max-height="tableH"
|
|
:table-data="tableData">
|
|
<method-btn
|
|
v-if="tableBtn.length"
|
|
slot="handleBtn"
|
|
:width="80"
|
|
label="操作"
|
|
:method-list="tableBtn"
|
|
@clickBtn="handleClick" />
|
|
</base-table>
|
|
<pagination
|
|
:limit.sync="listQuery.pageSize"
|
|
:page.sync="listQuery.pageNo"
|
|
:total="listQuery.total"
|
|
@pagination="getDataList" />
|
|
|
|
<!-- 对话框(添加 / 修改) -->
|
|
<base-dialog
|
|
:dialogTitle="addOrEditTitle"
|
|
:dialogVisible="addOrUpdateVisible"
|
|
@cancel="handleCancel"
|
|
@confirm="handleConfirm"
|
|
:before-close="handleCancel"
|
|
width="40%">
|
|
<add-or-update
|
|
ref="addOrUpdate"
|
|
@refreshDataList="successSubmit"></add-or-update>
|
|
</base-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import AddOrUpdate from './add-or-updata';
|
|
import basicPage from '@/mixins/basic-page';
|
|
import typeRule from './typeRule';
|
|
import {
|
|
getRawOthercostRulePage,
|
|
} from '@/api/cost/rawOthercostRule';
|
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
|
|
|
const tableProps = [
|
|
{
|
|
prop: 'name',
|
|
label: '成本名称',
|
|
},
|
|
{
|
|
prop: 'type',
|
|
label: '自动计算方式',
|
|
width: 220,
|
|
subcomponent: typeRule,
|
|
},
|
|
{
|
|
prop: 'remark',
|
|
label: '备注',
|
|
},
|
|
];
|
|
|
|
export default {
|
|
mixins: [basicPage,tableHeightMixin],
|
|
data() {
|
|
return {
|
|
urlOptions: {
|
|
getDataListURL: getRawOthercostRulePage,
|
|
deleteURL: deleteCostMaterialSet,
|
|
},
|
|
tableProps,
|
|
tableBtn: [
|
|
this.$auth.hasPermi(`extend:cost-material-set:update`)
|
|
? {
|
|
type: 'edit',
|
|
btnName: '编辑',
|
|
}
|
|
: undefined,
|
|
].filter((v) => v),
|
|
tableData: [],
|
|
};
|
|
},
|
|
components: {
|
|
AddOrUpdate,
|
|
},
|
|
created() {
|
|
},
|
|
methods: {
|
|
},
|
|
};
|
|
</script>
|