加工 管输

This commit is contained in:
‘huanghaiixia’
2026-02-26 17:49:50 +08:00
parent f7d9075c75
commit b56418cd38
9 changed files with 304 additions and 141 deletions

View File

@ -224,7 +224,7 @@
</div>
</template>
<a-button v-if="!isDisable" type="primary" style="margin-bottom: 10px;" @click="handleAdd('certificate')">新增证书</a-button>
<a-table :columns="columnsCertificate" :data-source="dataCertificate" >
<a-table :columns="columnsCertificate" :data-source="dataCertificate" :pagination="false">
<template #bodyCell="{ column, record, index }">
<template v-if="column.dataIndex === 'dateFrom'">
{{ record.dateFrom ? dayjs(record.dateFrom).format('YYYY-MM-DD') : ''}}
@ -254,7 +254,7 @@
</div>
</template>
<a-button v-if="!isDisable" type="primary" style="margin-bottom: 10px;" @click="handleAdd('bank')">新增银行账户</a-button>
<a-table :columns="columnsBank" :data-source="dataBank" >
<a-table :columns="columnsBank" :data-source="dataBank" :pagination="false" >
<template #bodyCell="{ column, record, index }">
<template v-if="column.dataIndex === 'defaultSign'">
{{ (optionSelect.signList.find(v=>v.code == record.defaultSign) || {}).name }}
@ -275,7 +275,7 @@
</div>
</template>
<a-button v-if="!isDisable" type="primary" style="margin-bottom: 10px;" @click="handleAdd('contact')">新增联系人</a-button>
<a-table :columns="columnsContact" :data-source="dataContact" >
<a-table :columns="columnsContact" :data-source="dataContact" :pagination="false">
<template #bodyCell="{ column, record, index }">
<template v-if="column.dataIndex === 'operation'">
<a style="margin-right: 10px" @click="btnCheck('contact', 'edit', record, index)">编辑</a>

View File

@ -167,7 +167,7 @@ export const formProps: FormProps = {
label: '客户组编码',
type: 'input',
component: 'Input',
colProps: { span: 12 },
colProps: { span: 24 },
defaultValue: '',
componentProps: {
width: '100%',
@ -201,7 +201,7 @@ export const formProps: FormProps = {
label: '类型',
type: 'select',
component: 'XjrSelect',
colProps: { span: 12 },
colProps: { span: 8 },
componentProps: {
width: '100%',
span: '',
@ -247,7 +247,7 @@ export const formProps: FormProps = {
type: 'slot',
slotName: 'dateFrom',
component: 'DatePicker',
colProps: { span: 12 },
colProps: { span: 8 },
defaultValue: '',
componentProps: {
span: '',
@ -277,7 +277,7 @@ export const formProps: FormProps = {
type: 'slot',
slotName: 'dateTo',
component: 'DatePicker',
colProps: { span: 12 },
colProps: { span: 8 },
defaultValue: '',
componentProps: {
span: '',

View File

@ -155,7 +155,7 @@ export const formProps: FormProps = {
label: '评价体系名称',
type: 'input',
component: 'Input',
colProps: { span: 12 },
colProps: { span: 8 },
defaultValue: '',
componentProps: {
width: '100%',
@ -189,7 +189,7 @@ export const formProps: FormProps = {
label: '评价对象',
type: 'select',
component: 'XjrSelect',
colProps: { span: 12 },
colProps: { span: 8 },
componentProps: {
width: '100%',
span: '',

View File

@ -45,7 +45,7 @@
</a-row>
</Card>
<Card title="填写评分表信息" :bordered="false" >
<a-table :columns="columns" :data-source="dataList" >
<a-table :columns="columns" :data-source="dataList" :pagination="false" :scroll="{x: 500}">
<template #bodyCell="{ column, record, index }">
<template v-if="column.dataIndex === 'score'">
<a-input-number v-model:value="record.score" :disabled="isDisable" @change="numChagne('score', record, index)"/>
@ -140,8 +140,8 @@
{ title: t('评分'), dataIndex: 'score', },
{ title: t('分数说明'), dataIndex: 'scoreDesc', },
{ title: t('评价人'), dataIndex: 'aEmpName', },
{ title: t('评价时间'), dataIndex: 'aTime', },
{ title: t('实际评价部门'), dataIndex: 'aDeptName', },
{ title: t('评价时间'), dataIndex: 'aTime', width: 150},
{ title: t('实际评价部门'), dataIndex: 'aDeptName', width: 150},
]);
const dataList= ref([]);
const dataFile = ref([]);