File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed
views/application-workflow Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -268,10 +268,10 @@ async function publicHandle() {
268268 const node = res .node
269269 const err_message = res .errMessage
270270 if (typeof err_message == ' string' ) {
271- MsgError (res .node .properties ?.stepName + ` ${t (' views.applicationWorkflow.node' )}, ` + err_message )
271+ MsgError (res .node .properties ?.stepName + ` ${t (' views.applicationWorkflow.node' ). toLowerCase ()} ` + err_message . toLowerCase () )
272272 } else {
273273 const keys = Object .keys (err_message )
274- MsgError (node .properties ?.stepName + ` ${t (' views.applicationWorkflow.node' )}, ` + err_message [keys [0 ]]?.[0 ]?.message )
274+ MsgError (node .properties ?.stepName + ` ${t (' views.applicationWorkflow.node' ). toLowerCase ()} ` + err_message [keys [0 ]]?.[0 ]?.message . toLowerCase () )
275275 }
276276 })
277277}
Original file line number Diff line number Diff line change 2222 </div >
2323 </template >
2424 </el-table-column >
25- <el-table-column :label =" $t('common.operation')" align =" left" width =" 80 " >
25+ <el-table-column :label =" $t('common.operation')" align =" left" width =" 90 " >
2626 <template #default =" { row , $index } " >
2727 <span class =" mr-4" >
2828 <el-tooltip effect =" dark" :content =" $t('common.modify')" placement =" top" >
Original file line number Diff line number Diff line change 1313 :data =" props.nodeModel.properties.user_input_field_list"
1414 class =" mb-16"
1515 >
16- <el-table-column prop =" field" :label =" $t('dynamicsForm.paramForm.field.label')" >
16+ <el-table-column prop =" field" :label =" $t('dynamicsForm.paramForm.field.label')" width = " 95 " >
1717 <template #default =" { row } " >
1818 <span :title =" row.field" class =" ellipsis-1" >{{ row.field }}</span >
1919 </template >
7171 </div >
7272 </template >
7373 </el-table-column >
74- <el-table-column :label =" $t('common.operation')" align =" left" width =" 80 " >
74+ <el-table-column :label =" $t('common.operation')" align =" left" width =" 90 " >
7575 <template #default =" { row , $index } " >
7676 <span class =" mr-4" >
7777 <el-tooltip effect =" dark" :content =" $t('common.modify')" placement =" top" >
Original file line number Diff line number Diff line change 7373 <el-table-column
7474 prop =" field"
7575 :label =" $t('dynamicsForm.paramForm.field.label')"
76+ width =" 95"
7677 >
7778 <template #default =" { row } " >
7879 <span :title =" row.field" class =" ellipsis-1" >{{ row.field }}</span >
117118 }}</span >
118119 </template >
119120 </el-table-column >
120- <el-table-column :label =" $t('common.required')" >
121+ <el-table-column :label =" $t('common.required')" width = " 85 " >
121122 <template #default =" { row } " >
122123 <div @click.stop >
123124 <el-switch disabled size =" small" v-model =" row.required" />
124125 </div >
125126 </template >
126127 </el-table-column >
127- <el-table-column :label =" $t('common.operation')" align =" left" width =" 80 " >
128+ <el-table-column :label =" $t('common.operation')" align =" left" width =" 90 " >
128129 <template #default =" { row , $index } " >
129130 <span class =" mr-4" >
130131 <el-tooltip effect =" dark" :content =" $t('common.modify')" placement =" top" >
Original file line number Diff line number Diff line change @@ -206,7 +206,6 @@ function refresh() {
206206}
207207
208208const validate = () => {
209- console .log (DatasetNodeFormRef .value )
210209 return Promise .all ([
211210 nodeCascaderRef .value .validate (),
212211 DatasetNodeFormRef .value ?.validate ()
You can’t perform that action at this time.
0 commit comments