update 合同新增签订单位模糊查询,列表字段去掉关联项目
This commit is contained in:
@@ -16,6 +16,11 @@
|
||||
<a-input placeholder="请输入合同名称" v-model="queryParam.contractName" :maxLength='50'></a-input>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :xxl="4" :xl="10" :lg="12" :md="12" :sm="24">
|
||||
<a-form-item label="签订单位" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
||||
<a-input placeholder="请输入签订单位" v-model="queryParam.signedCompanyTemporaryName" :maxLength='50'></a-input>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :xxl="8" :xl="10" :lg="12" :md="12" :sm="24">
|
||||
<a-form-item label="创建时间" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
||||
<j-date
|
||||
|
||||
@@ -16,9 +16,14 @@
|
||||
<a-input placeholder="请输入合同名称" v-model="queryParam.contractName" :maxLength='50'></a-input>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<!-- <a-col :xl="8" :lg="9" :md="10" :sm="24">-->
|
||||
<!-- <a-form-item label="关联项目" :labelCol="labelCol" :wrapperCol="wrapperCol">-->
|
||||
<!-- <a-input placeholder="请输入关联项目" v-model="queryParam.projectName" :maxLength='50'></a-input>-->
|
||||
<!-- </a-form-item>-->
|
||||
<!-- </a-col>-->
|
||||
<a-col :xl="8" :lg="9" :md="10" :sm="24">
|
||||
<a-form-item label="关联项目" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
||||
<a-input placeholder="请输入关联项目" v-model="queryParam.projectName" :maxLength='50'></a-input>
|
||||
<a-form-item label="签订单位" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
||||
<a-input placeholder="请输入签订单位" v-model="queryParam.signedCompanyTemporaryName" :maxLength='50'></a-input>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :xl="8" :lg="9" :md="10" :sm="24">
|
||||
@@ -143,7 +148,8 @@
|
||||
v-has="'revenueContract:delete'">删除</a>
|
||||
<!-- <a :disabled="true" v-if="record.status === 5">已存档</a> -->
|
||||
<!-- 待存档、已存档-->
|
||||
<a v-if="record.status === 3 || record.status === 5" @click="handleCancellation(record)" v-has="'revenueContract:cancellation'">作废</a>
|
||||
<a v-if="record.status === 3 || record.status === 5" @click="handleCancellation(record)"
|
||||
v-has="'revenueContract:cancellation'">作废</a>
|
||||
</span>
|
||||
</a-table>
|
||||
</div>
|
||||
@@ -219,13 +225,15 @@ export default {
|
||||
dataIndex: 'contractName',
|
||||
width: 240,
|
||||
scopedSlots: { customRender: 'text' }
|
||||
}, {
|
||||
title: '关联项目',
|
||||
align: 'center',
|
||||
dataIndex: 'associatedProject',
|
||||
width: 280,
|
||||
scopedSlots: { customRender: 'text' }
|
||||
}, {
|
||||
},
|
||||
// {
|
||||
// title: '关联项目',
|
||||
// align: 'center',
|
||||
// dataIndex: 'associatedProject',
|
||||
// width: 280,
|
||||
// scopedSlots: { customRender: 'text' }
|
||||
// },
|
||||
{
|
||||
title: '签订单位',
|
||||
align: 'center',
|
||||
dataIndex: 'signedCompanyTemporaryName',
|
||||
@@ -258,7 +266,7 @@ export default {
|
||||
dataIndex: 'action',
|
||||
align: 'center',
|
||||
fixed: 'right',
|
||||
width: 200,
|
||||
width: 170,
|
||||
scopedSlots: { customRender: 'action' }
|
||||
}
|
||||
],
|
||||
|
||||
@@ -75,11 +75,15 @@
|
||||
|
||||
<!-- 工作组名称-->
|
||||
<template slot="projectName" slot-scope="text, record">
|
||||
<j-ellipsis
|
||||
class="primary-color"
|
||||
@click="goMemberUnitMaintenance(record)"
|
||||
:value="text"
|
||||
:length="20"></j-ellipsis>
|
||||
<a-tooltip>
|
||||
<template slot="title">{{ text }}</template>
|
||||
<div class="primary-color text-over">{{ text }}</div>
|
||||
</a-tooltip>
|
||||
<!-- <j-ellipsis-->
|
||||
<!-- class="primary-color"-->
|
||||
<!-- @click="goMemberUnitMaintenance(record)"-->
|
||||
<!-- :value="text"-->
|
||||
<!-- :length="20"></j-ellipsis>-->
|
||||
</template>
|
||||
|
||||
<!-- 进度-->
|
||||
@@ -332,7 +336,7 @@ export default {
|
||||
this.$refs.modalForm.edit(record)
|
||||
this.$refs.modalForm.title = '基本信息维护'
|
||||
this.$refs.modalForm.disableSubmit = false
|
||||
},
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
@@ -373,4 +377,9 @@ export default {
|
||||
background: #e8e8e8;
|
||||
}
|
||||
}
|
||||
|
||||
.text-over {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user