diff --git a/cPager/Common.left.png b/cPager/Common.left.png
new file mode 100644
index 0000000..4763d6b
Binary files /dev/null and b/cPager/Common.left.png differ
diff --git a/cPager/Common.left.svg b/cPager/Common.left.svg
new file mode 100644
index 0000000..1e397d2
--- /dev/null
+++ b/cPager/Common.left.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/cPager/Common.leftMost.png b/cPager/Common.leftMost.png
new file mode 100644
index 0000000..8bb5ffc
Binary files /dev/null and b/cPager/Common.leftMost.png differ
diff --git a/cPager/Common.leftMost.svg b/cPager/Common.leftMost.svg
new file mode 100644
index 0000000..6d15899
--- /dev/null
+++ b/cPager/Common.leftMost.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/cPager/Common.next.png b/cPager/Common.next.png
new file mode 100644
index 0000000..24016d2
Binary files /dev/null and b/cPager/Common.next.png differ
diff --git a/cPager/Common.next.svg b/cPager/Common.next.svg
new file mode 100644
index 0000000..7e9ab4b
--- /dev/null
+++ b/cPager/Common.next.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/cPager/Common.previous.png b/cPager/Common.previous.png
new file mode 100644
index 0000000..6227617
Binary files /dev/null and b/cPager/Common.previous.png differ
diff --git a/cPager/Common.previous.svg b/cPager/Common.previous.svg
new file mode 100644
index 0000000..c074d78
--- /dev/null
+++ b/cPager/Common.previous.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/cPager/Common.right.png b/cPager/Common.right.png
new file mode 100644
index 0000000..959c00e
Binary files /dev/null and b/cPager/Common.right.png differ
diff --git a/cPager/Common.right.svg b/cPager/Common.right.svg
new file mode 100644
index 0000000..148eaf1
--- /dev/null
+++ b/cPager/Common.right.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/cPager/Common.rightMost.png b/cPager/Common.rightMost.png
new file mode 100644
index 0000000..0dd652c
Binary files /dev/null and b/cPager/Common.rightMost.png differ
diff --git a/cPager/Common.rightMost.svg b/cPager/Common.rightMost.svg
new file mode 100644
index 0000000..3912c71
--- /dev/null
+++ b/cPager/Common.rightMost.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/cPager/cPager.vue b/cPager/cPager.vue
index e571a05..40bbab4 100644
--- a/cPager/cPager.vue
+++ b/cPager/cPager.vue
@@ -238,15 +238,15 @@
background: no-repeat center center / contain;
}
.sLeftMostButton{
- background-image: url(/static/Common.leftMost.png)
+ background-image: url(./static/Common.leftMost.png)
}
.sPrevButton{
- background-image: url(/static/Common.previous.png)
+ background-image: url(./static/Common.previous.png)
}
.sNextButton{
- background-image: url(/static/Common.next.png)
+ background-image: url(./static/Common.next.png)
}
.sRightMostButton{
- background-image: url(/static/Common.rightMost.png)
+ background-image: url(./static/Common.rightMost.png)
}
diff --git a/cToast/Common.fail.png b/cToast/Common.fail.png
new file mode 100644
index 0000000..388b13e
Binary files /dev/null and b/cToast/Common.fail.png differ
diff --git a/cToast/Common.info.png b/cToast/Common.info.png
new file mode 100644
index 0000000..424c20f
Binary files /dev/null and b/cToast/Common.info.png differ
diff --git a/cToast/Common.loading.png b/cToast/Common.loading.png
new file mode 100644
index 0000000..d0a6e0a
Binary files /dev/null and b/cToast/Common.loading.png differ
diff --git a/cToast/Common.success.png b/cToast/Common.success.png
new file mode 100644
index 0000000..3fe25f4
Binary files /dev/null and b/cToast/Common.success.png differ
diff --git a/cToast/Common.warn.png b/cToast/Common.warn.png
new file mode 100644
index 0000000..65112c7
Binary files /dev/null and b/cToast/Common.warn.png differ
diff --git a/cToast/cToast.vue b/cToast/cToast.vue
index b33b4af..a6fbcdf 100644
--- a/cToast/cToast.vue
+++ b/cToast/cToast.vue
@@ -33,27 +33,27 @@ based on
methods:{
init:function(toast){
if (toast.type == 'success') {
- toast.icon = toast.icon || '../static/Common.success.png';
+ toast.icon = toast.icon || './Common.success.png';
toast.typeClass='mpopup-success';
return toast;
}
if (toast.type == 'warn') {
- toast.icon = toast.icon || '../static/Common.warn.png';
+ toast.icon = toast.icon || './Common.warn.png';
toast.typeClass='mpopup-warn';
return toast;
}
if (toast.type == 'info') {
- toast.icon = toast.icon || '../static/Common.info.png';
+ toast.icon = toast.icon || './Common.info.png';
toast.typeClass='mpopup-info';
return toast;
}
if (toast.type == 'fail') {
- toast.icon = toast.icon || '../static/Common.fail.png';
+ toast.icon = toast.icon || './Common.fail.png';
toast.typeClass='mpopup-fail';
return toast;
}
if (toast.type == 'loading') {
- toast.icon = toast.icon || '../../static/xuan-popup/loading.png';
+ toast.icon = toast.icon || './Common.loading.png';
toast.typeClass='mpopup-loading';
return toast;
}