|
|
@ -45,7 +45,7 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
<script lang="ts" setup> |
|
|
|
<script lang="ts" setup> |
|
|
|
import {reactive, computed, ref} from 'vue'; |
|
|
|
import { reactive, computed, ref } from 'vue'; |
|
|
|
import { BasicForm, useForm } from '/@/components/Form/index'; |
|
|
|
import { BasicForm, useForm } from '/@/components/Form/index'; |
|
|
|
import { formSchema, gencodeCustomFieldColumns } from './genCustomObj.data'; |
|
|
|
import { formSchema, gencodeCustomFieldColumns } from './genCustomObj.data'; |
|
|
|
import { saveAndGencodeCustomField, getGencodeCustomObj, selectListByValue } from '/@/api/platform/system/controller/gencodeCustomObj'; |
|
|
|
import { saveAndGencodeCustomField, getGencodeCustomObj, selectListByValue } from '/@/api/platform/system/controller/gencodeCustomObj'; |
|
|
@ -136,7 +136,7 @@ import {reactive, computed, ref} from 'vue'; |
|
|
|
{ |
|
|
|
{ |
|
|
|
field: 'type', |
|
|
|
field: 'type', |
|
|
|
componentProps: { |
|
|
|
componentProps: { |
|
|
|
onChange: (e: ChangeEvent) => state.tableVisible = e.target.value == '0' |
|
|
|
onChange: (e: ChangeEvent) => e.target?.value && (state.tableVisible = e.target.value == '0') |
|
|
|
} |
|
|
|
} |
|
|
|
}]); |
|
|
|
}]); |
|
|
|
// 采用tag标签区分操作 |
|
|
|
// 采用tag标签区分操作 |
|
|
|