税率
This commit is contained in:
@ -21,18 +21,19 @@
|
||||
</template>
|
||||
</BasicTable>
|
||||
<BankModal @register="registerModal" @success="handleSuccess" />
|
||||
<!-- <div>
|
||||
|
||||
<DataLog :logId="logId" :logPath="logPath" />
|
||||
</div> -->
|
||||
|
||||
<DataLog :logId="logId" :logPath="logPath" v-model:visible="modalVisible"/>
|
||||
|
||||
</PageWrapper>
|
||||
</template>
|
||||
<script lang="ts" setup>
|
||||
import { ref, computed, onMounted, onUnmounted, createVNode, reactive,
|
||||
|
||||
} from 'vue';
|
||||
const logId = ref('77773434')
|
||||
const logPath = ref('/bank/b')
|
||||
const modalVisible = ref(false);
|
||||
const logId = ref('')
|
||||
const logPath = ref('/mdm/bank/datalog');
|
||||
import { Modal } from 'ant-design-vue';
|
||||
import { ExclamationCircleOutlined } from '@ant-design/icons-vue';
|
||||
import { BasicTable, useTable, TableAction, ActionItem } from '/@/components/Table';
|
||||
@ -191,8 +192,10 @@ const logPath = ref('/bank/b')
|
||||
|
||||
btnEvent[code]();
|
||||
}
|
||||
function handleDatalog () {
|
||||
dataObj.visible = true
|
||||
function handleDatalog (record: Recordable) {
|
||||
modalVisible.value = true
|
||||
logId.value = record.id
|
||||
console.log('日志', modalVisible.value, record)
|
||||
}
|
||||
function handleAdd() {
|
||||
if (schemaIdComputedRef.value) {
|
||||
|
||||
Reference in New Issue
Block a user