稽查配置更改
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
02af3d9b55
commit
28c357a702
|
@ -49,7 +49,7 @@
|
||||||
<el-table-column prop="Identification" label="标识" :show-overflow-tooltip="true" min-width="200px" />
|
<el-table-column prop="Identification" label="标识" :show-overflow-tooltip="true" min-width="200px" />
|
||||||
<el-table-column prop="OptTypeValueCN" label="操作类型" show-overflow-tooltip width="100px" />
|
<el-table-column prop="OptTypeValueCN" label="操作类型" show-overflow-tooltip width="100px" />
|
||||||
<el-table-column prop="ObjectTypeValueCN" label="对象类型" show-overflow-tooltip min-width="100px" />
|
<el-table-column prop="ObjectTypeValueCN" label="对象类型" show-overflow-tooltip min-width="100px" />
|
||||||
<el-table-column prop="ChildrenTypeValueCN" label="数据类型" show-overflow-tooltip min-width="100px" show-overflow-tooltip />
|
<el-table-column prop="ChildrenTypeValueCN" label="数据类型" show-overflow-tooltip min-width="100px"/>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="Sort"
|
prop="Sort"
|
||||||
label="显示顺序"
|
label="显示顺序"
|
||||||
|
@ -372,6 +372,16 @@
|
||||||
<el-input :disabled="!scope.row.IsFixedColumn" v-model="scope.row.FixedColumnName" placeholder="固定列名"/>
|
<el-input :disabled="!scope.row.IsFixedColumn" v-model="scope.row.FixedColumnName" placeholder="固定列名"/>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="FixedColumnEnName"
|
||||||
|
min-width="120"
|
||||||
|
label="固定列名EN"
|
||||||
|
show-overflow-tooltip
|
||||||
|
>
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-input :disabled="!scope.row.IsFixedColumn" v-model="scope.row.FixedColumnEnName" placeholder="固定列名EN"/>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="ColumnName"
|
prop="ColumnName"
|
||||||
min-width="120"
|
min-width="120"
|
||||||
|
@ -415,6 +425,16 @@
|
||||||
<el-input :disabled="!scope.row.IsMerge" v-model="scope.row.MergeColumnName" placeholder="合并组"/>
|
<el-input :disabled="!scope.row.IsMerge" v-model="scope.row.MergeColumnName" placeholder="合并组"/>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="MergeColumnEnName"
|
||||||
|
min-width="120"
|
||||||
|
label="合并组EN"
|
||||||
|
show-overflow-tooltip
|
||||||
|
>
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-input :disabled="!scope.row.IsMerge" v-model="scope.row.MergeColumnEnName" placeholder="合并组EN"/>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="IsPicture"
|
prop="IsPicture"
|
||||||
min-width="120"
|
min-width="120"
|
||||||
|
@ -559,6 +579,11 @@
|
||||||
<el-input v-model="form.ForeignKeyText" placeholder="请输入数据库字段to" />
|
<el-input v-model="form.ForeignKeyText" placeholder="请输入数据库字段to" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
<el-col v-show="form.ConfigType === 'C' && title !== '复制' && form.EnumType === 'Foreign'" :span="12">
|
||||||
|
<el-form-item label="字段toEN">
|
||||||
|
<el-input v-model="form.ForeignKeyEnText" placeholder="请输入数据库字段toEN" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col v-show="title !== '复制'" :span="24">
|
<el-col v-show="title !== '复制'" :span="24">
|
||||||
|
@ -821,10 +846,12 @@ export default {
|
||||||
ListName: null,
|
ListName: null,
|
||||||
IsFixedColumn: false,
|
IsFixedColumn: false,
|
||||||
FixedColumnName: null,
|
FixedColumnName: null,
|
||||||
|
FixedColumnEnName: null,
|
||||||
ColumnName: null,
|
ColumnName: null,
|
||||||
ColumnValue: null,
|
ColumnValue: null,
|
||||||
IsMerge: false,
|
IsMerge: false,
|
||||||
MergeColumnName: null,
|
MergeColumnName: null,
|
||||||
|
MergeColumnEnName: null,
|
||||||
IsPicture: false,
|
IsPicture: false,
|
||||||
IsDynamicTranslate: false,
|
IsDynamicTranslate: false,
|
||||||
IsNeedTransalate: false,
|
IsNeedTransalate: false,
|
||||||
|
@ -1118,6 +1145,7 @@ export default {
|
||||||
ForeignKeyTableName: null,
|
ForeignKeyTableName: null,
|
||||||
ForeignKeyValue: null,
|
ForeignKeyValue: null,
|
||||||
ForeignKeyText: null,
|
ForeignKeyText: null,
|
||||||
|
ForeignKeyEnText: null,
|
||||||
TableConfigList: [],
|
TableConfigList: [],
|
||||||
UrlConfig: {
|
UrlConfig: {
|
||||||
RoutePath: null,
|
RoutePath: null,
|
||||||
|
|
Loading…
Reference in New Issue