mali-applet-ui 0.2.28 → 0.2.30
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.
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
<text v-else class="ml-form-item-default-content">{{ itemValue }}</text>
|
|
21
21
|
</slot>
|
|
22
22
|
</view>
|
|
23
|
-
<view class="ml-form-item-content-error">{{ itemErrRule.message }}</view>
|
|
23
|
+
<view v-if="itemErrRule" class="ml-form-item-content-error">{{ itemErrRule.message }}</view>
|
|
24
24
|
</view>
|
|
25
25
|
</view>
|
|
26
26
|
</template>
|
|
@@ -126,7 +126,6 @@ export default {
|
|
|
126
126
|
}
|
|
127
127
|
},
|
|
128
128
|
urlList () {
|
|
129
|
-
debugger
|
|
130
129
|
this.loadList()
|
|
131
130
|
}
|
|
132
131
|
},
|
|
@@ -135,7 +134,6 @@ export default {
|
|
|
135
134
|
},
|
|
136
135
|
methods: {
|
|
137
136
|
loadList () {
|
|
138
|
-
debugger
|
|
139
137
|
if (this.simpleValue) {
|
|
140
138
|
this.fileList = this.urlList.map(url => {
|
|
141
139
|
const name = this.getUrlName(url)
|
package/package.json
CHANGED