123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- <template>
- <div>
- <m-search class="mb-3" :items="searchItems" v-model="searchValues" @search="onSearch"></m-search>
- <m-table
- v-loading="loading"
- :items="items"
- :headers="headers"
- :page-size="pageInfo.size"
- :page-current="pageInfo.current"
- :total="total"
- @page-change="onPageChange"
- >
- <template #actions="{ row }">
- <m-button type="primary" text @click="onClaim(row)">分润认领</m-button>
- </template>
- </m-table>
- <ClaimForm ref="claimFormRef" @success="onInit" />
- </div>
- </template>
- <script>
- import { dateFormat } from '@/utils/date'
- import { getProfitSharingClaim } from '@/api/salary'
- import ClaimForm from '../components/form.vue'
- export default {
- name: 'salaryClaimSharing',
- components: {
- ClaimForm
- },
- data () {
- return {
- searchItems: [
- {
- label: '月份',
- prop: 'month',
- type: 'datePicker',
- options: {
- clearable: false,
- type: 'month',
- format: 'yyyy-MM',
- valueFormat: 'yyyy-MM',
- placeholder: '选择查询月份'
- }
- },
- {
- label: '客户编号',
- prop: 'customerId',
- type: 'input',
- options: {
- placeholder: '请输入客户编号'
- }
- },
- {
- label: '科目名称',
- prop: 'subjectName',
- type: 'input',
- options: {
- placeholder: '请输入科目名称'
- }
- }
- ],
- searchValues: {
- subjectName: null,
- customerId: null,
- month: dateFormat('YYYY-mm', new Date())
- },
- headers: [
- { label: '客户编号', prop: 'customerId' },
- { label: '一级科目编码/名称', prop: 'oneLevelSubject' },
- { label: '二级科目编码/名称', prop: 'twoLevelSubject' },
- { label: '金额', prop: 'amount' },
- { label: '机构名称', prop: 'organizationName' },
- { label: '统一认证号1', prop: 'unifiedCertificationNumber1' },
- { label: '员工姓名1', prop: 'employeeName1' },
- { label: '统一认证号2', prop: 'unifiedCertificationNumber2' },
- { label: '员工姓名2', prop: 'employeeName2' },
- { label: '数据日期', prop: 'dataDate' },
- { label: '管户层级标识', prop: 'customerLevelIdentifier' },
- { label: '客户类别标识', prop: 'customerCategoryIdentifier' },
- { label: '员工分润比例', prop: 'employeeProfitSharingRatio' },
- { label: '操作', prop: 'actions', fixed: 'right' }
- ],
- items: [],
- total: 0,
- pageInfo: {
- current: 1,
- size: 10
- },
- loading: false
- }
- },
- created () {
- this.onInit()
- },
- methods: {
- async onInit () {
- this.loading = true
- try {
- const { data } = await getProfitSharingClaim({
- ...this.pageInfo,
- ...this.searchValues
- })
- this.items = data.records
- this.total = data.total
- } catch (error) {
- this.$message.error(error)
- } finally {
- this.loading = false
- }
- },
- onClaim (item) {
- this.$refs.claimFormRef.open(item)
- },
- onSearch () {
- this.pageInfo.current = 1
- this.onInit()
- },
- onPageChange (index) {
- this.pageInfo.current = index
- this.onInit()
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- /* 自定义样式 */
- </style>
|