This commit is contained in:
fit2-zhao 2021-01-29 11:29:07 +08:00
commit 481d9b0964
5 changed files with 16 additions and 4 deletions

View File

@ -0,0 +1,6 @@
ALTER TABLE swagger_url_project
MODIFY COLUMN id VARCHAR(120);
ALTER TABLE swagger_url_project
MODIFY COLUMN project_id VARCHAR(120);
ALTER TABLE swagger_url_project
MODIFY COLUMN mode_id VARCHAR(120);

View File

@ -113,11 +113,11 @@ export default {
showEnvironmentSelect: true,
modeOptions: [{
id: 'fullCoverage',
name: '全量覆盖'
name: this.$t('commons.cover')
},
{
id: 'incrementalMerge',
name: '增量合并'
name: this.$t('commons.not.cover')
}],
protocol: "",
platforms: [
@ -152,8 +152,8 @@ export default {
formData: {
file: undefined,
swaggerUrl: '',
modeId: '',
moduleId: ''
modeId: this.$t('commons.not.cover'),
moduleId: '',
},
rules: {},
currentModule: {},

View File

@ -1,5 +1,7 @@
export default {
commons: {
cover:'Cover',
not_cover:'Not Cover',
import_mode: 'Import mode',
import_module: 'Import module',
please_fill_in_the_template: 'Please fill in the template',

View File

@ -1,5 +1,7 @@
export default {
commons: {
cover:'覆盖',
not_cover:'不覆盖',
import_mode: '导入模式',
import_module: '导入模块',
please_fill_in_the_template: '请填写模版内容',

View File

@ -1,5 +1,7 @@
export default {
commons: {
cover:'覆蓋',
not_cover:'不覆蓋',
import_mode: '導入模式',
import_module: '導入模塊',
please_fill_in_the_template: '請填寫模版內容',