|
@@ -163,10 +163,10 @@ function onCancel() {
|
|
|
// 返回列表页
|
|
// 返回列表页
|
|
|
function goBack() {
|
|
function goBack() {
|
|
|
if (settingsStore.settings.tabbar.enable && settingsStore.settings.tabbar.mergeTabsBy !== 'activeMenu') {
|
|
if (settingsStore.settings.tabbar.enable && settingsStore.settings.tabbar.mergeTabsBy !== 'activeMenu') {
|
|
|
- tabbar.close({ name: 'model' })
|
|
|
|
|
|
|
+ tabbar.close({ name: 'biz_object_index' })
|
|
|
}
|
|
}
|
|
|
else {
|
|
else {
|
|
|
- router.push({ name: 'model' })
|
|
|
|
|
|
|
+ router.push({ name: 'biz_object_index' })
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
</script>
|
|
</script>
|
|
@@ -302,18 +302,16 @@ function goBack() {
|
|
|
/>
|
|
/>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
-
|
|
|
|
|
- <el-table-column label="小数位数" width="130">
|
|
|
|
|
|
|
+ <el-table-column label="长度" width="130">
|
|
|
<template #default="scope">
|
|
<template #default="scope">
|
|
|
<el-input-number
|
|
<el-input-number
|
|
|
v-model="scope.row.attrDecimals" style="width:100px"
|
|
v-model="scope.row.attrDecimals" style="width:100px"
|
|
|
- :min="1"
|
|
|
|
|
|
|
+ :min="0"
|
|
|
controls-position="right"
|
|
controls-position="right"
|
|
|
size="large"
|
|
size="large"
|
|
|
/>
|
|
/>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
-
|
|
|
|
|
<el-table-column label="是否为空" width="90">
|
|
<el-table-column label="是否为空" width="90">
|
|
|
<template #default="scope">
|
|
<template #default="scope">
|
|
|
<el-checkbox v-model="scope.row.isNotNull" :true-label="1" :false-label="0">
|
|
<el-checkbox v-model="scope.row.isNotNull" :true-label="1" :false-label="0">
|