@farris/jit-engine 1.3.98 → 1.3.99
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/README.md
CHANGED
|
@@ -30,26 +30,12 @@ fm-listview(
|
|
|
30
30
|
v-on:multipleCancel=variable.multipleCancel?""+variable.multipleCancel:undefined
|
|
31
31
|
v-on:itemClick=variable.itemClick?""+variable.itemClick:undefined
|
|
32
32
|
)
|
|
33
|
-
if(variable.showValidatorResults)
|
|
34
|
-
template(#listViewHeader v-if!="uiState.childValidatorResults && uiState.childValidatorResults.length > 0")
|
|
35
|
-
div(class="fm-listview-error")
|
|
36
|
-
div(
|
|
37
|
-
class="fm-error-cell"
|
|
38
|
-
v-for="item in uiState.childValidatorResults"
|
|
39
|
-
@click=variable.listClick + "({id:item.id,validate:'validate'})"
|
|
40
|
-
)
|
|
41
|
-
<div>
|
|
42
|
-
<fm-icon class="fm-error-icon" name="s-warning-o" />
|
|
43
|
-
<span class="fm-error-text">第{{item.line + 1}}行有问题</span>
|
|
44
|
-
</div>
|
|
45
|
-
<span class="fm-error-text">详情</span>
|
|
46
|
-
|
|
47
33
|
template(v-slot="props")
|
|
48
34
|
if(variable.swipeToolbar)
|
|
49
35
|
each item in variable.swipeToolbar.items
|
|
50
36
|
fm-swipecell
|
|
51
37
|
template(v-slot:right="{close}")
|
|
52
|
-
div(
|
|
38
|
+
div(
|
|
53
39
|
v-if=item.visible?item.visible+"":"false"
|
|
54
40
|
class="fm-list-view-swipe-toolbar"
|
|
55
41
|
@click.stop=item.click?item.click+"({ swipecellClose: close })":undefined
|
|
@@ -57,9 +43,9 @@ fm-listview(
|
|
|
57
43
|
div(class="fm-bussiness-travel-record-list-item limg-rcon--item" @click=variable.listClick?""+variable.listClick:undefined)
|
|
58
44
|
!=variable.contentTemplate?variable.contentTemplate:''
|
|
59
45
|
else if(variable.swipeTemplate)
|
|
60
|
-
fm-swipecell
|
|
46
|
+
fm-swipecell(@click=variable.listClick?""+variable.listClick:undefined)
|
|
61
47
|
!=variable.swipeTemplate?variable.swipeTemplate:''
|
|
62
|
-
div(class="fm-bussiness-travel-record-list-item limg-rcon--item"
|
|
48
|
+
div(class="fm-bussiness-travel-record-list-item limg-rcon--item")
|
|
63
49
|
!=variable.contentTemplate?variable.contentTemplate:''
|
|
64
50
|
else
|
|
65
51
|
div(class="fm-bussiness-travel-record-list-item limg-rcon--item" @click=variable.listClick?""+variable.listClick:undefined)
|