|
@@ -808,6 +808,7 @@ const cellStyle = () => {
|
|
|
const headerCellStyle = () => {
|
|
|
return {
|
|
|
fontSize: '13px',
|
|
|
+ backgroundColor: '#f0f1f3',
|
|
|
};
|
|
|
};
|
|
|
|
|
@@ -828,11 +829,11 @@ onMounted(() => {
|
|
|
<vxe-grid ref="xGrid" :cell-style="cellStyle" :header-cell-style="headerCellStyle" stripe v-bind="gridOptions"
|
|
|
v-on="gridEvents" @edit-actived="handleEditActived" @edit-closed="handleEditClosed">
|
|
|
<template #toolbar_buttons>
|
|
|
- <el-button :icon="Plus" type="primary" @click="dialogFormVisible = true"> 添加任务</el-button>
|
|
|
+ <el-button :icon="Plus" type="primary" text bg @click="dialogFormVisible = true"> 添加任务</el-button>
|
|
|
<!--<el-button plain type="success" @click="saveEvent">保存</el-button>-->
|
|
|
- <el-button :disabled="isDeleteDisabled" :icon="Delete" plain type="danger" @click="removeEvent">删除
|
|
|
+ <el-button :disabled="isDeleteDisabled" text bg :icon="Delete" plain type="danger" @click="removeEvent">删除
|
|
|
</el-button>
|
|
|
- <el-button v-if="!isDeleteDisabled" plain round type="success" @click="userDialogFormVisible =true">
|
|
|
+ <el-button v-if="!isDeleteDisabled" plain text bg round type="success" @click="userDialogFormVisible =true">
|
|
|
修改填写人
|
|
|
</el-button>
|
|
|
</template>
|
|
@@ -965,30 +966,9 @@ onMounted(() => {
|
|
|
<template #companyEnglishName_edit="{ row }">
|
|
|
<vxe-input v-model="row.companyEnglishName"></vxe-input>
|
|
|
</template>
|
|
|
- <template #address_edit="{ row }">
|
|
|
- <vxe-input v-model="row.address"></vxe-input>
|
|
|
- </template>
|
|
|
<template #juridicalPerson_edit="{ row }">
|
|
|
<vxe-input v-model="row.juridicalPerson"></vxe-input>
|
|
|
</template>
|
|
|
- <template #juridicalPersonCreditCard_edit="{ row }">
|
|
|
- <vxe-input v-model="row.juridicalPersonCreditCard"></vxe-input>
|
|
|
- </template>
|
|
|
- <template #juridicalPersonCreditCardAddress_edit="{ row }">
|
|
|
- <vxe-input v-model="row.juridicalPersonCreditCardAddress"></vxe-input>
|
|
|
- </template>
|
|
|
- <template #receivablesAccount_edit="{ row }">
|
|
|
- <vxe-input v-model="row.receivablesAccount"></vxe-input>
|
|
|
- </template>
|
|
|
- <template #receivablesAccountCompany_edit="{ row }">
|
|
|
- <vxe-input v-model="row.receivablesAccountCompany"></vxe-input>
|
|
|
- </template>
|
|
|
- <template #vatNumber_edit="{ row }">
|
|
|
- <vxe-input v-model="row.vatNumber"></vxe-input>
|
|
|
- </template>
|
|
|
- <template #vatCompany_edit="{ row }">
|
|
|
- <vxe-input v-model="row.vatCompany"></vxe-input>
|
|
|
- </template>
|
|
|
</vxe-grid>
|
|
|
</el-card>
|
|
|
</div>
|