File tree Expand file tree Collapse file tree
service/modules/workflow-task-relation
projects/workflow/components/dag Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1616 */
1717
1818import { DefineComponent } from 'vue'
19- // import * as $ from 'jquery'
2019
2120declare module '*.vue' {
2221 // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
@@ -30,14 +29,6 @@ declare global {
3029 }
3130}
3231
33- declare global {
34- interface Navigator {
35- msSaveBlob ?: ( blob : any , defaultName ?: string ) => boolean
36- }
37- }
38-
39- declare namespace jquery { }
40-
4132declare module '*.png'
4233declare module '*.jpg'
4334declare module '*.jpeg'
Original file line number Diff line number Diff line change @@ -32,9 +32,5 @@ export default {
3232 email_tips : 'Please enter your email' ,
3333 email_correct_tips : 'Please enter your email in the correct format' ,
3434 phone_tips : 'Please enter your phone' ,
35- state_tips : 'Please choose your state' ,
36- enable : 'Enable' ,
37- disable : 'Disable' ,
38- timezone_success : 'Time zone updated successful' ,
3935 please_select_timezone : 'Choose timeZone'
4036}
Original file line number Diff line number Diff line change @@ -32,9 +32,5 @@ export default {
3232 email_tips : '请输入邮箱' ,
3333 email_correct_tips : '请输入正确格式的邮箱' ,
3434 phone_tips : '请输入手机号' ,
35- state_tips : '请选择状态' ,
36- enable : '启用' ,
37- disable : '禁用' ,
38- timezone_success : '时区更新成功' ,
3935 please_select_timezone : '请选择时区'
4036}
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -197,14 +197,6 @@ export function useForm(id?: number) {
197197 }
198198 }
199199 }
200- // databaseUserName: {
201- // trigger: ['input'],
202- // validator() {
203- // if (!state.detailForm.userName) {
204- // return new Error(t('datasource.user_name_tips'))
205- // }
206- // }
207- // },
208200 } as FormRules ,
209201 modeOptions : [
210202 {
Original file line number Diff line number Diff line change @@ -54,8 +54,6 @@ export function useCellActive(options: Options) {
5454 function setEdgeStyle ( edge : Edge ) {
5555 const isHover = edge === hoverCell . value
5656 const isSelected = graph . value ?. isSelected ( edge )
57- // TODO
58- // const labelName = this.getEdgeLabelName ? this.getEdgeLabelName(edge) : ''
5957 let edgeProps = null
6058
6159 if ( isHover ) {
@@ -69,14 +67,9 @@ export function useCellActive(options: Options) {
6967 edge . setAttrs ( edgeProps . attrs )
7068 edge . setLabels ( [
7169 {
72- ..._ . merge (
73- {
74- attrs : _ . cloneDeep ( edgeProps . defaultLabel . attrs )
75- }
76- // {
77- // attrs: { label: { text: labelName } }
78- // }
79- )
70+ ..._ . merge ( {
71+ attrs : _ . cloneDeep ( edgeProps . defaultLabel . attrs )
72+ } )
8073 }
8174 ] )
8275 }
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments