cloud-web-corejs 1.0.54-dev.467 → 1.0.54-dev.468
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -51,6 +51,7 @@
|
|
|
51
51
|
<el-select v-model="formData.dsType" clearable>
|
|
52
52
|
<el-option :value="0" label="mysql"></el-option>
|
|
53
53
|
<el-option :value="1" label="oracle"></el-option>
|
|
54
|
+
<el-option :value="2" label="doris"></el-option>
|
|
54
55
|
</el-select>
|
|
55
56
|
</template>
|
|
56
57
|
</vxe-form-item>
|
|
@@ -156,6 +157,8 @@ export default {
|
|
|
156
157
|
return 'mysql';
|
|
157
158
|
} else if (row.dsType === 1) {
|
|
158
159
|
return 'oracle';
|
|
160
|
+
} else if (row.dsType === 2) {
|
|
161
|
+
return 'doris';
|
|
159
162
|
}
|
|
160
163
|
}
|
|
161
164
|
}
|
|
@@ -48,6 +48,7 @@
|
|
|
48
48
|
<el-select v-model="formData.dsType" clearable>
|
|
49
49
|
<el-option :value="0" label="mysql"></el-option>
|
|
50
50
|
<el-option :value="1" label="oracle"></el-option>
|
|
51
|
+
<el-option :value="2" label="doris"></el-option>
|
|
51
52
|
</el-select>
|
|
52
53
|
</template>
|
|
53
54
|
</vxe-form-item>
|
|
@@ -133,6 +134,8 @@ export default {
|
|
|
133
134
|
return 'mysql';
|
|
134
135
|
} else if (row.dsType === 1) {
|
|
135
136
|
return 'oracle';
|
|
137
|
+
} else if (row.dsType === 2) {
|
|
138
|
+
return 'doris';
|
|
136
139
|
}
|
|
137
140
|
}
|
|
138
141
|
}
|