update 征求意见

This commit is contained in:
赵霄
2023-12-05 14:34:18 +08:00
parent 2640e0861f
commit 2043ddb35e
4 changed files with 178 additions and 17 deletions
@@ -68,7 +68,7 @@
:filters="{releaseSplitFlag: '1'}"
:can-selected-source="[StandardSource.DOMESTIC.value]"
type="radio"
@nameChange="handleStandardChange" />
@listChange="handleStandardChange" />
</a-form-item>
</div>
<div class="form-flex-item custom-flex-form-item">
@@ -852,8 +852,10 @@ export default {
* 选择标准带出标准名称
* @param name
*/
handleStandardChange (name) {
this.basicServiceInfoForm.setFieldsValue({ standardName: name, standardTextFileName: null })
handleStandardChange (list) {
const standard = list[0] || {}
this.basicServiceInfoForm.setFieldsValue({ standardName: standard.standardName, standardTextFileName: null })
this.basicServiceInfo.standardId = standard.id
delete this.basicServiceInfo.standardTextFileName
delete this.basicServiceInfo.standardText
delete this.basicServiceInfo.standardTextFileId
@@ -909,6 +911,7 @@ export default {
this.selectedRowKeys = []
},
onSelectChange (selectedRowKeys) {
console.log(selectedRowKeys)
this.selectedRowKeys = selectedRowKeys
},
handleEdit (record, index) {