Skip to content

Commit 2908d65

Browse files
committed
多余代码去除
1 parent 49ce765 commit 2908d65

File tree

3 files changed

+17
-8
lines changed

3 files changed

+17
-8
lines changed

public/app.js

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34569,10 +34569,22 @@ var render = function() {
3456934569
_vm._v(" "),
3457034570
_vm.attrs.paginate && _vm.loadMore && _vm.options.length
3457134571
? _c("el-option", { attrs: { value: undefined } }, [
34572-
_vm._v('")">\n '),
34573-
_c("i", { staticClass: "el-icon-loading" }),
34574-
_vm._v(" "),
34575-
_c("span", [_vm._v("加载更多")])
34572+
_c(
34573+
"div",
34574+
{
34575+
on: {
34576+
click: function($event) {
34577+
$event.stopPropagation()
34578+
return _vm.remoteMethod(null, "next")
34579+
}
34580+
}
34581+
},
34582+
[
34583+
_c("i", { staticClass: "el-icon-loading" }),
34584+
_vm._v(" "),
34585+
_c("span", [_vm._v("加载更多")])
34586+
]
34587+
)
3457634588
])
3457734589
: _vm._e()
3457834590
],

resources/js/components/widgets/Form/Select.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
</div>
4444
</el-option>
4545
<el-option v-if="attrs.paginate && loadMore && options.length" :value="undefined">
46-
<div @click.stop="remoteMethod(null,"next")">
46+
<div @click.stop="remoteMethod(null,'next')">
4747
<i class="el-icon-loading"></i>
4848
<span>加载更多</span>
4949
</div>

resources/js/components/widgets/Form/Upload.vue

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -238,9 +238,6 @@ export default {
238238
.avatar {
239239
border-radius: 50%;
240240
}
241-
.image,
242-
.file {
243-
}
244241
}
245242
}
246243
</style>

0 commit comments

Comments
 (0)