|
@@ -8,10 +8,16 @@
|
|
|
|
|
|
export default
|
|
|
{
|
|
|
+ beforeCreate() {
|
|
|
+ DebugUtil.log("special_list","beforeCreate");
|
|
|
+ },
|
|
|
created() {
|
|
|
this.getNewData();
|
|
|
DebugUtil.log("special_list","created");
|
|
|
},
|
|
|
+ beforeMount() {
|
|
|
+ DebugUtil.log("special_list","beforeMount");
|
|
|
+ },
|
|
|
mounted()
|
|
|
{
|
|
|
DebugUtil.log("special_list","mounted");
|
|
@@ -38,7 +44,12 @@
|
|
|
}
|
|
|
let WxShare = Api.create_share(shareMsg);
|
|
|
},
|
|
|
-
|
|
|
+ beforeUpdate() {
|
|
|
+ DebugUtil.log("special_list","beforeUpdate");
|
|
|
+ },
|
|
|
+ updated() {
|
|
|
+ DebugUtil.log("special_list","updated");
|
|
|
+ },
|
|
|
data(){
|
|
|
return {
|
|
|
order: 'desc',
|