From b4a0f8927516f95aa9afabed1289a16dfff0d447 Mon Sep 17 00:00:00 2001 From: kaiend Date: Tue, 30 Jan 2018 14:27:10 +0800 Subject: [PATCH] 2 --- .idea/fastadmin.iml | 8 + .idea/modules.xml | 8 + .idea/vcs.xml | 6 + .idea/workspace.xml | 256 +++++++++ .../admin/command/Install/install.lock | 1 + .../admin/controller/company/Companyset.php | 40 ++ application/admin/controller/order/Order.php | 38 ++ .../admin/controller/product/Newtravel.php | 42 ++ .../controller/product/Productaddress.php | 37 ++ .../controller/product/Productairport.php | 39 ++ .../admin/controller/product/Productcar.php | 38 ++ .../controller/product/Productcarrental.php | 38 ++ .../admin/controller/product/Productday.php | 38 ++ .../controller/product/Productexperience.php | 39 ++ .../admin/controller/product/Productfood.php | 38 ++ .../controller/product/Producthotels.php | 40 ++ .../admin/controller/product/Productlocal.php | 38 ++ .../controller/product/Productmanydays.php | 41 ++ .../admin/controller/product/Productshow.php | 39 ++ .../controller/product/Producttickets.php | 39 ++ .../controller/product/Producttraffic.php | 39 ++ .../admin/lang/zh-cn/company/companyset.php | 46 ++ application/admin/lang/zh-cn/order/order.php | 26 + .../admin/lang/zh-cn/product/newtravel.php | 122 +++++ .../lang/zh-cn/product/productaddress.php | 13 + .../lang/zh-cn/product/productairport.php | 33 ++ .../admin/lang/zh-cn/product/productcar.php | 37 ++ .../lang/zh-cn/product/productcarrental.php | 32 ++ .../admin/lang/zh-cn/product/productday.php | 37 ++ .../lang/zh-cn/product/productexperience.php | 54 ++ .../admin/lang/zh-cn/product/productfood.php | 32 ++ .../lang/zh-cn/product/producthotels.php | 62 +++ .../admin/lang/zh-cn/product/productlocal.php | 48 ++ .../lang/zh-cn/product/productmanydays.php | 64 +++ .../admin/lang/zh-cn/product/productshow.php | 52 ++ .../lang/zh-cn/product/producttickets.php | 34 ++ .../lang/zh-cn/product/producttraffic.php | 49 ++ application/admin/model/CompanySet.php | 94 ++++ application/admin/model/NewTravel.php | 134 +++++ application/admin/model/Order.php | 67 +++ application/admin/model/ProductAddress.php | 33 ++ application/admin/model/ProductAirport.php | 70 +++ application/admin/model/ProductCar.php | 56 ++ application/admin/model/ProductCarRental.php | 56 ++ application/admin/model/ProductDay.php | 56 ++ application/admin/model/ProductExperience.php | 70 +++ application/admin/model/ProductFood.php | 56 ++ application/admin/model/ProductHotels.php | 84 +++ application/admin/model/ProductLocal.php | 56 ++ application/admin/model/ProductManydays.php | 98 ++++ application/admin/model/ProductShow.php | 70 +++ application/admin/model/ProductTickets.php | 70 +++ application/admin/model/ProductTraffic.php | 70 +++ application/admin/validate/CompanySet.php | 27 + application/admin/validate/NewTravel.php | 27 + application/admin/validate/Order.php | 27 + application/admin/validate/ProductAddress.php | 27 + application/admin/validate/ProductAirport.php | 27 + application/admin/validate/ProductCar.php | 27 + .../admin/validate/ProductCarRental.php | 27 + application/admin/validate/ProductDay.php | 27 + .../admin/validate/ProductExperience.php | 27 + application/admin/validate/ProductFood.php | 27 + application/admin/validate/ProductHotels.php | 27 + application/admin/validate/ProductLocal.php | 27 + .../admin/validate/ProductManydays.php | 27 + application/admin/validate/ProductShow.php | 27 + application/admin/validate/ProductTickets.php | 27 + application/admin/validate/ProductTraffic.php | 27 + application/admin/view/common/header.html | 14 +- application/admin/view/common/menu.html | 5 +- .../admin/view/company/companyset/add.html | 122 +++++ .../admin/view/company/companyset/edit.html | 122 +++++ .../admin/view/company/companyset/index.html | 33 ++ application/admin/view/index/index.html | 2 +- application/admin/view/order/order/add.html | 124 +++++ application/admin/view/order/order/edit.html | 124 +++++ application/admin/view/order/order/index.html | 33 ++ .../admin/view/product/newtravel/add.html | 88 +++ .../admin/view/product/newtravel/edit.html | 88 +++ .../admin/view/product/newtravel/index.html | 33 ++ .../view/product/productaddress/add.html | 58 ++ .../view/product/productaddress/edit.html | 58 ++ .../view/product/productaddress/index.html | 33 ++ .../view/product/productairport/add.html | 150 +++++ .../view/product/productairport/edit.html | 150 +++++ .../view/product/productairport/index.html | 33 ++ .../admin/view/product/productcar/add.html | 184 +++++++ .../admin/view/product/productcar/edit.html | 184 +++++++ .../admin/view/product/productcar/index.html | 33 ++ .../view/product/productcarrental/add.html | 138 +++++ .../view/product/productcarrental/edit.html | 138 +++++ .../view/product/productcarrental/index.html | 33 ++ .../admin/view/product/productday/add.html | 176 ++++++ .../admin/view/product/productday/edit.html | 176 ++++++ .../admin/view/product/productday/index.html | 33 ++ .../view/product/productexperience/add.html | 196 +++++++ .../view/product/productexperience/edit.html | 196 +++++++ .../view/product/productexperience/index.html | 33 ++ .../admin/view/product/productfood/add.html | 138 +++++ .../admin/view/product/productfood/edit.html | 138 +++++ .../admin/view/product/productfood/index.html | 33 ++ .../admin/view/product/producthotels/add.html | 238 ++++++++ .../view/product/producthotels/edit.html | 238 ++++++++ .../view/product/producthotels/index.html | 33 ++ .../admin/view/product/productlocal/add.html | 186 +++++++ .../admin/view/product/productlocal/edit.html | 186 +++++++ .../view/product/productlocal/index.html | 33 ++ .../view/product/productmanydays/add.html | 256 +++++++++ .../view/product/productmanydays/edit.html | 256 +++++++++ .../view/product/productmanydays/index.html | 33 ++ .../admin/view/product/productshow/add.html | 176 ++++++ .../admin/view/product/productshow/edit.html | 176 ++++++ .../admin/view/product/productshow/index.html | 33 ++ .../view/product/producttickets/add.html | 156 ++++++ .../view/product/producttickets/edit.html | 156 ++++++ .../view/product/producttickets/index.html | 33 ++ .../view/product/producttraffic/add.html | 150 +++++ .../view/product/producttraffic/edit.html | 150 +++++ .../view/product/producttraffic/index.html | 33 ++ application/database.php | 6 +- application/index/view/index/index.html | 105 +--- .../assets/js/backend/company/companyset.js | 65 +++ public/assets/js/backend/order/order.js | 68 +++ public/assets/js/backend/product/newtravel.js | 62 +++ .../js/backend/product/productaddress.js | 57 ++ .../js/backend/product/productairport.js | 67 +++ .../assets/js/backend/product/productcar.js | 70 +++ .../js/backend/product/productcarrental.js | 65 +++ .../assets/js/backend/product/productday.js | 70 +++ .../js/backend/product/productexperience.js | 72 +++ .../assets/js/backend/product/productfood.js | 65 +++ .../js/backend/product/producthotels.js | 79 +++ .../assets/js/backend/product/productlocal.js | 69 +++ .../js/backend/product/productmanydays.js | 82 +++ .../assets/js/backend/product/productshow.js | 70 +++ .../js/backend/product/producttickets.js | 68 +++ .../js/backend/product/producttraffic.js | 67 +++ .../4e/819c837d54a6ed09abc77a8560a66f.php | 4 + .../cb/78ef4a9130f39208ff10858ddd8377.php | 4 + .../temp/091a0a651a12c8199d7540311a02d933.php | 84 +++ .../temp/1feb9383f08355fcdeb7ba4b3199f9b6.php | 125 +++++ .../temp/2e0a3e29fe8d91949c529ddeeb8e7b78.php | 184 +++++++ .../temp/2ef507f6e4a42aa5a81c8ecec008db99.php | 61 +++ .../temp/36813dae434ccff1bbc529d16a2b7a23.php | 388 +++++++++++++ .../temp/49922a973702eb6af9a21a76ac7c0293.php | 169 ++++++ .../temp/520f9941a7a1ee51bce0f14496001a47.php | 125 +++++ .../temp/5f4f1e60c2b02beeeff375215604403b.php | 95 ++++ .../temp/a7fb933f17099783b80e1f3ffc8f3c65.php | 95 ++++ .../temp/a994b6a0ec671b3a54153ca2ff92e1a2.php | 513 ++++++++++++++++++ .../temp/bbf28c295054d83b34702d2261e919ba.php | 95 ++++ 151 files changed, 11865 insertions(+), 120 deletions(-) create mode 100644 .idea/fastadmin.iml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml create mode 100644 application/admin/command/Install/install.lock create mode 100644 application/admin/controller/company/Companyset.php create mode 100644 application/admin/controller/order/Order.php create mode 100644 application/admin/controller/product/Newtravel.php create mode 100644 application/admin/controller/product/Productaddress.php create mode 100644 application/admin/controller/product/Productairport.php create mode 100644 application/admin/controller/product/Productcar.php create mode 100644 application/admin/controller/product/Productcarrental.php create mode 100644 application/admin/controller/product/Productday.php create mode 100644 application/admin/controller/product/Productexperience.php create mode 100644 application/admin/controller/product/Productfood.php create mode 100644 application/admin/controller/product/Producthotels.php create mode 100644 application/admin/controller/product/Productlocal.php create mode 100644 application/admin/controller/product/Productmanydays.php create mode 100644 application/admin/controller/product/Productshow.php create mode 100644 application/admin/controller/product/Producttickets.php create mode 100644 application/admin/controller/product/Producttraffic.php create mode 100644 application/admin/lang/zh-cn/company/companyset.php create mode 100644 application/admin/lang/zh-cn/order/order.php create mode 100644 application/admin/lang/zh-cn/product/newtravel.php create mode 100644 application/admin/lang/zh-cn/product/productaddress.php create mode 100644 application/admin/lang/zh-cn/product/productairport.php create mode 100644 application/admin/lang/zh-cn/product/productcar.php create mode 100644 application/admin/lang/zh-cn/product/productcarrental.php create mode 100644 application/admin/lang/zh-cn/product/productday.php create mode 100644 application/admin/lang/zh-cn/product/productexperience.php create mode 100644 application/admin/lang/zh-cn/product/productfood.php create mode 100644 application/admin/lang/zh-cn/product/producthotels.php create mode 100644 application/admin/lang/zh-cn/product/productlocal.php create mode 100644 application/admin/lang/zh-cn/product/productmanydays.php create mode 100644 application/admin/lang/zh-cn/product/productshow.php create mode 100644 application/admin/lang/zh-cn/product/producttickets.php create mode 100644 application/admin/lang/zh-cn/product/producttraffic.php create mode 100644 application/admin/model/CompanySet.php create mode 100644 application/admin/model/NewTravel.php create mode 100644 application/admin/model/Order.php create mode 100644 application/admin/model/ProductAddress.php create mode 100644 application/admin/model/ProductAirport.php create mode 100644 application/admin/model/ProductCar.php create mode 100644 application/admin/model/ProductCarRental.php create mode 100644 application/admin/model/ProductDay.php create mode 100644 application/admin/model/ProductExperience.php create mode 100644 application/admin/model/ProductFood.php create mode 100644 application/admin/model/ProductHotels.php create mode 100644 application/admin/model/ProductLocal.php create mode 100644 application/admin/model/ProductManydays.php create mode 100644 application/admin/model/ProductShow.php create mode 100644 application/admin/model/ProductTickets.php create mode 100644 application/admin/model/ProductTraffic.php create mode 100644 application/admin/validate/CompanySet.php create mode 100644 application/admin/validate/NewTravel.php create mode 100644 application/admin/validate/Order.php create mode 100644 application/admin/validate/ProductAddress.php create mode 100644 application/admin/validate/ProductAirport.php create mode 100644 application/admin/validate/ProductCar.php create mode 100644 application/admin/validate/ProductCarRental.php create mode 100644 application/admin/validate/ProductDay.php create mode 100644 application/admin/validate/ProductExperience.php create mode 100644 application/admin/validate/ProductFood.php create mode 100644 application/admin/validate/ProductHotels.php create mode 100644 application/admin/validate/ProductLocal.php create mode 100644 application/admin/validate/ProductManydays.php create mode 100644 application/admin/validate/ProductShow.php create mode 100644 application/admin/validate/ProductTickets.php create mode 100644 application/admin/validate/ProductTraffic.php create mode 100644 application/admin/view/company/companyset/add.html create mode 100644 application/admin/view/company/companyset/edit.html create mode 100644 application/admin/view/company/companyset/index.html create mode 100644 application/admin/view/order/order/add.html create mode 100644 application/admin/view/order/order/edit.html create mode 100644 application/admin/view/order/order/index.html create mode 100644 application/admin/view/product/newtravel/add.html create mode 100644 application/admin/view/product/newtravel/edit.html create mode 100644 application/admin/view/product/newtravel/index.html create mode 100644 application/admin/view/product/productaddress/add.html create mode 100644 application/admin/view/product/productaddress/edit.html create mode 100644 application/admin/view/product/productaddress/index.html create mode 100644 application/admin/view/product/productairport/add.html create mode 100644 application/admin/view/product/productairport/edit.html create mode 100644 application/admin/view/product/productairport/index.html create mode 100644 application/admin/view/product/productcar/add.html create mode 100644 application/admin/view/product/productcar/edit.html create mode 100644 application/admin/view/product/productcar/index.html create mode 100644 application/admin/view/product/productcarrental/add.html create mode 100644 application/admin/view/product/productcarrental/edit.html create mode 100644 application/admin/view/product/productcarrental/index.html create mode 100644 application/admin/view/product/productday/add.html create mode 100644 application/admin/view/product/productday/edit.html create mode 100644 application/admin/view/product/productday/index.html create mode 100644 application/admin/view/product/productexperience/add.html create mode 100644 application/admin/view/product/productexperience/edit.html create mode 100644 application/admin/view/product/productexperience/index.html create mode 100644 application/admin/view/product/productfood/add.html create mode 100644 application/admin/view/product/productfood/edit.html create mode 100644 application/admin/view/product/productfood/index.html create mode 100644 application/admin/view/product/producthotels/add.html create mode 100644 application/admin/view/product/producthotels/edit.html create mode 100644 application/admin/view/product/producthotels/index.html create mode 100644 application/admin/view/product/productlocal/add.html create mode 100644 application/admin/view/product/productlocal/edit.html create mode 100644 application/admin/view/product/productlocal/index.html create mode 100644 application/admin/view/product/productmanydays/add.html create mode 100644 application/admin/view/product/productmanydays/edit.html create mode 100644 application/admin/view/product/productmanydays/index.html create mode 100644 application/admin/view/product/productshow/add.html create mode 100644 application/admin/view/product/productshow/edit.html create mode 100644 application/admin/view/product/productshow/index.html create mode 100644 application/admin/view/product/producttickets/add.html create mode 100644 application/admin/view/product/producttickets/edit.html create mode 100644 application/admin/view/product/producttickets/index.html create mode 100644 application/admin/view/product/producttraffic/add.html create mode 100644 application/admin/view/product/producttraffic/edit.html create mode 100644 application/admin/view/product/producttraffic/index.html create mode 100644 public/assets/js/backend/company/companyset.js create mode 100644 public/assets/js/backend/order/order.js create mode 100644 public/assets/js/backend/product/newtravel.js create mode 100644 public/assets/js/backend/product/productaddress.js create mode 100644 public/assets/js/backend/product/productairport.js create mode 100644 public/assets/js/backend/product/productcar.js create mode 100644 public/assets/js/backend/product/productcarrental.js create mode 100644 public/assets/js/backend/product/productday.js create mode 100644 public/assets/js/backend/product/productexperience.js create mode 100644 public/assets/js/backend/product/productfood.js create mode 100644 public/assets/js/backend/product/producthotels.js create mode 100644 public/assets/js/backend/product/productlocal.js create mode 100644 public/assets/js/backend/product/productmanydays.js create mode 100644 public/assets/js/backend/product/productshow.js create mode 100644 public/assets/js/backend/product/producttickets.js create mode 100644 public/assets/js/backend/product/producttraffic.js create mode 100644 runtime/cache/4e/819c837d54a6ed09abc77a8560a66f.php create mode 100644 runtime/cache/cb/78ef4a9130f39208ff10858ddd8377.php create mode 100644 runtime/temp/091a0a651a12c8199d7540311a02d933.php create mode 100644 runtime/temp/1feb9383f08355fcdeb7ba4b3199f9b6.php create mode 100644 runtime/temp/2e0a3e29fe8d91949c529ddeeb8e7b78.php create mode 100644 runtime/temp/2ef507f6e4a42aa5a81c8ecec008db99.php create mode 100644 runtime/temp/36813dae434ccff1bbc529d16a2b7a23.php create mode 100644 runtime/temp/49922a973702eb6af9a21a76ac7c0293.php create mode 100644 runtime/temp/520f9941a7a1ee51bce0f14496001a47.php create mode 100644 runtime/temp/5f4f1e60c2b02beeeff375215604403b.php create mode 100644 runtime/temp/a7fb933f17099783b80e1f3ffc8f3c65.php create mode 100644 runtime/temp/a994b6a0ec671b3a54153ca2ff92e1a2.php create mode 100644 runtime/temp/bbf28c295054d83b34702d2261e919ba.php diff --git a/.idea/fastadmin.iml b/.idea/fastadmin.iml new file mode 100644 index 00000000..c956989b --- /dev/null +++ b/.idea/fastadmin.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 00000000..b61da765 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 00000000..94a25f7f --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 00000000..5b3c862d --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,256 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + DEFINITION_ORDER + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +
+
+ +
+ + +
+ +
+
    +
    +
    +
    + +
    +
    + +
    + + +
    + +
    +
      +
      +
      +
      + +
      + +
      + {foreach name="companyscaledataList" item="vo"} + + {/foreach} +
      + +
      +
      +
      + +
      + +
      +
      +
      + +
      + +
      +
      +
      + +
      + +
      +
      +
      + +
      + +
      + {foreach name="companresourcesdataList" item="vo"} + + {/foreach} +
      + +
      +
      +
      + +
      + +
      +
      +
      + +
      + +
      + {foreach name="offlinestoredataList" item="vo"} + + {/foreach} +
      + +
      +
      +
      + +
      + +
      + {foreach name="cooperationplatformdataList" item="vo"} + + {/foreach} +
      + +
      +
      + + diff --git a/application/admin/view/company/companyset/edit.html b/application/admin/view/company/companyset/edit.html new file mode 100644 index 00000000..f145b5df --- /dev/null +++ b/application/admin/view/company/companyset/edit.html @@ -0,0 +1,122 @@ +
      + +
      + +
      + +
      +
      +
      + +
      + +
      +
      +
      + +
      +
      + +
      + + +
      + +
      +
        +
        +
        +
        + +
        +
        + +
        + + +
        + +
        +
          +
          +
          +
          + +
          + +
          + {foreach name="companyscaledataList" item="vo"} + + {/foreach} +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          + {foreach name="companresourcesdataList" item="vo"} + + {/foreach} +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          + {foreach name="offlinestoredataList" item="vo"} + + {/foreach} +
          + +
          +
          +
          + +
          + +
          + {foreach name="cooperationplatformdataList" item="vo"} + + {/foreach} +
          + +
          +
          + +
          diff --git a/application/admin/view/company/companyset/index.html b/application/admin/view/company/companyset/index.html new file mode 100644 index 00000000..805b3b4f --- /dev/null +++ b/application/admin/view/company/companyset/index.html @@ -0,0 +1,33 @@ + diff --git a/application/admin/view/index/index.html b/application/admin/view/index/index.html index 1dd94b91..6fe02b2a 100644 --- a/application/admin/view/index/index.html +++ b/application/admin/view/index/index.html @@ -22,7 +22,7 @@
          - Copyright © 2017-2018 Fastadmin. All rights + Copyright © 2017-2018 >. All rights reserved.
          diff --git a/application/admin/view/order/order/add.html b/application/admin/view/order/order/add.html new file mode 100644 index 00000000..5f790a1f --- /dev/null +++ b/application/admin/view/order/order/add.html @@ -0,0 +1,124 @@ +
          + +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          + {foreach name="orderStatusList" item="vo"} + + {/foreach} +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          + {foreach name="commentStatusList" item="vo"} + + {/foreach} +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          + +
          diff --git a/application/admin/view/order/order/edit.html b/application/admin/view/order/order/edit.html new file mode 100644 index 00000000..e81aedcc --- /dev/null +++ b/application/admin/view/order/order/edit.html @@ -0,0 +1,124 @@ +
          + +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          + {foreach name="orderStatusList" item="vo"} + + {/foreach} +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          + {foreach name="commentStatusList" item="vo"} + + {/foreach} +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          + +
          diff --git a/application/admin/view/order/order/index.html b/application/admin/view/order/order/index.html new file mode 100644 index 00000000..7bfcebe1 --- /dev/null +++ b/application/admin/view/order/order/index.html @@ -0,0 +1,33 @@ + diff --git a/application/admin/view/product/newtravel/add.html b/application/admin/view/product/newtravel/add.html new file mode 100644 index 00000000..ef67d7b9 --- /dev/null +++ b/application/admin/view/product/newtravel/add.html @@ -0,0 +1,88 @@ +
          + +
          + +
          + +
          +
          +
          + +
          + + + +
          +
          +
          + +
          + +
          + {foreach name="travelersnumberdataList" item="vo"} + + {/foreach} +
          + +
          +
          +
          + +
          + +
          + {foreach name="travelerinformationdataList" item="vo"} + + {/foreach} +
          + +
          +
          +
          + +
          + +
          + {foreach name="tripinformationdataList" item="vo"} + + {/foreach} +
          + +
          +
          +
          + +
          + +
          + {foreach name="backaddressdataList" item="vo"} + + {/foreach} +
          + +
          +
          +
          + +
          + +
          + {foreach name="receivingaddressdataList" item="vo"} + + {/foreach} +
          + +
          +
          + +
          diff --git a/application/admin/view/product/newtravel/edit.html b/application/admin/view/product/newtravel/edit.html new file mode 100644 index 00000000..d1357373 --- /dev/null +++ b/application/admin/view/product/newtravel/edit.html @@ -0,0 +1,88 @@ +
          + +
          + +
          + +
          +
          +
          + +
          + + + +
          +
          +
          + +
          + +
          + {foreach name="travelersnumberdataList" item="vo"} + + {/foreach} +
          + +
          +
          +
          + +
          + +
          + {foreach name="travelerinformationdataList" item="vo"} + + {/foreach} +
          + +
          +
          +
          + +
          + +
          + {foreach name="tripinformationdataList" item="vo"} + + {/foreach} +
          + +
          +
          +
          + +
          + +
          + {foreach name="backaddressdataList" item="vo"} + + {/foreach} +
          + +
          +
          +
          + +
          + +
          + {foreach name="receivingaddressdataList" item="vo"} + + {/foreach} +
          + +
          +
          + +
          diff --git a/application/admin/view/product/newtravel/index.html b/application/admin/view/product/newtravel/index.html new file mode 100644 index 00000000..3022da69 --- /dev/null +++ b/application/admin/view/product/newtravel/index.html @@ -0,0 +1,33 @@ + diff --git a/application/admin/view/product/productaddress/add.html b/application/admin/view/product/productaddress/add.html new file mode 100644 index 00000000..df1fe8fe --- /dev/null +++ b/application/admin/view/product/productaddress/add.html @@ -0,0 +1,58 @@ +
          + +
          + +
          +
          +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          + +
          diff --git a/application/admin/view/product/productaddress/edit.html b/application/admin/view/product/productaddress/edit.html new file mode 100644 index 00000000..1dc5f9a6 --- /dev/null +++ b/application/admin/view/product/productaddress/edit.html @@ -0,0 +1,58 @@ +
          + +
          + +
          +
          +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          + +
          diff --git a/application/admin/view/product/productaddress/index.html b/application/admin/view/product/productaddress/index.html new file mode 100644 index 00000000..04a86a14 --- /dev/null +++ b/application/admin/view/product/productaddress/index.html @@ -0,0 +1,33 @@ + diff --git a/application/admin/view/product/productairport/add.html b/application/admin/view/product/productairport/add.html new file mode 100644 index 00000000..008eaf1e --- /dev/null +++ b/application/admin/view/product/productairport/add.html @@ -0,0 +1,150 @@ +
          + +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          + +
          +
          +
          + +
          +
          + +
          + + +
          + +
          +
            +
            +
            +
            + +
            + +
            +
            +
            + +
            + +
            + {foreach name="advancedataList" item="vo"} + + {/foreach} +
            + +
            +
            +
            + +
            + +
            +
            +
            + +
            + +
            +
            +
            + +
            + +
            +
            +
            + +
            + +
            +
            +
            + +
            + +
            +
            +
            + +
            + +
            +
            +
            + +
            + +
            +
            +
            + +
            + +
            +
            +
            + +
            + +
            +
            +
            + +
            + +
            +
            +
            + +
            + +
            +
            +
            + +
            + + + +
            +
            +
            + +
            + +
            + {foreach name="statusList" item="vo"} + + {/foreach} +
            + +
            +
            + +
            diff --git a/application/admin/view/product/productairport/edit.html b/application/admin/view/product/productairport/edit.html new file mode 100644 index 00000000..8c3231aa --- /dev/null +++ b/application/admin/view/product/productairport/edit.html @@ -0,0 +1,150 @@ +
            + +
            + +
            + +
            +
            +
            + +
            + +
            +
            +
            + +
            + +
            +
            +
            + +
            +
            + +
            + + +
            + +
            +
              +
              +
              +
              + +
              + +
              +
              +
              + +
              + +
              + {foreach name="advancedataList" item="vo"} + + {/foreach} +
              + +
              +
              +
              + +
              + +
              +
              +
              + +
              + +
              +
              +
              + +
              + +
              +
              +
              + +
              + +
              +
              +
              + +
              + +
              +
              +
              + +
              + +
              +
              +
              + +
              + +
              +
              +
              + +
              + +
              +
              +
              + +
              + +
              +
              +
              + +
              + +
              +
              +
              + +
              + +
              +
              +
              + +
              + + + +
              +
              +
              + +
              + +
              + {foreach name="statusList" item="vo"} + + {/foreach} +
              + +
              +
              + +
              diff --git a/application/admin/view/product/productairport/index.html b/application/admin/view/product/productairport/index.html new file mode 100644 index 00000000..839428c1 --- /dev/null +++ b/application/admin/view/product/productairport/index.html @@ -0,0 +1,33 @@ + diff --git a/application/admin/view/product/productcar/add.html b/application/admin/view/product/productcar/add.html new file mode 100644 index 00000000..17538e81 --- /dev/null +++ b/application/admin/view/product/productcar/add.html @@ -0,0 +1,184 @@ +
              + +
              + +
              + +
              +
              +
              + +
              + +
              +
              +
              + +
              + +
              +
              +
              + +
              +
              + +
              + + +
              + +
              +
                +
                +
                +
                + +
                +
                + +
                + + +
                + +
                + +
                +
                +
                + +
                + +
                +
                +
                + +
                + +
                + {foreach name="advancedataList" item="vo"} + + {/foreach} +
                + +
                +
                +
                + +
                + +
                +
                +
                + +
                + +
                +
                +
                + +
                + +
                +
                +
                + +
                + +
                +
                +
                + +
                + +
                +
                +
                + +
                + +
                +
                +
                + +
                + +
                +
                +
                + +
                + +
                +
                +
                + +
                + +
                +
                +
                + +
                +
                + +
                + + +
                + +
                +
                  +
                  +
                  +
                  + +
                  + +
                  +
                  +
                  + +
                  + +
                  +
                  +
                  + +
                  + +
                  +
                  +
                  + +
                  + +
                  +
                  +
                  + +
                  + +
                  +
                  +
                  + +
                  + + + +
                  +
                  + +
                  diff --git a/application/admin/view/product/productcar/edit.html b/application/admin/view/product/productcar/edit.html new file mode 100644 index 00000000..7152345d --- /dev/null +++ b/application/admin/view/product/productcar/edit.html @@ -0,0 +1,184 @@ +
                  + +
                  + +
                  + +
                  +
                  +
                  + +
                  + +
                  +
                  +
                  + +
                  + +
                  +
                  +
                  + +
                  +
                  + +
                  + + +
                  + +
                  +
                    +
                    +
                    +
                    + +
                    +
                    + +
                    + + +
                    + +
                    + +
                    +
                    +
                    + +
                    + +
                    +
                    +
                    + +
                    + +
                    + {foreach name="advancedataList" item="vo"} + + {/foreach} +
                    + +
                    +
                    +
                    + +
                    + +
                    +
                    +
                    + +
                    + +
                    +
                    +
                    + +
                    + +
                    +
                    +
                    + +
                    + +
                    +
                    +
                    + +
                    + +
                    +
                    +
                    + +
                    + +
                    +
                    +
                    + +
                    + +
                    +
                    +
                    + +
                    + +
                    +
                    +
                    + +
                    + +
                    +
                    +
                    + +
                    +
                    + +
                    + + +
                    + +
                    +
                      +
                      +
                      +
                      + +
                      + +
                      +
                      +
                      + +
                      + +
                      +
                      +
                      + +
                      + +
                      +
                      +
                      + +
                      + +
                      +
                      +
                      + +
                      + +
                      +
                      +
                      + +
                      + + + +
                      +
                      + +
                      diff --git a/application/admin/view/product/productcar/index.html b/application/admin/view/product/productcar/index.html new file mode 100644 index 00000000..7f69a0ad --- /dev/null +++ b/application/admin/view/product/productcar/index.html @@ -0,0 +1,33 @@ + diff --git a/application/admin/view/product/productcarrental/add.html b/application/admin/view/product/productcarrental/add.html new file mode 100644 index 00000000..7be592ff --- /dev/null +++ b/application/admin/view/product/productcarrental/add.html @@ -0,0 +1,138 @@ +
                      + +
                      + +
                      + +
                      +
                      +
                      + +
                      + +
                      +
                      +
                      + +
                      + +
                      +
                      +
                      + +
                      +
                      + +
                      + + +
                      + +
                      +
                        +
                        +
                        +
                        + +
                        + +
                        +
                        +
                        + +
                        + +
                        + {foreach name="advancedataList" item="vo"} + + {/foreach} +
                        + +
                        +
                        +
                        + +
                        + +
                        +
                        +
                        + +
                        + +
                        +
                        +
                        + +
                        + +
                        +
                        +
                        + +
                        + +
                        +
                        +
                        + +
                        + +
                        +
                        +
                        + +
                        + +
                        +
                        +
                        + +
                        + +
                        +
                        +
                        + +
                        + +
                        +
                        +
                        + +
                        + +
                        +
                        +
                        + +
                        + +
                        +
                        +
                        + +
                        + +
                        +
                        +
                        + +
                        + + + +
                        +
                        + +
                        diff --git a/application/admin/view/product/productcarrental/edit.html b/application/admin/view/product/productcarrental/edit.html new file mode 100644 index 00000000..c69be1e6 --- /dev/null +++ b/application/admin/view/product/productcarrental/edit.html @@ -0,0 +1,138 @@ +
                        + +
                        + +
                        + +
                        +
                        +
                        + +
                        + +
                        +
                        +
                        + +
                        + +
                        +
                        +
                        + +
                        +
                        + +
                        + + +
                        + +
                        +
                          +
                          +
                          +
                          + +
                          + +
                          +
                          +
                          + +
                          + +
                          + {foreach name="advancedataList" item="vo"} + + {/foreach} +
                          + +
                          +
                          +
                          + +
                          + +
                          +
                          +
                          + +
                          + +
                          +
                          +
                          + +
                          + +
                          +
                          +
                          + +
                          + +
                          +
                          +
                          + +
                          + +
                          +
                          +
                          + +
                          + +
                          +
                          +
                          + +
                          + +
                          +
                          +
                          + +
                          + +
                          +
                          +
                          + +
                          + +
                          +
                          +
                          + +
                          + +
                          +
                          +
                          + +
                          + +
                          +
                          +
                          + +
                          + + + +
                          +
                          + +
                          diff --git a/application/admin/view/product/productcarrental/index.html b/application/admin/view/product/productcarrental/index.html new file mode 100644 index 00000000..d88b3cdc --- /dev/null +++ b/application/admin/view/product/productcarrental/index.html @@ -0,0 +1,33 @@ + diff --git a/application/admin/view/product/productday/add.html b/application/admin/view/product/productday/add.html new file mode 100644 index 00000000..6844fdd4 --- /dev/null +++ b/application/admin/view/product/productday/add.html @@ -0,0 +1,176 @@ +
                          + +
                          + +
                          + +
                          +
                          +
                          + +
                          + +
                          +
                          +
                          + +
                          + +
                          +
                          +
                          + +
                          +
                          + +
                          + + +
                          + +
                          +
                            +
                            +
                            +
                            + +
                            + +
                            +
                            +
                            + +
                            + +
                            + {foreach name="advancedataList" item="vo"} + + {/foreach} +
                            + +
                            +
                            +
                            + +
                            + +
                            +
                            +
                            + +
                            + +
                            +
                            +
                            + +
                            + +
                            +
                            +
                            + +
                            + +
                            +
                            +
                            + +
                            + +
                            +
                            +
                            + +
                            + +
                            +
                            +
                            + +
                            + +
                            +
                            +
                            + +
                            + +
                            +
                            +
                            + +
                            + +
                            +
                            +
                            + +
                            + +
                            +
                            +
                            + +
                            +
                            + +
                            + + +
                            + +
                            +
                              +
                              +
                              +
                              + +
                              + +
                              +
                              +
                              + +
                              + +
                              +
                              +
                              + +
                              + +
                              +
                              +
                              + +
                              + +
                              +
                              +
                              + +
                              + +
                              +
                              +
                              + +
                              + + + +
                              +
                              + +
                              diff --git a/application/admin/view/product/productday/edit.html b/application/admin/view/product/productday/edit.html new file mode 100644 index 00000000..527ed9b7 --- /dev/null +++ b/application/admin/view/product/productday/edit.html @@ -0,0 +1,176 @@ +
                              + +
                              + +
                              + +
                              +
                              +
                              + +
                              + +
                              +
                              +
                              + +
                              + +
                              +
                              +
                              + +
                              +
                              + +
                              + + +
                              + +
                              +
                                +
                                +
                                +
                                + +
                                + +
                                +
                                +
                                + +
                                + +
                                + {foreach name="advancedataList" item="vo"} + + {/foreach} +
                                + +
                                +
                                +
                                + +
                                + +
                                +
                                +
                                + +
                                + +
                                +
                                +
                                + +
                                + +
                                +
                                +
                                + +
                                + +
                                +
                                +
                                + +
                                + +
                                +
                                +
                                + +
                                + +
                                +
                                +
                                + +
                                + +
                                +
                                +
                                + +
                                + +
                                +
                                +
                                + +
                                + +
                                +
                                +
                                + +
                                + +
                                +
                                +
                                + +
                                +
                                + +
                                + + +
                                + +
                                +
                                  +
                                  +
                                  +
                                  + +
                                  + +
                                  +
                                  +
                                  + +
                                  + +
                                  +
                                  +
                                  + +
                                  + +
                                  +
                                  +
                                  + +
                                  + +
                                  +
                                  +
                                  + +
                                  + +
                                  +
                                  +
                                  + +
                                  + + + +
                                  +
                                  + +
                                  diff --git a/application/admin/view/product/productday/index.html b/application/admin/view/product/productday/index.html new file mode 100644 index 00000000..3ad39455 --- /dev/null +++ b/application/admin/view/product/productday/index.html @@ -0,0 +1,33 @@ + diff --git a/application/admin/view/product/productexperience/add.html b/application/admin/view/product/productexperience/add.html new file mode 100644 index 00000000..183d194f --- /dev/null +++ b/application/admin/view/product/productexperience/add.html @@ -0,0 +1,196 @@ +
                                  + +
                                  + +
                                  + +
                                  +
                                  +
                                  + +
                                  + +
                                  +
                                  +
                                  + +
                                  + +
                                  +
                                  +
                                  + +
                                  +
                                  + +
                                  + + +
                                  + +
                                  +
                                    +
                                    +
                                    +
                                    + +
                                    +
                                    + +
                                    + + +
                                    + +
                                    + +
                                    +
                                    +
                                    + +
                                    + +
                                    +
                                    +
                                    + +
                                    + +
                                    + {foreach name="advancedataList" item="vo"} + + {/foreach} +
                                    + +
                                    +
                                    +
                                    + +
                                    + +
                                    +
                                    +
                                    + +
                                    + +
                                    +
                                    +
                                    + +
                                    + +
                                    + {foreach name="outDataList" item="vo"} + + {/foreach} +
                                    + +
                                    +
                                    +
                                    + +
                                    + +
                                    +
                                    +
                                    + +
                                    + +
                                    +
                                    +
                                    + +
                                    + +
                                    +
                                    +
                                    + +
                                    + +
                                    +
                                    +
                                    + +
                                    + +
                                    +
                                    +
                                    + +
                                    + +
                                    +
                                    +
                                    + +
                                    + +
                                    +
                                    +
                                    + +
                                    +
                                    + +
                                    + + +
                                    + +
                                    +
                                      +
                                      +
                                      +
                                      + +
                                      + +
                                      +
                                      +
                                      + +
                                      + +
                                      +
                                      +
                                      + +
                                      + +
                                      +
                                      +
                                      + +
                                      + +
                                      +
                                      +
                                      + +
                                      + +
                                      +
                                      +
                                      + +
                                      + + + +
                                      +
                                      + +
                                      diff --git a/application/admin/view/product/productexperience/edit.html b/application/admin/view/product/productexperience/edit.html new file mode 100644 index 00000000..e89a7334 --- /dev/null +++ b/application/admin/view/product/productexperience/edit.html @@ -0,0 +1,196 @@ +
                                      + +
                                      + +
                                      + +
                                      +
                                      +
                                      + +
                                      + +
                                      +
                                      +
                                      + +
                                      + +
                                      +
                                      +
                                      + +
                                      +
                                      + +
                                      + + +
                                      + +
                                      +
                                        +
                                        +
                                        +
                                        + +
                                        +
                                        + +
                                        + + +
                                        + +
                                        + +
                                        +
                                        +
                                        + +
                                        + +
                                        +
                                        +
                                        + +
                                        + +
                                        + {foreach name="advancedataList" item="vo"} + + {/foreach} +
                                        + +
                                        +
                                        +
                                        + +
                                        + +
                                        +
                                        +
                                        + +
                                        + +
                                        +
                                        +
                                        + +
                                        + +
                                        + {foreach name="outDataList" item="vo"} + + {/foreach} +
                                        + +
                                        +
                                        +
                                        + +
                                        + +
                                        +
                                        +
                                        + +
                                        + +
                                        +
                                        +
                                        + +
                                        + +
                                        +
                                        +
                                        + +
                                        + +
                                        +
                                        +
                                        + +
                                        + +
                                        +
                                        +
                                        + +
                                        + +
                                        +
                                        +
                                        + +
                                        + +
                                        +
                                        +
                                        + +
                                        +
                                        + +
                                        + + +
                                        + +
                                        +
                                          +
                                          +
                                          +
                                          + +
                                          + +
                                          +
                                          +
                                          + +
                                          + +
                                          +
                                          +
                                          + +
                                          + +
                                          +
                                          +
                                          + +
                                          + +
                                          +
                                          +
                                          + +
                                          + +
                                          +
                                          +
                                          + +
                                          + + + +
                                          +
                                          + +
                                          diff --git a/application/admin/view/product/productexperience/index.html b/application/admin/view/product/productexperience/index.html new file mode 100644 index 00000000..6e69c8cb --- /dev/null +++ b/application/admin/view/product/productexperience/index.html @@ -0,0 +1,33 @@ + diff --git a/application/admin/view/product/productfood/add.html b/application/admin/view/product/productfood/add.html new file mode 100644 index 00000000..7be592ff --- /dev/null +++ b/application/admin/view/product/productfood/add.html @@ -0,0 +1,138 @@ +
                                          + +
                                          + +
                                          + +
                                          +
                                          +
                                          + +
                                          + +
                                          +
                                          +
                                          + +
                                          + +
                                          +
                                          +
                                          + +
                                          +
                                          + +
                                          + + +
                                          + +
                                          +
                                            +
                                            +
                                            +
                                            + +
                                            + +
                                            +
                                            +
                                            + +
                                            + +
                                            + {foreach name="advancedataList" item="vo"} + + {/foreach} +
                                            + +
                                            +
                                            +
                                            + +
                                            + +
                                            +
                                            +
                                            + +
                                            + +
                                            +
                                            +
                                            + +
                                            + +
                                            +
                                            +
                                            + +
                                            + +
                                            +
                                            +
                                            + +
                                            + +
                                            +
                                            +
                                            + +
                                            + +
                                            +
                                            +
                                            + +
                                            + +
                                            +
                                            +
                                            + +
                                            + +
                                            +
                                            +
                                            + +
                                            + +
                                            +
                                            +
                                            + +
                                            + +
                                            +
                                            +
                                            + +
                                            + +
                                            +
                                            +
                                            + +
                                            + + + +
                                            +
                                            + +
                                            diff --git a/application/admin/view/product/productfood/edit.html b/application/admin/view/product/productfood/edit.html new file mode 100644 index 00000000..c69be1e6 --- /dev/null +++ b/application/admin/view/product/productfood/edit.html @@ -0,0 +1,138 @@ +
                                            + +
                                            + +
                                            + +
                                            +
                                            +
                                            + +
                                            + +
                                            +
                                            +
                                            + +
                                            + +
                                            +
                                            +
                                            + +
                                            +
                                            + +
                                            + + +
                                            + +
                                            +
                                              +
                                              +
                                              +
                                              + +
                                              + +
                                              +
                                              +
                                              + +
                                              + +
                                              + {foreach name="advancedataList" item="vo"} + + {/foreach} +
                                              + +
                                              +
                                              +
                                              + +
                                              + +
                                              +
                                              +
                                              + +
                                              + +
                                              +
                                              +
                                              + +
                                              + +
                                              +
                                              +
                                              + +
                                              + +
                                              +
                                              +
                                              + +
                                              + +
                                              +
                                              +
                                              + +
                                              + +
                                              +
                                              +
                                              + +
                                              + +
                                              +
                                              +
                                              + +
                                              + +
                                              +
                                              +
                                              + +
                                              + +
                                              +
                                              +
                                              + +
                                              + +
                                              +
                                              +
                                              + +
                                              + +
                                              +
                                              +
                                              + +
                                              + + + +
                                              +
                                              + +
                                              diff --git a/application/admin/view/product/productfood/index.html b/application/admin/view/product/productfood/index.html new file mode 100644 index 00000000..b6d9bc05 --- /dev/null +++ b/application/admin/view/product/productfood/index.html @@ -0,0 +1,33 @@ + diff --git a/application/admin/view/product/producthotels/add.html b/application/admin/view/product/producthotels/add.html new file mode 100644 index 00000000..2dc9195c --- /dev/null +++ b/application/admin/view/product/producthotels/add.html @@ -0,0 +1,238 @@ +
                                              + +
                                              + +
                                              + +
                                              +
                                              +
                                              + +
                                              + +
                                              +
                                              +
                                              + +
                                              + +
                                              +
                                              +
                                              + +
                                              +
                                              + +
                                              + + +
                                              + +
                                              +
                                                +
                                                +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                + +
                                                + +
                                                + {foreach name="advancedataList" item="vo"} + + {/foreach} +
                                                + +
                                                +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                + +
                                                + +
                                                + {foreach name="outDataList" item="vo"} + + {/foreach} +
                                                + +
                                                +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                + +
                                                + + + +
                                                +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                + +
                                                + +
                                                +
                                                +
                                                + +
                                                +
                                                + +
                                                + + +
                                                + +
                                                +
                                                  +
                                                  +
                                                  +
                                                  + +
                                                  + +
                                                  +
                                                  +
                                                  + +
                                                  + +
                                                  +
                                                  +
                                                  + +
                                                  +
                                                  + +
                                                  + + +
                                                  + +
                                                  +
                                                    +
                                                    +
                                                    +
                                                    + +
                                                    + +
                                                    +
                                                    +
                                                    + +
                                                    + +
                                                    +
                                                    +
                                                    + +
                                                    + +
                                                    +
                                                    +
                                                    + +
                                                    + +
                                                    +
                                                    +
                                                    + +
                                                    + +
                                                    +
                                                    +
                                                    + +
                                                    + + + +
                                                    +
                                                    + +
                                                    diff --git a/application/admin/view/product/producthotels/edit.html b/application/admin/view/product/producthotels/edit.html new file mode 100644 index 00000000..f589247a --- /dev/null +++ b/application/admin/view/product/producthotels/edit.html @@ -0,0 +1,238 @@ +
                                                    + +
                                                    + +
                                                    + +
                                                    +
                                                    +
                                                    + +
                                                    + +
                                                    +
                                                    +
                                                    + +
                                                    + +
                                                    +
                                                    +
                                                    + +
                                                    +
                                                    + +
                                                    + + +
                                                    + +
                                                    +
                                                      +
                                                      +
                                                      +
                                                      + +
                                                      + +
                                                      +
                                                      +
                                                      + +
                                                      + +
                                                      + {foreach name="advancedataList" item="vo"} + + {/foreach} +
                                                      + +
                                                      +
                                                      +
                                                      + +
                                                      + +
                                                      +
                                                      +
                                                      + +
                                                      + +
                                                      +
                                                      +
                                                      + +
                                                      + +
                                                      + {foreach name="outDataList" item="vo"} + + {/foreach} +
                                                      + +
                                                      +
                                                      +
                                                      + +
                                                      + +
                                                      +
                                                      +
                                                      + +
                                                      + +
                                                      +
                                                      +
                                                      + +
                                                      + +
                                                      +
                                                      +
                                                      + +
                                                      + +
                                                      +
                                                      +
                                                      + +
                                                      + +
                                                      +
                                                      +
                                                      + +
                                                      + +
                                                      +
                                                      +
                                                      + +
                                                      + +
                                                      +
                                                      +
                                                      + +
                                                      + +
                                                      +
                                                      +
                                                      + +
                                                      + + + +
                                                      +
                                                      +
                                                      + +
                                                      + +
                                                      +
                                                      +
                                                      + +
                                                      + +
                                                      +
                                                      +
                                                      + +
                                                      +
                                                      + +
                                                      + + +
                                                      + +
                                                      +
                                                        +
                                                        +
                                                        +
                                                        + +
                                                        + +
                                                        +
                                                        +
                                                        + +
                                                        + +
                                                        +
                                                        +
                                                        + +
                                                        +
                                                        + +
                                                        + + +
                                                        + +
                                                        +
                                                          +
                                                          +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          + + + +
                                                          +
                                                          + +
                                                          diff --git a/application/admin/view/product/producthotels/index.html b/application/admin/view/product/producthotels/index.html new file mode 100644 index 00000000..32f867a5 --- /dev/null +++ b/application/admin/view/product/producthotels/index.html @@ -0,0 +1,33 @@ + diff --git a/application/admin/view/product/productlocal/add.html b/application/admin/view/product/productlocal/add.html new file mode 100644 index 00000000..7517094f --- /dev/null +++ b/application/admin/view/product/productlocal/add.html @@ -0,0 +1,186 @@ +
                                                          + +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          + +
                                                          + + +
                                                          + +
                                                          +
                                                            +
                                                            +
                                                            +
                                                            + +
                                                            +
                                                            + +
                                                            + + +
                                                            + +
                                                            +
                                                              +
                                                              +
                                                              +
                                                              + +
                                                              +
                                                              + +
                                                              + + +
                                                              + +
                                                              + +
                                                              +
                                                              +
                                                              + +
                                                              + +
                                                              +
                                                              +
                                                              + +
                                                              + +
                                                              +
                                                              +
                                                              + +
                                                              + +
                                                              +
                                                              +
                                                              + +
                                                              + +
                                                              +
                                                              +
                                                              + +
                                                              + +
                                                              + {foreach name="outDataList" item="vo"} + + {/foreach} +
                                                              + +
                                                              +
                                                              +
                                                              + +
                                                              + +
                                                              +
                                                              +
                                                              + +
                                                              + +
                                                              +
                                                              +
                                                              + +
                                                              + +
                                                              +
                                                              +
                                                              + +
                                                              + +
                                                              +
                                                              +
                                                              + +
                                                              +
                                                              + +
                                                              + + +
                                                              + +
                                                              +
                                                                +
                                                                +
                                                                +
                                                                + +
                                                                + +
                                                                +
                                                                +
                                                                + +
                                                                + +
                                                                +
                                                                +
                                                                + +
                                                                + +
                                                                +
                                                                +
                                                                + +
                                                                + +
                                                                +
                                                                +
                                                                + +
                                                                + +
                                                                +
                                                                +
                                                                + +
                                                                + + + +
                                                                +
                                                                + +
                                                                diff --git a/application/admin/view/product/productlocal/edit.html b/application/admin/view/product/productlocal/edit.html new file mode 100644 index 00000000..67130b14 --- /dev/null +++ b/application/admin/view/product/productlocal/edit.html @@ -0,0 +1,186 @@ +
                                                                + +
                                                                + +
                                                                + +
                                                                +
                                                                +
                                                                + +
                                                                + +
                                                                +
                                                                +
                                                                + +
                                                                + +
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                + +
                                                                + + +
                                                                + +
                                                                +
                                                                  +
                                                                  +
                                                                  +
                                                                  + +
                                                                  +
                                                                  + +
                                                                  + + +
                                                                  + +
                                                                  +
                                                                    +
                                                                    +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + +
                                                                    + + +
                                                                    + +
                                                                    + +
                                                                    +
                                                                    +
                                                                    + +
                                                                    + +
                                                                    +
                                                                    +
                                                                    + +
                                                                    + +
                                                                    +
                                                                    +
                                                                    + +
                                                                    + +
                                                                    +
                                                                    +
                                                                    + +
                                                                    + +
                                                                    +
                                                                    +
                                                                    + +
                                                                    + +
                                                                    + {foreach name="outDataList" item="vo"} + + {/foreach} +
                                                                    + +
                                                                    +
                                                                    +
                                                                    + +
                                                                    + +
                                                                    +
                                                                    +
                                                                    + +
                                                                    + +
                                                                    +
                                                                    +
                                                                    + +
                                                                    + +
                                                                    +
                                                                    +
                                                                    + +
                                                                    + +
                                                                    +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + +
                                                                    + + +
                                                                    + +
                                                                    +
                                                                      +
                                                                      +
                                                                      +
                                                                      + +
                                                                      + +
                                                                      +
                                                                      +
                                                                      + +
                                                                      + +
                                                                      +
                                                                      +
                                                                      + +
                                                                      + +
                                                                      +
                                                                      +
                                                                      + +
                                                                      + +
                                                                      +
                                                                      +
                                                                      + +
                                                                      + +
                                                                      +
                                                                      +
                                                                      + +
                                                                      + + + +
                                                                      +
                                                                      + +
                                                                      diff --git a/application/admin/view/product/productlocal/index.html b/application/admin/view/product/productlocal/index.html new file mode 100644 index 00000000..efa174c9 --- /dev/null +++ b/application/admin/view/product/productlocal/index.html @@ -0,0 +1,33 @@ + diff --git a/application/admin/view/product/productmanydays/add.html b/application/admin/view/product/productmanydays/add.html new file mode 100644 index 00000000..f8f10766 --- /dev/null +++ b/application/admin/view/product/productmanydays/add.html @@ -0,0 +1,256 @@ +
                                                                      + +
                                                                      + +
                                                                      + +
                                                                      +
                                                                      +
                                                                      + +
                                                                      + +
                                                                      +
                                                                      +
                                                                      + +
                                                                      + +
                                                                      +
                                                                      +
                                                                      + +
                                                                      +
                                                                      + +
                                                                      + + +
                                                                      + +
                                                                      +
                                                                        +
                                                                        +
                                                                        +
                                                                        + +
                                                                        + +
                                                                        +
                                                                        +
                                                                        + +
                                                                        + +
                                                                        + {foreach name="advancedataList" item="vo"} + + {/foreach} +
                                                                        + +
                                                                        +
                                                                        +
                                                                        + +
                                                                        + +
                                                                        +
                                                                        +
                                                                        + +
                                                                        + +
                                                                        +
                                                                        +
                                                                        + +
                                                                        + +
                                                                        +
                                                                        +
                                                                        + +
                                                                        + +
                                                                        + {foreach name="outDataList" item="vo"} + + {/foreach} +
                                                                        + +
                                                                        +
                                                                        +
                                                                        + +
                                                                        + +
                                                                        +
                                                                        +
                                                                        + +
                                                                        + +
                                                                        +
                                                                        +
                                                                        + +
                                                                        + +
                                                                        +
                                                                        +
                                                                        + +
                                                                        + +
                                                                        +
                                                                        +
                                                                        + +
                                                                        + +
                                                                        +
                                                                        +
                                                                        + +
                                                                        + +
                                                                        +
                                                                        +
                                                                        + +
                                                                        + +
                                                                        +
                                                                        +
                                                                        + +
                                                                        + +
                                                                        +
                                                                        +
                                                                        + +
                                                                        + + + +
                                                                        +
                                                                        +
                                                                        + +
                                                                        + +
                                                                        +
                                                                        +
                                                                        + +
                                                                        + +
                                                                        +
                                                                        +
                                                                        + +
                                                                        +
                                                                        + +
                                                                        + + +
                                                                        + +
                                                                        +
                                                                          +
                                                                          +
                                                                          +
                                                                          + +
                                                                          + +
                                                                          +
                                                                          +
                                                                          + +
                                                                          + +
                                                                          +
                                                                          +
                                                                          + +
                                                                          +
                                                                          + +
                                                                          + + +
                                                                          + +
                                                                          +
                                                                            +
                                                                            +
                                                                            +
                                                                            + +
                                                                            + +
                                                                            +
                                                                            +
                                                                            + +
                                                                            + +
                                                                            +
                                                                            +
                                                                            + +
                                                                            + +
                                                                            +
                                                                            +
                                                                            + +
                                                                            + +
                                                                            +
                                                                            +
                                                                            + +
                                                                            + +
                                                                            +
                                                                            +
                                                                            + +
                                                                            + + + +
                                                                            +
                                                                            +
                                                                            + +
                                                                            + +
                                                                            + {foreach name="statusList" item="vo"} + + {/foreach} +
                                                                            + +
                                                                            +
                                                                            + +
                                                                            diff --git a/application/admin/view/product/productmanydays/edit.html b/application/admin/view/product/productmanydays/edit.html new file mode 100644 index 00000000..3efd41d2 --- /dev/null +++ b/application/admin/view/product/productmanydays/edit.html @@ -0,0 +1,256 @@ +
                                                                            + +
                                                                            + +
                                                                            + +
                                                                            +
                                                                            +
                                                                            + +
                                                                            + +
                                                                            +
                                                                            +
                                                                            + +
                                                                            + +
                                                                            +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + +
                                                                            + + +
                                                                            + +
                                                                            +
                                                                              +
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              + {foreach name="advancedataList" item="vo"} + + {/foreach} +
                                                                              + +
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              + {foreach name="outDataList" item="vo"} + + {/foreach} +
                                                                              + +
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +
                                                                              + +
                                                                              + + + +
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +
                                                                              + +
                                                                              +
                                                                              + +
                                                                              + + +
                                                                              + +
                                                                              +
                                                                                +
                                                                                +
                                                                                +
                                                                                + +
                                                                                + +
                                                                                +
                                                                                +
                                                                                + +
                                                                                + +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + +
                                                                                + + +
                                                                                + +
                                                                                +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + +
                                                                                  + +
                                                                                  +
                                                                                  +
                                                                                  + +
                                                                                  + +
                                                                                  +
                                                                                  +
                                                                                  + +
                                                                                  + +
                                                                                  +
                                                                                  +
                                                                                  + +
                                                                                  + +
                                                                                  +
                                                                                  +
                                                                                  + +
                                                                                  + +
                                                                                  +
                                                                                  +
                                                                                  + +
                                                                                  + + + +
                                                                                  +
                                                                                  +
                                                                                  + +
                                                                                  + +
                                                                                  + {foreach name="statusList" item="vo"} + + {/foreach} +
                                                                                  + +
                                                                                  +
                                                                                  + +
                                                                                  diff --git a/application/admin/view/product/productmanydays/index.html b/application/admin/view/product/productmanydays/index.html new file mode 100644 index 00000000..4ac674a1 --- /dev/null +++ b/application/admin/view/product/productmanydays/index.html @@ -0,0 +1,33 @@ + diff --git a/application/admin/view/product/productshow/add.html b/application/admin/view/product/productshow/add.html new file mode 100644 index 00000000..d56211a8 --- /dev/null +++ b/application/admin/view/product/productshow/add.html @@ -0,0 +1,176 @@ +
                                                                                  + +
                                                                                  + +
                                                                                  + +
                                                                                  +
                                                                                  +
                                                                                  + +
                                                                                  + +
                                                                                  +
                                                                                  +
                                                                                  + +
                                                                                  + +
                                                                                  +
                                                                                  +
                                                                                  + +
                                                                                  +
                                                                                  + +
                                                                                  + + +
                                                                                  + +
                                                                                  +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + +
                                                                                    + + +
                                                                                    + +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + +
                                                                                    + {foreach name="advancedataList" item="vo"} + + {/foreach} +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + +
                                                                                    + {foreach name="outDataList" item="vo"} + + {/foreach} +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + + + +
                                                                                    +
                                                                                    + +
                                                                                    diff --git a/application/admin/view/product/productshow/edit.html b/application/admin/view/product/productshow/edit.html new file mode 100644 index 00000000..81818491 --- /dev/null +++ b/application/admin/view/product/productshow/edit.html @@ -0,0 +1,176 @@ +
                                                                                    + +
                                                                                    + +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + +
                                                                                    + + +
                                                                                    + +
                                                                                    +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + +
                                                                                      + + +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      + {foreach name="advancedataList" item="vo"} + + {/foreach} +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      + {foreach name="outDataList" item="vo"} + + {/foreach} +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + + + +
                                                                                      +
                                                                                      + +
                                                                                      diff --git a/application/admin/view/product/productshow/index.html b/application/admin/view/product/productshow/index.html new file mode 100644 index 00000000..6b52f39b --- /dev/null +++ b/application/admin/view/product/productshow/index.html @@ -0,0 +1,33 @@ + diff --git a/application/admin/view/product/producttickets/add.html b/application/admin/view/product/producttickets/add.html new file mode 100644 index 00000000..88862024 --- /dev/null +++ b/application/admin/view/product/producttickets/add.html @@ -0,0 +1,156 @@ +
                                                                                      + +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + +
                                                                                      + + +
                                                                                      + +
                                                                                      +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + +
                                                                                        + {foreach name="advancedataList" item="vo"} + + {/foreach} +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + +
                                                                                        + {foreach name="statusList" item="vo"} + + {/foreach} +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + + + +
                                                                                        +
                                                                                        + +
                                                                                        diff --git a/application/admin/view/product/producttickets/edit.html b/application/admin/view/product/producttickets/edit.html new file mode 100644 index 00000000..e542fbea --- /dev/null +++ b/application/admin/view/product/producttickets/edit.html @@ -0,0 +1,156 @@ +
                                                                                        + +
                                                                                        + +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        + +
                                                                                        + + +
                                                                                        + +
                                                                                        +
                                                                                          +
                                                                                          +
                                                                                          +
                                                                                          + +
                                                                                          + +
                                                                                          +
                                                                                          +
                                                                                          + +
                                                                                          + +
                                                                                          + {foreach name="advancedataList" item="vo"} + + {/foreach} +
                                                                                          + +
                                                                                          +
                                                                                          +
                                                                                          + +
                                                                                          + +
                                                                                          +
                                                                                          +
                                                                                          + +
                                                                                          + +
                                                                                          +
                                                                                          +
                                                                                          + +
                                                                                          + +
                                                                                          +
                                                                                          +
                                                                                          + +
                                                                                          + +
                                                                                          +
                                                                                          +
                                                                                          + +
                                                                                          + +
                                                                                          +
                                                                                          +
                                                                                          + +
                                                                                          + +
                                                                                          +
                                                                                          +
                                                                                          + +
                                                                                          + +
                                                                                          +
                                                                                          +
                                                                                          + +
                                                                                          + +
                                                                                          +
                                                                                          +
                                                                                          + +
                                                                                          + +
                                                                                          +
                                                                                          +
                                                                                          + +
                                                                                          + +
                                                                                          +
                                                                                          +
                                                                                          + +
                                                                                          + +
                                                                                          +
                                                                                          +
                                                                                          + +
                                                                                          + +
                                                                                          +
                                                                                          +
                                                                                          + +
                                                                                          + +
                                                                                          + {foreach name="statusList" item="vo"} + + {/foreach} +
                                                                                          + +
                                                                                          +
                                                                                          +
                                                                                          + +
                                                                                          + + + +
                                                                                          +
                                                                                          + +
                                                                                          diff --git a/application/admin/view/product/producttickets/index.html b/application/admin/view/product/producttickets/index.html new file mode 100644 index 00000000..fd9d1ac7 --- /dev/null +++ b/application/admin/view/product/producttickets/index.html @@ -0,0 +1,33 @@ + diff --git a/application/admin/view/product/producttraffic/add.html b/application/admin/view/product/producttraffic/add.html new file mode 100644 index 00000000..fd3f7ffc --- /dev/null +++ b/application/admin/view/product/producttraffic/add.html @@ -0,0 +1,150 @@ +
                                                                                          + +
                                                                                          + +
                                                                                          + +
                                                                                          +
                                                                                          +
                                                                                          + +
                                                                                          + +
                                                                                          +
                                                                                          +
                                                                                          + +
                                                                                          + +
                                                                                          +
                                                                                          +
                                                                                          + +
                                                                                          +
                                                                                          + +
                                                                                          + + +
                                                                                          + +
                                                                                          +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            + +
                                                                                            + {foreach name="advancedataList" item="vo"} + + {/foreach} +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            + +
                                                                                            + {foreach name="outDataList" item="vo"} + + {/foreach} +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            + + + +
                                                                                            +
                                                                                            + +
                                                                                            diff --git a/application/admin/view/product/producttraffic/edit.html b/application/admin/view/product/producttraffic/edit.html new file mode 100644 index 00000000..e2dcd7ce --- /dev/null +++ b/application/admin/view/product/producttraffic/edit.html @@ -0,0 +1,150 @@ +
                                                                                            + +
                                                                                            + +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + +
                                                                                            + + +
                                                                                            + +
                                                                                            +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              + +
                                                                                              + {foreach name="advancedataList" item="vo"} + + {/foreach} +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              + +
                                                                                              + {foreach name="outDataList" item="vo"} + + {/foreach} +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              + + + +
                                                                                              +
                                                                                              + +
                                                                                              diff --git a/application/admin/view/product/producttraffic/index.html b/application/admin/view/product/producttraffic/index.html new file mode 100644 index 00000000..6418fd5e --- /dev/null +++ b/application/admin/view/product/producttraffic/index.html @@ -0,0 +1,33 @@ + diff --git a/application/database.php b/application/database.php index d1bbd61c..b89fb800 100755 --- a/application/database.php +++ b/application/database.php @@ -16,13 +16,13 @@ return [ // 数据库类型 'type' => Env::get('database.type', 'mysql'), // 服务器地址 - 'hostname' => Env::get('database.hostname', '127.0.0.1'), + 'hostname' => Env::get('database.hostname', 'localhost'), // 数据库名 - 'database' => Env::get('database.database', 'fastadmin'), + 'database' => Env::get('database.database', 'qulvxing'), // 用户名 'username' => Env::get('database.username', 'root'), // 密码 - 'password' => Env::get('database.password', ''), + 'password' => Env::get('database.password', 'root'), // 端口 'hostport' => Env::get('database.hostport', ''), // 连接dsn diff --git a/application/index/view/index/index.html b/application/index/view/index/index.html index a75f8527..bbd758cc 100644 --- a/application/index/view/index/index.html +++ b/application/index/view/index/index.html @@ -9,7 +9,7 @@ - FastAdmin - {:__('The fastest framework based on ThinkPHP5 and Bootstrap')} + @@ -34,21 +34,10 @@ - - + + - @@ -60,8 +49,8 @@
                                                                                              -

                                                                                              FastAdmin

                                                                                              -

                                                                                              {:__('The fastest framework based on ThinkPHP5 and Bootstrap')}

                                                                                              + +

                                                                                              趣侣行

                                                                                              {:__('Go to Dashboard')}
                                                                                              @@ -70,92 +59,10 @@
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -

                                                                                              {:__('Features')}

                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - -

                                                                                              {:__('Auth')}

                                                                                              -

                                                                                              基于完善的Auth权限控制管理、无限父子级权限分组、可自由分配子级权限、一个管理员可同时属于多个组别

                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - -

                                                                                              {:__('Responsive')}

                                                                                              -

                                                                                              基于Bootstrap和AdminLTE进行二次开发,手机、平板、PC均自动适配,无需要担心兼容性问题

                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - -

                                                                                              {:__('Languages')}

                                                                                              -

                                                                                              不仅仅后台开发支持多语言,同时视图部分和JS部分仍然共享同一个语言包,语法相同且自动加载

                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - -

                                                                                              {:__('Module')}

                                                                                              -

                                                                                              控制器、模型、视图、JS一一对应,使用RequireJS进行JS模块化管理,采用Bower进行前端包组件管理

                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - -

                                                                                              {:__('CRUD')}

                                                                                              -

                                                                                              控制台进行一键生成控制器、模型、视图和JS文件,同时可一键生成后台权限节点和菜单栏

                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - -

                                                                                              {:__('Extension')}

                                                                                              -

                                                                                              FastAdmin提供强大的扩展中心,可直接在线安装和卸载插件,同时支持命令行一键操作

                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - -
                                                                                              -
                                                                                              -
                                                                                              -

                                                                                              不要犹豫
                                                                                              开始行动

                                                                                              - {:__('Contribution')} -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              diff --git a/public/assets/js/backend/company/companyset.js b/public/assets/js/backend/company/companyset.js new file mode 100644 index 00000000..038acecf --- /dev/null +++ b/public/assets/js/backend/company/companyset.js @@ -0,0 +1,65 @@ +define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) { + + var Controller = { + index: function () { + // 初始化表格参数配置 + Table.api.init({ + extend: { + index_url: 'company/companyset/index', + add_url: 'company/companyset/add', + edit_url: 'company/companyset/edit', + del_url: 'company/companyset/del', + multi_url: 'company/companyset/multi', + table: 'company_set', + } + }); + + var table = $("#table"); + + // 初始化表格 + table.bootstrapTable({ + url: $.fn.bootstrapTable.defaults.extend.index_url, + pk: 'id', + sortName: 'id', + columns: [ + [ + {checkbox: true}, + {field: 'id', title: __('Id')}, + {field: 'name', title: __('Name')}, + {field: 'storename', title: __('Storename')}, + {field: 'storeavatar', title: __('Storeavatar')}, + {field: 'serveavatar', title: __('Serveavatar')}, + {field: 'companyscaledata', title: __('Companyscaledata'), visible:false, searchList: {"companyscaledata 1":__('Companyscaledata 1'),"companyscaledata 2":__('Companyscaledata 2'),"companyscaledata 3":__('Companyscaledata 3'),"companyscaledata 4":__('Companyscaledata 4'),"companyscaledata 5":__('Companyscaledata 5')}}, + {field: 'companyscaledata_text', title: __('Companyscaledata'), operate:false}, + {field: 'companytime', title: __('Companytime'), operate:'RANGE', addclass:'datetimerange'}, + {field: 'companyaddress', title: __('Companyaddress')}, + {field: 'companyhttp', title: __('Companyhttp')}, + {field: 'companresourcesdata', title: __('Companresourcesdata'), visible:false, searchList: {"companresourcesdata 1":__('Companresourcesdata 1'),"companresourcesdata 2":__('Companresourcesdata 2'),"companresourcesdata 3":__('Companresourcesdata 3'),"companresourcesdata 4":__('Companresourcesdata 4'),"companresourcesdata 5":__('Companresourcesdata 5'),"companresourcesdata 6":__('Companresourcesdata 6'),"companresourcesdata 7":__('Companresourcesdata 7'),"companresourcesdata 8":__('Companresourcesdata 8'),"companresourcesdata 9":__('Companresourcesdata 9')}}, + {field: 'companresourcesdata_text', title: __('Companresourcesdata'), operate:false, formatter: Table.api.formatter.label}, + {field: 'resourcessuperiority', title: __('Resourcessuperiority')}, + {field: 'offlinestoredata', title: __('Offlinestoredata'), visible:false, searchList: {"offlinestoredata 1":__('Offlinestoredata 1'),"offlinestoredata 2":__('Offlinestoredata 2'),"offlinestoredata 3":__('Offlinestoredata 3'),"offlinestoredata 4":__('Offlinestoredata 4'),"offlinestoredata 5":__('Offlinestoredata 5'),"offlinestoredata 6":__('Offlinestoredata 6')}}, + {field: 'offlinestoredata_text', title: __('Offlinestoredata'), operate:false}, + {field: 'cooperationplatformdata', title: __('Cooperationplatformdata'), visible:false, searchList: {"cooperationplatformdata 1":__('Cooperationplatformdata 1'),"cooperationplatformdata 2":__('Cooperationplatformdata 2'),"cooperationplatformdata 3":__('Cooperationplatformdata 3'),"cooperationplatformdata 4":__('Cooperationplatformdata 4'),"cooperationplatformdata 5":__('Cooperationplatformdata 5'),"cooperationplatformdata 6":__('Cooperationplatformdata 6'),"cooperationplatformdata 7":__('Cooperationplatformdata 7'),"cooperationplatformdata 8":__('Cooperationplatformdata 8'),"cooperationplatformdata 9":__('Cooperationplatformdata 9'),"cooperationplatformdata 10":__('Cooperationplatformdata 10')}}, + {field: 'cooperationplatformdata_text', title: __('Cooperationplatformdata'), operate:false, formatter: Table.api.formatter.label}, + {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate} + ] + ] + }); + + // 为表格绑定事件 + Table.api.bindevent(table); + }, + add: function () { + Controller.api.bindevent(); + }, + edit: function () { + Controller.api.bindevent(); + }, + api: { + bindevent: function () { + Form.api.bindevent($("form[role=form]")); + } + } + }; + return Controller; +}); \ No newline at end of file diff --git a/public/assets/js/backend/order/order.js b/public/assets/js/backend/order/order.js new file mode 100644 index 00000000..5a2ccec8 --- /dev/null +++ b/public/assets/js/backend/order/order.js @@ -0,0 +1,68 @@ +define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) { + + var Controller = { + index: function () { + // 初始化表格参数配置 + Table.api.init({ + extend: { + index_url: 'order/order/index', + add_url: 'order/order/add', + edit_url: 'order/order/edit', + del_url: 'order/order/del', + multi_url: 'order/order/multi', + table: 'order', + } + }); + + var table = $("#table"); + + // 初始化表格 + table.bootstrapTable({ + url: $.fn.bootstrapTable.defaults.extend.index_url, + pk: 'id', + sortName: 'id', + columns: [ + [ + {checkbox: true}, + {field: 'id', title: __('Id')}, + {field: 'user_id', title: __('User_id')}, + {field: 'order_num', title: __('Order_num')}, + {field: 'order_status', title: __('Order_status'), visible:false, searchList: {"order_status 0":__('Order_status 0'),"order_status 1":__('Order_status 1')}}, + {field: 'order_status_text', title: __('Order_status'), operate:false}, + {field: 'travel_start_time', title: __('Travel_start_time'), operate:'RANGE', addclass:'datetimerange'}, + {field: 'travel_end_time', title: __('Travel_end_time'), operate:'RANGE', addclass:'datetimerange'}, + {field: 'product_name', title: __('Product_name')}, + {field: 'comment_status', title: __('Comment_status'), visible:false, searchList: {"comment_status 0":__('Comment_status 0'),"comment_status 1":__('Comment_status 1')}}, + {field: 'comment_status_text', title: __('Comment_status'), operate:false}, + {field: 'order_start_time', title: __('Order_start_time'), operate:'RANGE', addclass:'datetimerange', formatter: Table.api.formatter.datetime}, + {field: 'total_num', title: __('Total_num'), operate:'BETWEEN'}, + {field: 'already_rechage_num', title: __('Already_rechage_num'), operate:'BETWEEN'}, + {field: 'notice', title: __('Notice')}, + {field: 'reconciliation_time', title: __('Reconciliation_time'), operate:'RANGE', addclass:'datetimerange'}, + {field: 'buy_detail', title: __('Buy_detail')}, + {field: 'reduction_strategy', title: __('Reduction_strategy')}, + {field: 'ota_name', title: __('Ota_name')}, + {field: 'pay_id', title: __('Pay_id')}, + {field: 'supplier_id', title: __('Supplier_id')}, + {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate} + ] + ] + }); + + // 为表格绑定事件 + Table.api.bindevent(table); + }, + add: function () { + Controller.api.bindevent(); + }, + edit: function () { + Controller.api.bindevent(); + }, + api: { + bindevent: function () { + Form.api.bindevent($("form[role=form]")); + } + } + }; + return Controller; +}); \ No newline at end of file diff --git a/public/assets/js/backend/product/newtravel.js b/public/assets/js/backend/product/newtravel.js new file mode 100644 index 00000000..c6a2364b --- /dev/null +++ b/public/assets/js/backend/product/newtravel.js @@ -0,0 +1,62 @@ +define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) { + + var Controller = { + index: function () { + // 初始化表格参数配置 + Table.api.init({ + extend: { + index_url: 'product/newtravel/index', + add_url: 'product/newtravel/add', + edit_url: 'product/newtravel/edit', + del_url: 'product/newtravel/del', + multi_url: 'product/newtravel/multi', + table: 'new_travel', + } + }); + + var table = $("#table"); + + // 初始化表格 + table.bootstrapTable({ + url: $.fn.bootstrapTable.defaults.extend.index_url, + pk: 'id', + sortName: 'id', + columns: [ + [ + {checkbox: true}, + {field: 'id', title: __('Id')}, + {field: 'traveltext', title: __('Traveltext')}, + {field: 'typeslist', title: __('Typeslist'), visible:false, searchList: {"typeslist 1":__('Typeslist 1'),"typeslist 2":__('Typeslist 2'),"typeslist 3":__('Typeslist 3'),"typeslist 4":__('Typeslist 4'),"typeslist 5":__('Typeslist 5'),"typeslist 6":__('Typeslist 6'),"typeslist 7":__('Typeslist 7'),"typeslist 8":__('Typeslist 8'),"typeslist 9":__('Typeslist 9'),"typeslist 10":__('Typeslist 10'),"typeslist 11":__('Typeslist 11'),"typeslist 12":__('Typeslist 12'),"typeslist 13":__('Typeslist 13'),"typeslist 14":__('Typeslist 14'),"typeslist 15":__('Typeslist 15'),"typeslist 16":__('Typeslist 16'),"typeslist 17":__('Typeslist 17'),"typeslist 18":__('Typeslist 18'),"typeslist 19":__('Typeslist 19'),"typeslist 20":__('Typeslist 20'),"typeslist 21":__('Typeslist 21'),"typeslist 22":__('Typeslist 22'),"typeslist 23":__('Typeslist 23'),"typeslist 24":__('Typeslist 24'),"typeslist 25":__('Typeslist 25')}}, + {field: 'typeslist_text', title: __('Typeslist'), operate:false}, + {field: 'travelersnumberdata', title: __('Travelersnumberdata'), visible:false, searchList: {"travelersnumberdata 1":__('Travelersnumberdata 1'),"travelersnumberdata 2":__('Travelersnumberdata 2')}}, + {field: 'travelersnumberdata_text', title: __('Travelersnumberdata'), operate:false}, + {field: 'travelerinformationdata', title: __('Travelerinformationdata'), visible:false, searchList: {"travelerinformationdata 1":__('Travelerinformationdata 1'),"travelerinformationdata 2":__('Travelerinformationdata 2'),"travelerinformationdata 3":__('Travelerinformationdata 3'),"travelerinformationdata 4":__('Travelerinformationdata 4'),"travelerinformationdata 5":__('Travelerinformationdata 5'),"travelerinformationdata 6":__('Travelerinformationdata 6'),"travelerinformationdata 7":__('Travelerinformationdata 7'),"travelerinformationdata 8":__('Travelerinformationdata 8'),"travelerinformationdata 9":__('Travelerinformationdata 9'),"travelerinformationdata 10":__('Travelerinformationdata 10'),"travelerinformationdata 11":__('Travelerinformationdata 11'),"travelerinformationdata 12":__('Travelerinformationdata 12'),"travelerinformationdata 13":__('Travelerinformationdata 13'),"travelerinformationdata 14":__('Travelerinformationdata 14')}}, + {field: 'travelerinformationdata_text', title: __('Travelerinformationdata'), operate:false, formatter: Table.api.formatter.label}, + {field: 'tripinformationdata', title: __('Tripinformationdata'), visible:false, searchList: {"tripinformationdata 1":__('Tripinformationdata 1'),"tripinformationdata 2":__('Tripinformationdata 2'),"tripinformationdata 3":__('Tripinformationdata 3'),"tripinformationdata 4":__('Tripinformationdata 4'),"tripinformationdata 5":__('Tripinformationdata 5'),"tripinformationdata 6":__('Tripinformationdata 6'),"tripinformationdata 7":__('Tripinformationdata 7'),"tripinformationdata 8":__('Tripinformationdata 8'),"tripinformationdata 9":__('Tripinformationdata 9'),"tripinformationdata 10":__('Tripinformationdata 10'),"tripinformationdata 11":__('Tripinformationdata 11'),"tripinformationdata 12":__('Tripinformationdata 12'),"tripinformationdata 13":__('Tripinformationdata 13'),"tripinformationdata 14":__('Tripinformationdata 14'),"tripinformationdata 15":__('Tripinformationdata 15'),"tripinformationdata 16":__('Tripinformationdata 16'),"tripinformationdata 17":__('Tripinformationdata 17'),"tripinformationdata 18":__('Tripinformationdata 18'),"tripinformationdata 19":__('Tripinformationdata 19'),"tripinformationdata 20":__('Tripinformationdata 20'),"tripinformationdata 21":__('Tripinformationdata 21'),"tripinformationdata 22":__('Tripinformationdata 22'),"tripinformationdata 23":__('Tripinformationdata 23'),"tripinformationdata 24":__('Tripinformationdata 24'),"tripinformationdata 25":__('Tripinformationdata 25'),"tripinformationdata 26":__('Tripinformationdata 26'),"tripinformationdata 27":__('Tripinformationdata 27'),"tripinformationdata 28":__('Tripinformationdata 28'),"tripinformationdata 29":__('Tripinformationdata 29'),"tripinformationdata 30":__('Tripinformationdata 30'),"tripinformationdata 31":__('Tripinformationdata 31'),"tripinformationdata 32":__('Tripinformationdata 32'),"tripinformationdata 33":__('Tripinformationdata 33'),"tripinformationdata 34":__('Tripinformationdata 34'),"tripinformationdata 35":__('Tripinformationdata 35'),"tripinformationdata 36":__('Tripinformationdata 36'),"tripinformationdata 37":__('Tripinformationdata 37'),"tripinformationdata 38":__('Tripinformationdata 38'),"tripinformationdata 39":__('Tripinformationdata 39'),"tripinformationdata 40":__('Tripinformationdata 40'),"tripinformationdata 41":__('Tripinformationdata 41'),"tripinformationdata 42":__('Tripinformationdata 42'),"tripinformationdata 43":__('Tripinformationdata 43'),"tripinformationdata 44":__('Tripinformationdata 44'),"tripinformationdata 45":__('Tripinformationdata 45'),"tripinformationdata 46":__('Tripinformationdata 46'),"tripinformationdata 47":__('Tripinformationdata 47'),"tripinformationdata 48":__('Tripinformationdata 48'),"tripinformationdata 49":__('Tripinformationdata 49'),"tripinformationdata 50":__('Tripinformationdata 50'),"tripinformationdata 51":__('Tripinformationdata 51'),"tripinformationdata 52":__('Tripinformationdata 52'),"tripinformationdata 53":__('Tripinformationdata 53'),"tripinformationdata 54":__('Tripinformationdata 54'),"tripinformationdata 55":__('Tripinformationdata 55'),"tripinformationdata 56":__('Tripinformationdata 56'),"tripinformationdata 57":__('Tripinformationdata 57'),"tripinformationdata 58":__('Tripinformationdata 58'),"tripinformationdata 59":__('Tripinformationdata 59'),"tripinformationdata 60":__('Tripinformationdata 60'),"tripinformationdata 61":__('Tripinformationdata 61'),"tripinformationdata 62":__('Tripinformationdata 62'),"tripinformationdata 63":__('Tripinformationdata 63'),"tripinformationdata 64":__('Tripinformationdata 64')}}, + {field: 'tripinformationdata_text', title: __('Tripinformationdata'), operate:false, formatter: Table.api.formatter.label}, + {field: 'backaddressdata', title: __('Backaddressdata'), visible:false, searchList: {"backaddressdata 1":__('Backaddressdata 1'),"backaddressdata 2":__('Backaddressdata 2')}}, + {field: 'backaddressdata_text', title: __('Backaddressdata'), operate:false, formatter: Table.api.formatter.label}, + {field: 'receivingaddressdata', title: __('Receivingaddressdata'), visible:false, searchList: {"receivingaddressdata 1":__('Receivingaddressdata 1'),"receivingaddressdata 2":__('Receivingaddressdata 2'),"receivingaddressdata 3":__('Receivingaddressdata 3')}}, + {field: 'receivingaddressdata_text', title: __('Receivingaddressdata'), operate:false, formatter: Table.api.formatter.label}, + {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate} + ] + ] + }); + + // 为表格绑定事件 + Table.api.bindevent(table); + }, + add: function () { + Controller.api.bindevent(); + }, + edit: function () { + Controller.api.bindevent(); + }, + api: { + bindevent: function () { + Form.api.bindevent($("form[role=form]")); + } + } + }; + return Controller; +}); \ No newline at end of file diff --git a/public/assets/js/backend/product/productaddress.js b/public/assets/js/backend/product/productaddress.js new file mode 100644 index 00000000..9174898b --- /dev/null +++ b/public/assets/js/backend/product/productaddress.js @@ -0,0 +1,57 @@ +define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) { + + var Controller = { + index: function () { + // 初始化表格参数配置 + Table.api.init({ + extend: { + index_url: 'product/productaddress/index', + add_url: 'product/productaddress/add', + edit_url: 'product/productaddress/edit', + del_url: 'product/productaddress/del', + multi_url: 'product/productaddress/multi', + table: 'product_address', + } + }); + + var table = $("#table"); + + // 初始化表格 + table.bootstrapTable({ + url: $.fn.bootstrapTable.defaults.extend.index_url, + pk: 'id', + sortName: 'id', + columns: [ + [ + {checkbox: true}, + {field: 'id', title: __('Id')}, + {field: 'city', title: __('City')}, + {field: 'airport', title: __('Airport')}, + {field: 'terminal', title: __('Terminal')}, + {field: 'place', title: __('Place')}, + {field: 'username', title: __('Username')}, + {field: 'tel', title: __('Tel')}, + {field: 'opentime', title: __('Opentime')}, + {field: 'closetime', title: __('Closetime')}, + {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate} + ] + ] + }); + + // 为表格绑定事件 + Table.api.bindevent(table); + }, + add: function () { + Controller.api.bindevent(); + }, + edit: function () { + Controller.api.bindevent(); + }, + api: { + bindevent: function () { + Form.api.bindevent($("form[role=form]")); + } + } + }; + return Controller; +}); \ No newline at end of file diff --git a/public/assets/js/backend/product/productairport.js b/public/assets/js/backend/product/productairport.js new file mode 100644 index 00000000..fc32651e --- /dev/null +++ b/public/assets/js/backend/product/productairport.js @@ -0,0 +1,67 @@ +define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) { + + var Controller = { + index: function () { + // 初始化表格参数配置 + Table.api.init({ + extend: { + index_url: 'product/productairport/index', + add_url: 'product/productairport/add', + edit_url: 'product/productairport/edit', + del_url: 'product/productairport/del', + multi_url: 'product/productairport/multi', + table: 'product_airport', + } + }); + + var table = $("#table"); + + // 初始化表格 + table.bootstrapTable({ + url: $.fn.bootstrapTable.defaults.extend.index_url, + pk: 'id', + sortName: 'id', + columns: [ + [ + {checkbox: true}, + {field: 'id', title: __('Id')}, + {field: 'name', title: __('Name')}, + {field: 'lightwords', title: __('Lightwords')}, + {field: 'destination', title: __('Destination')}, + {field: 'homeimages', title: __('Homeimages'), formatter: Table.api.formatter.images}, + {field: 'cost_production', title: __('Cost_production')}, + {field: 'advancedata', title: __('Advancedata'), visible:false, searchList: {"advancedata 0":__('Advancedata 0'),"advancedata 1":__('Advancedata 1'),"advancedata 2":__('Advancedata 2'),"advancedata 3":__('Advancedata 3')}}, + {field: 'advancedata_text', title: __('Advancedata'), operate:false}, + {field: 'explanation', title: __('Explanation')}, + {field: 'travel_template_information', title: __('Travel_template_information')}, + {field: 'supplier', title: __('Supplier')}, + {field: 'supplier_price', title: __('Supplier_price')}, + {field: 'startdate', title: __('Startdate'), operate:'RANGE', addclass:'datetimerange'}, + {field: 'enddate', title: __('Enddate'), operate:'RANGE', addclass:'datetimerange'}, + {field: 'in_stock', title: __('In_stock')}, + {field: 'list', title: __('List'), visible:false, searchList: {"list 0":__('List 0'),"list 1":__('List 1'),"list 2":__('List 2'),"list 3":__('List 3'),"list 4":__('List 4')}}, + {field: 'list_text', title: __('List'), operate:false}, + {field: 'status', title: __('Status'), visible:false, searchList: {"normal":__('normal'),"hidden":__('hidden')}}, + {field: 'status_text', title: __('Status'), operate:false}, + {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate} + ] + ] + }); + + // 为表格绑定事件 + Table.api.bindevent(table); + }, + add: function () { + Controller.api.bindevent(); + }, + edit: function () { + Controller.api.bindevent(); + }, + api: { + bindevent: function () { + Form.api.bindevent($("form[role=form]")); + } + } + }; + return Controller; +}); \ No newline at end of file diff --git a/public/assets/js/backend/product/productcar.js b/public/assets/js/backend/product/productcar.js new file mode 100644 index 00000000..648a1aab --- /dev/null +++ b/public/assets/js/backend/product/productcar.js @@ -0,0 +1,70 @@ +define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) { + + var Controller = { + index: function () { + // 初始化表格参数配置 + Table.api.init({ + extend: { + index_url: 'product/productcar/index', + add_url: 'product/productcar/add', + edit_url: 'product/productcar/edit', + del_url: 'product/productcar/del', + multi_url: 'product/productcar/multi', + table: 'product_car', + } + }); + + var table = $("#table"); + + // 初始化表格 + table.bootstrapTable({ + url: $.fn.bootstrapTable.defaults.extend.index_url, + pk: 'id', + sortName: 'id', + columns: [ + [ + {checkbox: true}, + {field: 'id', title: __('Id')}, + {field: 'name', title: __('Name')}, + {field: 'lightwords', title: __('Lightwords')}, + {field: 'destination', title: __('Destination')}, + {field: 'topimages', title: __('Topimages'), formatter: Table.api.formatter.images}, + {field: 'videofiles', title: __('Videofiles')}, + {field: 'cost_production', title: __('Cost_production')}, + {field: 'advancedata', title: __('Advancedata'), visible:false, searchList: {"advancedata 0":__('Advancedata 0'),"advancedata 1":__('Advancedata 1'),"advancedata 2":__('Advancedata 2'),"advancedata 3":__('Advancedata 3')}}, + {field: 'advancedata_text', title: __('Advancedata'), operate:false}, + {field: 'explanation', title: __('Explanation')}, + {field: 'travel_template_information', title: __('Travel_template_information')}, + {field: 'supplier', title: __('Supplier')}, + {field: 'supplier_price', title: __('Supplier_price')}, + {field: 'supplier_start', title: __('Supplier_start'), operate:'RANGE', addclass:'datetimerange'}, + {field: 'supplier_end', title: __('Supplier_end'), operate:'RANGE', addclass:'datetimerange'}, + {field: 'trip_length', title: __('Trip_length')}, + {field: 'trip_theme', title: __('Trip_theme')}, + {field: 'images', title: __('Images'), formatter: Table.api.formatter.images}, + {field: 'infomation', title: __('Infomation')}, + {field: 'in_stock', title: __('In_stock')}, + {field: 'list', title: __('List'), visible:false, searchList: {"list 0":__('List 0'),"list 1":__('List 1'),"list 2":__('List 2'),"list 3":__('List 3'),"list 4":__('List 4')}}, + {field: 'list_text', title: __('List'), operate:false}, + {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate} + ] + ] + }); + + // 为表格绑定事件 + Table.api.bindevent(table); + }, + add: function () { + Controller.api.bindevent(); + }, + edit: function () { + Controller.api.bindevent(); + }, + api: { + bindevent: function () { + Form.api.bindevent($("form[role=form]")); + } + } + }; + return Controller; +}); \ No newline at end of file diff --git a/public/assets/js/backend/product/productcarrental.js b/public/assets/js/backend/product/productcarrental.js new file mode 100644 index 00000000..1a51a3ae --- /dev/null +++ b/public/assets/js/backend/product/productcarrental.js @@ -0,0 +1,65 @@ +define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) { + + var Controller = { + index: function () { + // 初始化表格参数配置 + Table.api.init({ + extend: { + index_url: 'product/productcarrental/index', + add_url: 'product/productcarrental/add', + edit_url: 'product/productcarrental/edit', + del_url: 'product/productcarrental/del', + multi_url: 'product/productcarrental/multi', + table: 'product_car_rental', + } + }); + + var table = $("#table"); + + // 初始化表格 + table.bootstrapTable({ + url: $.fn.bootstrapTable.defaults.extend.index_url, + pk: 'id', + sortName: 'id', + columns: [ + [ + {checkbox: true}, + {field: 'id', title: __('Id')}, + {field: 'name', title: __('Name')}, + {field: 'lightwords', title: __('Lightwords')}, + {field: 'destination', title: __('Destination')}, + {field: 'images', title: __('Images'), formatter: Table.api.formatter.images}, + {field: 'cost_production', title: __('Cost_production')}, + {field: 'advancedata', title: __('Advancedata'), visible:false, searchList: {"advancedata 0":__('Advancedata 0'),"advancedata 1":__('Advancedata 1'),"advancedata 2":__('Advancedata 2'),"advancedata 3":__('Advancedata 3')}}, + {field: 'advancedata_text', title: __('Advancedata'), operate:false}, + {field: 'explanation', title: __('Explanation')}, + {field: 'travel_template_information', title: __('Travel_template_information')}, + {field: 'supplier', title: __('Supplier')}, + {field: 'supplier_price', title: __('Supplier_price')}, + {field: 'supplier_start', title: __('Supplier_start'), operate:'RANGE', addclass:'datetimerange'}, + {field: 'supplier_end', title: __('Supplier_end'), operate:'RANGE', addclass:'datetimerange'}, + {field: 'in_stock', title: __('In_stock')}, + {field: 'list', title: __('List'), visible:false, searchList: {"list 0":__('List 0'),"list 1":__('List 1'),"list 2":__('List 2'),"list 3":__('List 3'),"list 4":__('List 4')}}, + {field: 'list_text', title: __('List'), operate:false}, + {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate} + ] + ] + }); + + // 为表格绑定事件 + Table.api.bindevent(table); + }, + add: function () { + Controller.api.bindevent(); + }, + edit: function () { + Controller.api.bindevent(); + }, + api: { + bindevent: function () { + Form.api.bindevent($("form[role=form]")); + } + } + }; + return Controller; +}); \ No newline at end of file diff --git a/public/assets/js/backend/product/productday.js b/public/assets/js/backend/product/productday.js new file mode 100644 index 00000000..6a2c5563 --- /dev/null +++ b/public/assets/js/backend/product/productday.js @@ -0,0 +1,70 @@ +define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) { + + var Controller = { + index: function () { + // 初始化表格参数配置 + Table.api.init({ + extend: { + index_url: 'product/productday/index', + add_url: 'product/productday/add', + edit_url: 'product/productday/edit', + del_url: 'product/productday/del', + multi_url: 'product/productday/multi', + table: 'product_day', + } + }); + + var table = $("#table"); + + // 初始化表格 + table.bootstrapTable({ + url: $.fn.bootstrapTable.defaults.extend.index_url, + pk: 'id', + sortName: 'id', + columns: [ + [ + {checkbox: true}, + {field: 'id', title: __('Id')}, + {field: 'name', title: __('Name')}, + {field: 'lightwords', title: __('Lightwords')}, + {field: 'destination', title: __('Destination')}, + {field: 'homeimages', title: __('Homeimages'), formatter: Table.api.formatter.images}, + {field: 'cost_production', title: __('Cost_production')}, + {field: 'advancedata', title: __('Advancedata'), visible:false, searchList: {"advancedata 0":__('Advancedata 0'),"advancedata 1":__('Advancedata 1'),"advancedata 2":__('Advancedata 2'),"advancedata 3":__('Advancedata 3')}}, + {field: 'advancedata_text', title: __('Advancedata'), operate:false}, + {field: 'explanation', title: __('Explanation')}, + {field: 'travel_template_information', title: __('Travel_template_information')}, + {field: 'out_postion', title: __('Out_postion')}, + {field: 'supplier', title: __('Supplier')}, + {field: 'supplier_price', title: __('Supplier_price')}, + {field: 'supplier_start', title: __('Supplier_start'), operate:'RANGE', addclass:'datetimerange'}, + {field: 'supplier_end', title: __('Supplier_end'), operate:'RANGE', addclass:'datetimerange'}, + {field: 'trip_length', title: __('Trip_length')}, + {field: 'trip_theme', title: __('Trip_theme')}, + {field: 'images', title: __('Images'), formatter: Table.api.formatter.images}, + {field: 'infomation', title: __('Infomation')}, + {field: 'in_stock', title: __('In_stock')}, + {field: 'list', title: __('List'), visible:false, searchList: {"list 0":__('List 0'),"list 1":__('List 1'),"list 2":__('List 2'),"list 3":__('List 3'),"list 4":__('List 4')}}, + {field: 'list_text', title: __('List'), operate:false}, + {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate} + ] + ] + }); + + // 为表格绑定事件 + Table.api.bindevent(table); + }, + add: function () { + Controller.api.bindevent(); + }, + edit: function () { + Controller.api.bindevent(); + }, + api: { + bindevent: function () { + Form.api.bindevent($("form[role=form]")); + } + } + }; + return Controller; +}); \ No newline at end of file diff --git a/public/assets/js/backend/product/productexperience.js b/public/assets/js/backend/product/productexperience.js new file mode 100644 index 00000000..a1ead23f --- /dev/null +++ b/public/assets/js/backend/product/productexperience.js @@ -0,0 +1,72 @@ +define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) { + + var Controller = { + index: function () { + // 初始化表格参数配置 + Table.api.init({ + extend: { + index_url: 'product/productexperience/index', + add_url: 'product/productexperience/add', + edit_url: 'product/productexperience/edit', + del_url: 'product/productexperience/del', + multi_url: 'product/productexperience/multi', + table: 'product_experience', + } + }); + + var table = $("#table"); + + // 初始化表格 + table.bootstrapTable({ + url: $.fn.bootstrapTable.defaults.extend.index_url, + pk: 'id', + sortName: 'id', + columns: [ + [ + {checkbox: true}, + {field: 'id', title: __('Id')}, + {field: 'name', title: __('Name')}, + {field: 'lightwords', title: __('Lightwords')}, + {field: 'destination', title: __('Destination')}, + {field: 'topimages', title: __('Topimages'), formatter: Table.api.formatter.images}, + {field: 'videofiles', title: __('Videofiles')}, + {field: 'cost_production', title: __('Cost_production')}, + {field: 'advancedata', title: __('Advancedata'), visible:false, searchList: {"advancedata 0":__('Advancedata 0'),"advancedata 1":__('Advancedata 1'),"advancedata 2":__('Advancedata 2'),"advancedata 3":__('Advancedata 3')}}, + {field: 'advancedata_text', title: __('Advancedata'), operate:false}, + {field: 'explanation', title: __('Explanation')}, + {field: 'travel_template_information', title: __('Travel_template_information')}, + {field: 'out_data', title: __('Out_data'), visible:false, searchList: {"out_data 0":__('Out_data 0'),"out_data 1":__('Out_data 1'),"out_data 2":__('Out_data 2'),"out_data 3":__('Out_data 3'),"out_data 4":__('Out_data 4'),"out_data 5":__('Out_data 5'),"out_data 6":__('Out_data 6'),"out_data 7":__('Out_data 7'),"out_data 8":__('Out_data 8'),"out_data 9":__('Out_data 9'),"out_data 10":__('Out_data 10'),"out_data 11":__('Out_data 11'),"out_data 12":__('Out_data 12'),"out_data 13":__('Out_data 13'),"out_data 14":__('Out_data 14'),"out_data 15":__('Out_data 15')}}, + {field: 'out_data_text', title: __('Out_data'), operate:false}, + {field: 'supplier', title: __('Supplier')}, + {field: 'supplier_price', title: __('Supplier_price')}, + {field: 'supplier_start', title: __('Supplier_start'), operate:'RANGE', addclass:'datetimerange'}, + {field: 'supplier_end', title: __('Supplier_end'), operate:'RANGE', addclass:'datetimerange'}, + {field: 'trip_length', title: __('Trip_length')}, + {field: 'trip_theme', title: __('Trip_theme')}, + {field: 'images', title: __('Images'), formatter: Table.api.formatter.images}, + {field: 'infomation', title: __('Infomation')}, + {field: 'in_stock', title: __('In_stock')}, + {field: 'list', title: __('List'), visible:false, searchList: {"list 0":__('List 0'),"list 1":__('List 1'),"list 2":__('List 2'),"list 3":__('List 3'),"list 4":__('List 4')}}, + {field: 'list_text', title: __('List'), operate:false}, + {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate} + ] + ] + }); + + // 为表格绑定事件 + Table.api.bindevent(table); + }, + add: function () { + Controller.api.bindevent(); + }, + edit: function () { + Controller.api.bindevent(); + }, + api: { + bindevent: function () { + Form.api.bindevent($("form[role=form]")); + } + } + }; + return Controller; +}); \ No newline at end of file diff --git a/public/assets/js/backend/product/productfood.js b/public/assets/js/backend/product/productfood.js new file mode 100644 index 00000000..f5acf3f5 --- /dev/null +++ b/public/assets/js/backend/product/productfood.js @@ -0,0 +1,65 @@ +define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) { + + var Controller = { + index: function () { + // 初始化表格参数配置 + Table.api.init({ + extend: { + index_url: 'product/productfood/index', + add_url: 'product/productfood/add', + edit_url: 'product/productfood/edit', + del_url: 'product/productfood/del', + multi_url: 'product/productfood/multi', + table: 'product_food', + } + }); + + var table = $("#table"); + + // 初始化表格 + table.bootstrapTable({ + url: $.fn.bootstrapTable.defaults.extend.index_url, + pk: 'id', + sortName: 'id', + columns: [ + [ + {checkbox: true}, + {field: 'id', title: __('Id')}, + {field: 'name', title: __('Name')}, + {field: 'lightwords', title: __('Lightwords')}, + {field: 'destination', title: __('Destination')}, + {field: 'images', title: __('Images'), formatter: Table.api.formatter.images}, + {field: 'cost_production', title: __('Cost_production')}, + {field: 'advancedata', title: __('Advancedata'), visible:false, searchList: {"advancedata 0":__('Advancedata 0'),"advancedata 1":__('Advancedata 1'),"advancedata 2":__('Advancedata 2'),"advancedata 3":__('Advancedata 3')}}, + {field: 'advancedata_text', title: __('Advancedata'), operate:false}, + {field: 'explanation', title: __('Explanation')}, + {field: 'travel_template_information', title: __('Travel_template_information')}, + {field: 'supplier', title: __('Supplier')}, + {field: 'supplier_price', title: __('Supplier_price')}, + {field: 'supplier_start', title: __('Supplier_start'), operate:'RANGE', addclass:'datetimerange'}, + {field: 'supplier_end', title: __('Supplier_end'), operate:'RANGE', addclass:'datetimerange'}, + {field: 'in_stock', title: __('In_stock')}, + {field: 'list', title: __('List'), visible:false, searchList: {"list 0":__('List 0'),"list 1":__('List 1'),"list 2":__('List 2'),"list 3":__('List 3'),"list 4":__('List 4')}}, + {field: 'list_text', title: __('List'), operate:false}, + {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate} + ] + ] + }); + + // 为表格绑定事件 + Table.api.bindevent(table); + }, + add: function () { + Controller.api.bindevent(); + }, + edit: function () { + Controller.api.bindevent(); + }, + api: { + bindevent: function () { + Form.api.bindevent($("form[role=form]")); + } + } + }; + return Controller; +}); \ No newline at end of file diff --git a/public/assets/js/backend/product/producthotels.js b/public/assets/js/backend/product/producthotels.js new file mode 100644 index 00000000..9a117c43 --- /dev/null +++ b/public/assets/js/backend/product/producthotels.js @@ -0,0 +1,79 @@ +define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) { + + var Controller = { + index: function () { + // 初始化表格参数配置 + Table.api.init({ + extend: { + index_url: 'product/producthotels/index', + add_url: 'product/producthotels/add', + edit_url: 'product/producthotels/edit', + del_url: 'product/producthotels/del', + multi_url: 'product/producthotels/multi', + table: 'product_hotels', + } + }); + + var table = $("#table"); + + // 初始化表格 + table.bootstrapTable({ + url: $.fn.bootstrapTable.defaults.extend.index_url, + pk: 'id', + sortName: 'id', + columns: [ + [ + {checkbox: true}, + {field: 'id', title: __('Id')}, + {field: 'name', title: __('Name')}, + {field: 'lightwords', title: __('Lightwords')}, + {field: 'destination', title: __('Destination')}, + {field: 'homeimages', title: __('Homeimages'), formatter: Table.api.formatter.images}, + {field: 'cost_production', title: __('Cost_production')}, + {field: 'advancedata', title: __('Advancedata'), visible:false, searchList: {"advancedata 0":__('Advancedata 0'),"advancedata 1":__('Advancedata 1'),"advancedata 2":__('Advancedata 2'),"advancedata 3":__('Advancedata 3')}}, + {field: 'advancedata_text', title: __('Advancedata'), operate:false}, + {field: 'explanation', title: __('Explanation')}, + {field: 'travel_template_information', title: __('Travel_template_information')}, + {field: 'out_data', title: __('Out_data'), visible:false, searchList: {"out_data 0":__('Out_data 0'),"out_data 1":__('Out_data 1'),"out_data 2":__('Out_data 2'),"out_data 3":__('Out_data 3'),"out_data 4":__('Out_data 4'),"out_data 5":__('Out_data 5'),"out_data 6":__('Out_data 6'),"out_data 7":__('Out_data 7'),"out_data 8":__('Out_data 8'),"out_data 9":__('Out_data 9'),"out_data 10":__('Out_data 10'),"out_data 11":__('Out_data 11'),"out_data 12":__('Out_data 12'),"out_data 13":__('Out_data 13'),"out_data 14":__('Out_data 14'),"out_data 15":__('Out_data 15')}}, + {field: 'out_data_text', title: __('Out_data'), operate:false}, + {field: 'supplier', title: __('Supplier')}, + {field: 'supplier_price', title: __('Supplier_price')}, + {field: 'supplier_start', title: __('Supplier_start'), operate:'RANGE', addclass:'datetimerange'}, + {field: 'supplier_end', title: __('Supplier_end'), operate:'RANGE', addclass:'datetimerange'}, + {field: 'hotel_id', title: __('Hotel_id')}, + {field: 'hotel_name', title: __('Hotel_name')}, + {field: 'hotel_en_name', title: __('Hotel_en_name')}, + {field: 'hotel_list', title: __('Hotel_list'), visible:false, searchList: {"hotel_list 0":__('Hotel_list 0'),"hotel_list 1":__('Hotel_list 1')}}, + {field: 'hotel_list_text', title: __('Hotel_list'), operate:false}, + {field: 'hotel_address', title: __('Hotel_address')}, + {field: 'hotel_info', title: __('Hotel_info')}, + {field: 'hotel_images', title: __('Hotel_images'), formatter: Table.api.formatter.images}, + {field: 'trip_length', title: __('Trip_length')}, + {field: 'trip_theme', title: __('Trip_theme')}, + {field: 'images', title: __('Images'), formatter: Table.api.formatter.images}, + {field: 'infomation', title: __('Infomation')}, + {field: 'in_stock', title: __('In_stock')}, + {field: 'list', title: __('List'), visible:false, searchList: {"list 0":__('List 0'),"list 1":__('List 1'),"list 2":__('List 2'),"list 3":__('List 3'),"list 4":__('List 4')}}, + {field: 'list_text', title: __('List'), operate:false}, + {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate} + ] + ] + }); + + // 为表格绑定事件 + Table.api.bindevent(table); + }, + add: function () { + Controller.api.bindevent(); + }, + edit: function () { + Controller.api.bindevent(); + }, + api: { + bindevent: function () { + Form.api.bindevent($("form[role=form]")); + } + } + }; + return Controller; +}); \ No newline at end of file diff --git a/public/assets/js/backend/product/productlocal.js b/public/assets/js/backend/product/productlocal.js new file mode 100644 index 00000000..cc4a8df0 --- /dev/null +++ b/public/assets/js/backend/product/productlocal.js @@ -0,0 +1,69 @@ +define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) { + + var Controller = { + index: function () { + // 初始化表格参数配置 + Table.api.init({ + extend: { + index_url: 'product/productlocal/index', + add_url: 'product/productlocal/add', + edit_url: 'product/productlocal/edit', + del_url: 'product/productlocal/del', + multi_url: 'product/productlocal/multi', + table: 'product_local', + } + }); + + var table = $("#table"); + + // 初始化表格 + table.bootstrapTable({ + url: $.fn.bootstrapTable.defaults.extend.index_url, + pk: 'id', + sortName: 'id', + columns: [ + [ + {checkbox: true}, + {field: 'id', title: __('Id')}, + {field: 'name', title: __('Name')}, + {field: 'lightwords', title: __('Lightwords')}, + {field: 'destination', title: __('Destination')}, + {field: 'image', title: __('Image'), formatter: Table.api.formatter.image}, + {field: 'topimages', title: __('Topimages'), formatter: Table.api.formatter.images}, + {field: 'videofiles', title: __('Videofiles')}, + {field: 'price_id', title: __('Price_id')}, + {field: 'explanation', title: __('Explanation')}, + {field: 'outlocal', title: __('Outlocal')}, + {field: 'out_postion', title: __('Out_postion')}, + {field: 'out_data', title: __('Out_data'), visible:false, searchList: {"out_data 0":__('Out_data 0'),"out_data 1":__('Out_data 1'),"out_data 2":__('Out_data 2'),"out_data 3":__('Out_data 3'),"out_data 4":__('Out_data 4'),"out_data 5":__('Out_data 5'),"out_data 6":__('Out_data 6'),"out_data 7":__('Out_data 7'),"out_data 8":__('Out_data 8'),"out_data 9":__('Out_data 9'),"out_data 10":__('Out_data 10'),"out_data 11":__('Out_data 11'),"out_data 12":__('Out_data 12'),"out_data 13":__('Out_data 13'),"out_data 14":__('Out_data 14'),"out_data 15":__('Out_data 15')}}, + {field: 'out_data_text', title: __('Out_data'), operate:false}, + {field: 'supplier', title: __('Supplier')}, + {field: 'trip_length', title: __('Trip_length')}, + {field: 'trip_theme', title: __('Trip_theme')}, + {field: 'images', title: __('Images'), formatter: Table.api.formatter.images}, + {field: 'infomation', title: __('Infomation')}, + {field: 'in_stock', title: __('In_stock')}, + {field: 'list', title: __('List'), visible:false, searchList: {"list 0":__('List 0'),"list 1":__('List 1'),"list 2":__('List 2'),"list 3":__('List 3'),"list 4":__('List 4')}}, + {field: 'list_text', title: __('List'), operate:false}, + {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate} + ] + ] + }); + + // 为表格绑定事件 + Table.api.bindevent(table); + }, + add: function () { + Controller.api.bindevent(); + }, + edit: function () { + Controller.api.bindevent(); + }, + api: { + bindevent: function () { + Form.api.bindevent($("form[role=form]")); + } + } + }; + return Controller; +}); \ No newline at end of file diff --git a/public/assets/js/backend/product/productmanydays.js b/public/assets/js/backend/product/productmanydays.js new file mode 100644 index 00000000..2a895f8d --- /dev/null +++ b/public/assets/js/backend/product/productmanydays.js @@ -0,0 +1,82 @@ +define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) { + + var Controller = { + index: function () { + // 初始化表格参数配置 + Table.api.init({ + extend: { + index_url: 'product/productmanydays/index', + add_url: 'product/productmanydays/add', + edit_url: 'product/productmanydays/edit', + del_url: 'product/productmanydays/del', + multi_url: 'product/productmanydays/multi', + table: 'product_manydays', + } + }); + + var table = $("#table"); + + // 初始化表格 + table.bootstrapTable({ + url: $.fn.bootstrapTable.defaults.extend.index_url, + pk: 'id', + sortName: 'id', + columns: [ + [ + {checkbox: true}, + {field: 'id', title: __('Id')}, + {field: 'name', title: __('Name')}, + {field: 'lightwords', title: __('Lightwords')}, + {field: 'destination', title: __('Destination')}, + {field: 'homeimages', title: __('Homeimages'), formatter: Table.api.formatter.images}, + {field: 'cost_production', title: __('Cost_production')}, + {field: 'advancedata', title: __('Advancedata'), visible:false, searchList: {"advancedata 0":__('Advancedata 0'),"advancedata 1":__('Advancedata 1'),"advancedata 2":__('Advancedata 2'),"advancedata 3":__('Advancedata 3')}}, + {field: 'advancedata_text', title: __('Advancedata'), operate:false}, + {field: 'explanation', title: __('Explanation')}, + {field: 'travel_template_information', title: __('Travel_template_information')}, + {field: 'out_postion', title: __('Out_postion')}, + {field: 'out_data', title: __('Out_data'), visible:false, searchList: {"out_data 0":__('Out_data 0'),"out_data 1":__('Out_data 1'),"out_data 2":__('Out_data 2'),"out_data 3":__('Out_data 3'),"out_data 4":__('Out_data 4'),"out_data 5":__('Out_data 5'),"out_data 6":__('Out_data 6'),"out_data 7":__('Out_data 7'),"out_data 8":__('Out_data 8'),"out_data 9":__('Out_data 9'),"out_data 10":__('Out_data 10'),"out_data 11":__('Out_data 11'),"out_data 12":__('Out_data 12'),"out_data 13":__('Out_data 13'),"out_data 14":__('Out_data 14'),"out_data 15":__('Out_data 15')}}, + {field: 'out_data_text', title: __('Out_data'), operate:false}, + {field: 'supplier', title: __('Supplier')}, + {field: 'supplier_price', title: __('Supplier_price')}, + {field: 'supplier_start', title: __('Supplier_start'), operate:'RANGE', addclass:'datetimerange'}, + {field: 'supplier_end', title: __('Supplier_end'), operate:'RANGE', addclass:'datetimerange'}, + {field: 'hotel_id', title: __('Hotel_id')}, + {field: 'hotel_name', title: __('Hotel_name')}, + {field: 'hotel_en_name', title: __('Hotel_en_name')}, + {field: 'hotel_list', title: __('Hotel_list'), visible:false, searchList: {"hotel_list 0":__('Hotel_list 0'),"hotel_list 1":__('Hotel_list 1')}}, + {field: 'hotel_list_text', title: __('Hotel_list'), operate:false}, + {field: 'hotel_address', title: __('Hotel_address')}, + {field: 'hotel_info', title: __('Hotel_info')}, + {field: 'hotel_images', title: __('Hotel_images'), formatter: Table.api.formatter.images}, + {field: 'trip_length', title: __('Trip_length')}, + {field: 'trip_theme', title: __('Trip_theme')}, + {field: 'images', title: __('Images'), formatter: Table.api.formatter.images}, + {field: 'infomation', title: __('Infomation')}, + {field: 'in_stock', title: __('In_stock')}, + {field: 'list', title: __('List'), visible:false, searchList: {"list 0":__('List 0'),"list 1":__('List 1'),"list 2":__('List 2'),"list 3":__('List 3'),"list 4":__('List 4')}}, + {field: 'list_text', title: __('List'), operate:false}, + {field: 'status', title: __('Status'), visible:false, searchList: {"normal":__('normal'),"hidden":__('hidden')}}, + {field: 'status_text', title: __('Status'), operate:false}, + {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate} + ] + ] + }); + + // 为表格绑定事件 + Table.api.bindevent(table); + }, + add: function () { + Controller.api.bindevent(); + }, + edit: function () { + Controller.api.bindevent(); + }, + api: { + bindevent: function () { + Form.api.bindevent($("form[role=form]")); + } + } + }; + return Controller; +}); \ No newline at end of file diff --git a/public/assets/js/backend/product/productshow.js b/public/assets/js/backend/product/productshow.js new file mode 100644 index 00000000..5ee1acc9 --- /dev/null +++ b/public/assets/js/backend/product/productshow.js @@ -0,0 +1,70 @@ +define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) { + + var Controller = { + index: function () { + // 初始化表格参数配置 + Table.api.init({ + extend: { + index_url: 'product/productshow/index', + add_url: 'product/productshow/add', + edit_url: 'product/productshow/edit', + del_url: 'product/productshow/del', + multi_url: 'product/productshow/multi', + table: 'product_show', + } + }); + + var table = $("#table"); + + // 初始化表格 + table.bootstrapTable({ + url: $.fn.bootstrapTable.defaults.extend.index_url, + pk: 'id', + sortName: 'id', + columns: [ + [ + {checkbox: true}, + {field: 'id', title: __('Id')}, + {field: 'name', title: __('Name')}, + {field: 'lightwords', title: __('Lightwords')}, + {field: 'destination', title: __('Destination')}, + {field: 'homeimages', title: __('Homeimages'), formatter: Table.api.formatter.images}, + {field: 'videofiles', title: __('Videofiles')}, + {field: 'cost_production', title: __('Cost_production')}, + {field: 'advancedata', title: __('Advancedata'), visible:false, searchList: {"advancedata 0":__('Advancedata 0'),"advancedata 1":__('Advancedata 1'),"advancedata 2":__('Advancedata 2'),"advancedata 3":__('Advancedata 3')}}, + {field: 'advancedata_text', title: __('Advancedata'), operate:false}, + {field: 'explanation', title: __('Explanation')}, + {field: 'travel_template_information', title: __('Travel_template_information')}, + {field: 'out_data', title: __('Out_data'), visible:false, searchList: {"out_data 0":__('Out_data 0'),"out_data 1":__('Out_data 1'),"out_data 2":__('Out_data 2'),"out_data 3":__('Out_data 3'),"out_data 4":__('Out_data 4'),"out_data 5":__('Out_data 5'),"out_data 6":__('Out_data 6'),"out_data 7":__('Out_data 7'),"out_data 8":__('Out_data 8'),"out_data 9":__('Out_data 9'),"out_data 10":__('Out_data 10'),"out_data 11":__('Out_data 11'),"out_data 12":__('Out_data 12'),"out_data 13":__('Out_data 13'),"out_data 14":__('Out_data 14'),"out_data 15":__('Out_data 15')}}, + {field: 'out_data_text', title: __('Out_data'), operate:false}, + {field: 'supplier', title: __('Supplier')}, + {field: 'supplier_price', title: __('Supplier_price')}, + {field: 'supplier_start', title: __('Supplier_start'), operate:'RANGE', addclass:'datetimerange'}, + {field: 'supplier_end', title: __('Supplier_end'), operate:'RANGE', addclass:'datetimerange'}, + {field: 'hotel_id', title: __('Hotel_id')}, + {field: 'trip_id', title: __('Trip_id')}, + {field: 'in_stock', title: __('In_stock')}, + {field: 'list', title: __('List'), visible:false, searchList: {"list 0":__('List 0'),"list 1":__('List 1'),"list 2":__('List 2'),"list 3":__('List 3'),"list 4":__('List 4')}}, + {field: 'list_text', title: __('List'), operate:false}, + {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate} + ] + ] + }); + + // 为表格绑定事件 + Table.api.bindevent(table); + }, + add: function () { + Controller.api.bindevent(); + }, + edit: function () { + Controller.api.bindevent(); + }, + api: { + bindevent: function () { + Form.api.bindevent($("form[role=form]")); + } + } + }; + return Controller; +}); \ No newline at end of file diff --git a/public/assets/js/backend/product/producttickets.js b/public/assets/js/backend/product/producttickets.js new file mode 100644 index 00000000..c6ef762f --- /dev/null +++ b/public/assets/js/backend/product/producttickets.js @@ -0,0 +1,68 @@ +define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) { + + var Controller = { + index: function () { + // 初始化表格参数配置 + Table.api.init({ + extend: { + index_url: 'product/producttickets/index', + add_url: 'product/producttickets/add', + edit_url: 'product/producttickets/edit', + del_url: 'product/producttickets/del', + multi_url: 'product/producttickets/multi', + table: 'product_tickets', + } + }); + + var table = $("#table"); + + // 初始化表格 + table.bootstrapTable({ + url: $.fn.bootstrapTable.defaults.extend.index_url, + pk: 'id', + sortName: 'id', + columns: [ + [ + {checkbox: true}, + {field: 'id', title: __('Id')}, + {field: 'name', title: __('Name')}, + {field: 'lightwords', title: __('Lightwords')}, + {field: 'destination', title: __('Destination')}, + {field: 'homeimages', title: __('Homeimages'), formatter: Table.api.formatter.images}, + {field: 'cost_production', title: __('Cost_production')}, + {field: 'advancedata', title: __('Advancedata'), visible:false, searchList: {"advancedata 0":__('Advancedata 0'),"advancedata 1":__('Advancedata 1'),"advancedata 2":__('Advancedata 2'),"advancedata 3":__('Advancedata 3')}}, + {field: 'advancedata_text', title: __('Advancedata'), operate:false}, + {field: 'explanation', title: __('Explanation')}, + {field: 'travel_template_information', title: __('Travel_template_information')}, + {field: 'supplier', title: __('Supplier')}, + {field: 'supplier_price', title: __('Supplier_price')}, + {field: 'supplier_start', title: __('Supplier_start'), operate:'RANGE', addclass:'datetimerange'}, + {field: 'supplier_end', title: __('Supplier_end'), operate:'RANGE', addclass:'datetimerange'}, + {field: 'in_stock', title: __('In_stock')}, + {field: 'category_id', title: __('Category_id')}, + {field: 'status', title: __('Status'), visible:false, searchList: {"normal":__('normal'),"hidden":__('hidden')}}, + {field: 'status_text', title: __('Status'), operate:false}, + {field: 'list', title: __('List'), visible:false, searchList: {"list 0":__('List 0'),"list 1":__('List 1'),"list 2":__('List 2'),"list 3":__('List 3'),"list 4":__('List 4')}}, + {field: 'list_text', title: __('List'), operate:false}, + {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate} + ] + ] + }); + + // 为表格绑定事件 + Table.api.bindevent(table); + }, + add: function () { + Controller.api.bindevent(); + }, + edit: function () { + Controller.api.bindevent(); + }, + api: { + bindevent: function () { + Form.api.bindevent($("form[role=form]")); + } + } + }; + return Controller; +}); \ No newline at end of file diff --git a/public/assets/js/backend/product/producttraffic.js b/public/assets/js/backend/product/producttraffic.js new file mode 100644 index 00000000..edf341fa --- /dev/null +++ b/public/assets/js/backend/product/producttraffic.js @@ -0,0 +1,67 @@ +define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) { + + var Controller = { + index: function () { + // 初始化表格参数配置 + Table.api.init({ + extend: { + index_url: 'product/producttraffic/index', + add_url: 'product/producttraffic/add', + edit_url: 'product/producttraffic/edit', + del_url: 'product/producttraffic/del', + multi_url: 'product/producttraffic/multi', + table: 'product_traffic', + } + }); + + var table = $("#table"); + + // 初始化表格 + table.bootstrapTable({ + url: $.fn.bootstrapTable.defaults.extend.index_url, + pk: 'id', + sortName: 'id', + columns: [ + [ + {checkbox: true}, + {field: 'id', title: __('Id')}, + {field: 'name', title: __('Name')}, + {field: 'lightwords', title: __('Lightwords')}, + {field: 'destination', title: __('Destination')}, + {field: 'homeimages', title: __('Homeimages'), formatter: Table.api.formatter.images}, + {field: 'cost_production', title: __('Cost_production')}, + {field: 'advancedata', title: __('Advancedata'), visible:false, searchList: {"advancedata 0":__('Advancedata 0'),"advancedata 1":__('Advancedata 1'),"advancedata 2":__('Advancedata 2'),"advancedata 3":__('Advancedata 3')}}, + {field: 'advancedata_text', title: __('Advancedata'), operate:false}, + {field: 'explanation', title: __('Explanation')}, + {field: 'travel_template_information', title: __('Travel_template_information')}, + {field: 'out_data', title: __('Out_data'), visible:false, searchList: {"out_data 0":__('Out_data 0'),"out_data 1":__('Out_data 1'),"out_data 2":__('Out_data 2'),"out_data 3":__('Out_data 3'),"out_data 4":__('Out_data 4'),"out_data 5":__('Out_data 5'),"out_data 6":__('Out_data 6'),"out_data 7":__('Out_data 7'),"out_data 8":__('Out_data 8'),"out_data 9":__('Out_data 9'),"out_data 10":__('Out_data 10'),"out_data 11":__('Out_data 11'),"out_data 12":__('Out_data 12'),"out_data 13":__('Out_data 13'),"out_data 14":__('Out_data 14'),"out_data 15":__('Out_data 15')}}, + {field: 'out_data_text', title: __('Out_data'), operate:false}, + {field: 'supplier', title: __('Supplier')}, + {field: 'supplier_price', title: __('Supplier_price')}, + {field: 'supplier_start', title: __('Supplier_start'), operate:'RANGE', addclass:'datetimerange'}, + {field: 'supplier_end', title: __('Supplier_end'), operate:'RANGE', addclass:'datetimerange'}, + {field: 'in_stock', title: __('In_stock')}, + {field: 'list', title: __('List'), visible:false, searchList: {"list 0":__('List 0'),"list 1":__('List 1'),"list 2":__('List 2'),"list 3":__('List 3'),"list 4":__('List 4')}}, + {field: 'list_text', title: __('List'), operate:false}, + {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate} + ] + ] + }); + + // 为表格绑定事件 + Table.api.bindevent(table); + }, + add: function () { + Controller.api.bindevent(); + }, + edit: function () { + Controller.api.bindevent(); + }, + api: { + bindevent: function () { + Form.api.bindevent($("form[role=form]")); + } + } + }; + return Controller; +}); \ No newline at end of file diff --git a/runtime/cache/4e/819c837d54a6ed09abc77a8560a66f.php b/runtime/cache/4e/819c837d54a6ed09abc77a8560a66f.php new file mode 100644 index 00000000..58110812 --- /dev/null +++ b/runtime/cache/4e/819c837d54a6ed09abc77a8560a66f.php @@ -0,0 +1,4 @@ + +a:0:{} \ No newline at end of file diff --git a/runtime/cache/cb/78ef4a9130f39208ff10858ddd8377.php b/runtime/cache/cb/78ef4a9130f39208ff10858ddd8377.php new file mode 100644 index 00000000..f5cc3a29 --- /dev/null +++ b/runtime/cache/cb/78ef4a9130f39208ff10858ddd8377.php @@ -0,0 +1,4 @@ + +a:35:{i:0;a:13:{s:2:"id";i:1;s:4:"type";s:4:"file";s:3:"pid";i:0;s:4:"name";s:9:"dashboard";s:5:"title";s:9:"Dashboard";s:4:"icon";s:15:"fa fa-dashboard";s:9:"condition";s:0:"";s:6:"remark";s:14:"Dashboard tips";s:6:"ismenu";i:1;s:10:"createtime";i:1497429920;s:10:"updatetime";i:1497429920;s:5:"weigh";i:143;s:6:"status";s:6:"normal";}i:1;a:13:{s:2:"id";i:2;s:4:"type";s:4:"file";s:3:"pid";i:0;s:4:"name";s:7:"general";s:5:"title";s:7:"General";s:4:"icon";s:10:"fa fa-cogs";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:10:"createtime";i:1497429920;s:10:"updatetime";i:1497430169;s:5:"weigh";i:137;s:6:"status";s:6:"normal";}i:2;a:13:{s:2:"id";i:3;s:4:"type";s:4:"file";s:3:"pid";i:0;s:4:"name";s:8:"category";s:5:"title";s:8:"Category";s:4:"icon";s:10:"fa fa-list";s:9:"condition";s:0:"";s:6:"remark";s:13:"Category tips";s:6:"ismenu";i:1;s:10:"createtime";i:1497429920;s:10:"updatetime";i:1497429920;s:5:"weigh";i:119;s:6:"status";s:6:"normal";}i:3;a:13:{s:2:"id";i:9;s:4:"type";s:4:"file";s:3:"pid";i:5;s:4:"name";s:10:"auth/admin";s:5:"title";s:5:"Admin";s:4:"icon";s:10:"fa fa-user";s:9:"condition";s:0:"";s:6:"remark";s:10:"Admin tips";s:6:"ismenu";i:1;s:10:"createtime";i:1497429920;s:10:"updatetime";i:1497430320;s:5:"weigh";i:118;s:6:"status";s:6:"normal";}i:4;a:13:{s:2:"id";i:10;s:4:"type";s:4:"file";s:3:"pid";i:5;s:4:"name";s:13:"auth/adminlog";s:5:"title";s:9:"Admin log";s:4:"icon";s:14:"fa fa-list-alt";s:9:"condition";s:0:"";s:6:"remark";s:14:"Admin log tips";s:6:"ismenu";i:1;s:10:"createtime";i:1497429920;s:10:"updatetime";i:1497430307;s:5:"weigh";i:113;s:6:"status";s:6:"normal";}i:5;a:13:{s:2:"id";i:11;s:4:"type";s:4:"file";s:3:"pid";i:5;s:4:"name";s:10:"auth/group";s:5:"title";s:5:"Group";s:4:"icon";s:11:"fa fa-group";s:9:"condition";s:0:"";s:6:"remark";s:10:"Group tips";s:6:"ismenu";i:1;s:10:"createtime";i:1497429920;s:10:"updatetime";i:1497429920;s:5:"weigh";i:109;s:6:"status";s:6:"normal";}i:6;a:13:{s:2:"id";i:12;s:4:"type";s:4:"file";s:3:"pid";i:5;s:4:"name";s:9:"auth/rule";s:5:"title";s:4:"Rule";s:4:"icon";s:10:"fa fa-bars";s:9:"condition";s:0:"";s:6:"remark";s:9:"Rule tips";s:6:"ismenu";i:1;s:10:"createtime";i:1497429920;s:10:"updatetime";i:1497430581;s:5:"weigh";i:104;s:6:"status";s:6:"normal";}i:7;a:13:{s:2:"id";i:5;s:4:"type";s:4:"file";s:3:"pid";i:0;s:4:"name";s:4:"auth";s:5:"title";s:4:"Auth";s:4:"icon";s:11:"fa fa-group";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:10:"createtime";i:1497429920;s:10:"updatetime";i:1497430092;s:5:"weigh";i:99;s:6:"status";s:6:"normal";}i:8;a:13:{s:2:"id";i:6;s:4:"type";s:4:"file";s:3:"pid";i:2;s:4:"name";s:14:"general/config";s:5:"title";s:6:"Config";s:4:"icon";s:9:"fa fa-cog";s:9:"condition";s:0:"";s:6:"remark";s:11:"Config tips";s:6:"ismenu";i:1;s:10:"createtime";i:1497429920;s:10:"updatetime";i:1497430683;s:5:"weigh";i:60;s:6:"status";s:6:"normal";}i:9;a:13:{s:2:"id";i:7;s:4:"type";s:4:"file";s:3:"pid";i:2;s:4:"name";s:18:"general/attachment";s:5:"title";s:10:"Attachment";s:4:"icon";s:18:"fa fa-file-image-o";s:9:"condition";s:0:"";s:6:"remark";s:15:"Attachment tips";s:6:"ismenu";i:1;s:10:"createtime";i:1497429920;s:10:"updatetime";i:1497430699;s:5:"weigh";i:53;s:6:"status";s:6:"normal";}i:10;a:13:{s:2:"id";i:8;s:4:"type";s:4:"file";s:3:"pid";i:2;s:4:"name";s:15:"general/profile";s:5:"title";s:7:"Profile";s:4:"icon";s:10:"fa fa-user";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:10:"createtime";i:1497429920;s:10:"updatetime";i:1497429920;s:5:"weigh";i:34;s:6:"status";s:6:"normal";}i:11;a:13:{s:2:"id";i:4;s:4:"type";s:4:"file";s:3:"pid";i:0;s:4:"name";s:5:"addon";s:5:"title";s:5:"Addon";s:4:"icon";s:12:"fa fa-rocket";s:9:"condition";s:0:"";s:6:"remark";s:10:"Addon tips";s:6:"ismenu";i:1;s:10:"createtime";i:1502035509;s:10:"updatetime";i:1502035509;s:5:"weigh";i:0;s:6:"status";s:6:"normal";}i:12;a:13:{s:2:"id";i:66;s:4:"type";s:4:"file";s:3:"pid";i:0;s:4:"name";s:4:"user";s:5:"title";s:4:"User";s:4:"icon";s:10:"fa fa-list";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:10:"createtime";i:1516374729;s:10:"updatetime";i:1516374729;s:5:"weigh";i:0;s:6:"status";s:6:"normal";}i:13;a:13:{s:2:"id";i:67;s:4:"type";s:4:"file";s:3:"pid";i:66;s:4:"name";s:9:"user/user";s:5:"title";s:4:"User";s:4:"icon";s:10:"fa fa-user";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:10:"createtime";i:1516374729;s:10:"updatetime";i:1516374729;s:5:"weigh";i:0;s:6:"status";s:6:"normal";}i:14;a:13:{s:2:"id";i:73;s:4:"type";s:4:"file";s:3:"pid";i:66;s:4:"name";s:10:"user/group";s:5:"title";s:10:"User group";s:4:"icon";s:11:"fa fa-users";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:10:"createtime";i:1516374729;s:10:"updatetime";i:1516374729;s:5:"weigh";i:0;s:6:"status";s:6:"normal";}i:15;a:13:{s:2:"id";i:79;s:4:"type";s:4:"file";s:3:"pid";i:66;s:4:"name";s:9:"user/rule";s:5:"title";s:9:"User rule";s:4:"icon";s:14:"fa fa-circle-o";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:10:"createtime";i:1516374729;s:10:"updatetime";i:1516374729;s:5:"weigh";i:0;s:6:"status";s:6:"normal";}i:16;a:13:{s:2:"id";i:85;s:4:"type";s:4:"file";s:3:"pid";i:0;s:4:"name";s:7:"product";s:5:"title";s:12:"产品管理";s:4:"icon";s:10:"fa fa-list";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:10:"createtime";i:1517293329;s:10:"updatetime";i:1517293351;s:5:"weigh";i:0;s:6:"status";s:6:"normal";}i:17;a:13:{s:2:"id";i:86;s:4:"type";s:4:"file";s:3:"pid";i:85;s:4:"name";s:22:"product/producttickets";s:5:"title";s:12:"景点门票";s:4:"icon";s:14:"fa fa-circle-o";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:10:"createtime";i:1517293329;s:10:"updatetime";i:1517293329;s:5:"weigh";i:0;s:6:"status";s:6:"normal";}i:18;a:13:{s:2:"id";i:95;s:4:"type";s:4:"file";s:3:"pid";i:85;s:4:"name";s:23:"product/productmanydays";s:5:"title";s:9:"多日游";s:4:"icon";s:14:"fa fa-circle-o";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:10:"createtime";i:1517293385;s:10:"updatetime";i:1517293385;s:5:"weigh";i:0;s:6:"status";s:6:"normal";}i:19;a:13:{s:2:"id";i:104;s:4:"type";s:4:"file";s:3:"pid";i:85;s:4:"name";s:18:"product/productday";s:5:"title";s:9:"一日游";s:4:"icon";s:14:"fa fa-circle-o";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:10:"createtime";i:1517293409;s:10:"updatetime";i:1517293409;s:5:"weigh";i:0;s:6:"status";s:6:"normal";}i:20;a:13:{s:2:"id";i:113;s:4:"type";s:4:"file";s:3:"pid";i:85;s:4:"name";s:20:"product/productlocal";s:5:"title";s:12:"当地定制";s:4:"icon";s:14:"fa fa-circle-o";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:10:"createtime";i:1517293417;s:10:"updatetime";i:1517293417;s:5:"weigh";i:0;s:6:"status";s:6:"normal";}i:21;a:13:{s:2:"id";i:122;s:4:"type";s:4:"file";s:3:"pid";i:85;s:4:"name";s:21:"product/producthotels";s:5:"title";s:12:"酒店套餐";s:4:"icon";s:14:"fa fa-circle-o";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:10:"createtime";i:1517293426;s:10:"updatetime";i:1517293426;s:5:"weigh";i:0;s:6:"status";s:6:"normal";}i:22;a:13:{s:2:"id";i:131;s:4:"type";s:4:"file";s:3:"pid";i:85;s:4:"name";s:19:"product/productshow";s:5:"title";s:12:"演出展览";s:4:"icon";s:14:"fa fa-circle-o";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:10:"createtime";i:1517293432;s:10:"updatetime";i:1517293432;s:5:"weigh";i:0;s:6:"status";s:6:"normal";}i:23;a:13:{s:2:"id";i:140;s:4:"type";s:4:"file";s:3:"pid";i:85;s:4:"name";s:25:"product/productexperience";s:5:"title";s:12:"当地体验";s:4:"icon";s:14:"fa fa-circle-o";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:10:"createtime";i:1517293439;s:10:"updatetime";i:1517293439;s:5:"weigh";i:0;s:6:"status";s:6:"normal";}i:24;a:13:{s:2:"id";i:149;s:4:"type";s:4:"file";s:3:"pid";i:85;s:4:"name";s:19:"product/productfood";s:5:"title";s:6:"美食";s:4:"icon";s:14:"fa fa-circle-o";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:10:"createtime";i:1517293445;s:10:"updatetime";i:1517293445;s:5:"weigh";i:0;s:6:"status";s:6:"normal";}i:25;a:13:{s:2:"id";i:158;s:4:"type";s:4:"file";s:3:"pid";i:85;s:4:"name";s:22:"product/productairport";s:5:"title";s:9:"接送机";s:4:"icon";s:14:"fa fa-circle-o";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:10:"createtime";i:1517293453;s:10:"updatetime";i:1517293453;s:5:"weigh";i:0;s:6:"status";s:6:"normal";}i:26;a:13:{s:2:"id";i:167;s:4:"type";s:4:"file";s:3:"pid";i:85;s:4:"name";s:18:"product/productcar";s:5:"title";s:13:"包车/拼车";s:4:"icon";s:14:"fa fa-circle-o";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:10:"createtime";i:1517293460;s:10:"updatetime";i:1517293460;s:5:"weigh";i:0;s:6:"status";s:6:"normal";}i:27;a:13:{s:2:"id";i:176;s:4:"type";s:4:"file";s:3:"pid";i:85;s:4:"name";s:22:"product/producttraffic";s:5:"title";s:13:"交通卡/劵";s:4:"icon";s:14:"fa fa-circle-o";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:10:"createtime";i:1517293466;s:10:"updatetime";i:1517293466;s:5:"weigh";i:0;s:6:"status";s:6:"normal";}i:28;a:13:{s:2:"id";i:185;s:4:"type";s:4:"file";s:3:"pid";i:85;s:4:"name";s:24:"product/productcarrental";s:5:"title";s:6:"租车";s:4:"icon";s:14:"fa fa-circle-o";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:10:"createtime";i:1517293474;s:10:"updatetime";i:1517293474;s:5:"weigh";i:0;s:6:"status";s:6:"normal";}i:29;a:13:{s:2:"id";i:194;s:4:"type";s:4:"file";s:3:"pid";i:85;s:4:"name";s:17:"product/newtravel";s:5:"title";s:21:"NEW出行信息模板";s:4:"icon";s:14:"fa fa-circle-o";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:10:"createtime";i:1517293495;s:10:"updatetime";i:1517293495;s:5:"weigh";i:0;s:6:"status";s:6:"normal";}i:30;a:13:{s:2:"id";i:203;s:4:"type";s:4:"file";s:3:"pid";i:85;s:4:"name";s:22:"product/productaddress";s:5:"title";s:18:"取还地址管理";s:4:"icon";s:14:"fa fa-circle-o";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:10:"createtime";i:1517293523;s:10:"updatetime";i:1517293523;s:5:"weigh";i:0;s:6:"status";s:6:"normal";}i:31;a:13:{s:2:"id";i:212;s:4:"type";s:4:"file";s:3:"pid";i:0;s:4:"name";s:7:"company";s:5:"title";s:12:"店铺管理";s:4:"icon";s:10:"fa fa-list";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:10:"createtime";i:1517293531;s:10:"updatetime";i:1517293575;s:5:"weigh";i:0;s:6:"status";s:6:"normal";}i:32;a:13:{s:2:"id";i:213;s:4:"type";s:4:"file";s:3:"pid";i:212;s:4:"name";s:18:"company/companyset";s:5:"title";s:12:"店铺设置";s:4:"icon";s:14:"fa fa-circle-o";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:10:"createtime";i:1517293531;s:10:"updatetime";i:1517293531;s:5:"weigh";i:0;s:6:"status";s:6:"normal";}i:33;a:13:{s:2:"id";i:222;s:4:"type";s:4:"file";s:3:"pid";i:0;s:4:"name";s:5:"order";s:5:"title";s:12:"订单管理";s:4:"icon";s:10:"fa fa-list";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:10:"createtime";i:1517293537;s:10:"updatetime";i:1517293586;s:5:"weigh";i:0;s:6:"status";s:6:"normal";}i:34;a:13:{s:2:"id";i:223;s:4:"type";s:4:"file";s:3:"pid";i:222;s:4:"name";s:11:"order/order";s:5:"title";s:15:"订单主管理";s:4:"icon";s:14:"fa fa-circle-o";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:10:"createtime";i:1517293537;s:10:"updatetime";i:1517293537;s:5:"weigh";i:0;s:6:"status";s:6:"normal";}} \ No newline at end of file diff --git a/runtime/temp/091a0a651a12c8199d7540311a02d933.php b/runtime/temp/091a0a651a12c8199d7540311a02d933.php new file mode 100644 index 00000000..244d61b1 --- /dev/null +++ b/runtime/temp/091a0a651a12c8199d7540311a02d933.php @@ -0,0 +1,84 @@ + + + + + +<?php echo (isset($title) && ($title !== '')?$title:''); ?> + + + + + + + + + + + + + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +

                                                                                              + + +

                                                                                              +
                                                                                              + + +
                                                                                              + + +
                                                                                              + + +
                                                                                              +
                                                                                              + + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + + \ No newline at end of file diff --git a/runtime/temp/1feb9383f08355fcdeb7ba4b3199f9b6.php b/runtime/temp/1feb9383f08355fcdeb7ba4b3199f9b6.php new file mode 100644 index 00000000..62f57325 --- /dev/null +++ b/runtime/temp/1feb9383f08355fcdeb7ba4b3199f9b6.php @@ -0,0 +1,125 @@ + + + + + +<?php echo (isset($title) && ($title !== '')?$title:''); ?> + + + + + + + + + + + + + + +
                                                                                              + +
                                                                                              + + + \ No newline at end of file diff --git a/runtime/temp/2e0a3e29fe8d91949c529ddeeb8e7b78.php b/runtime/temp/2e0a3e29fe8d91949c529ddeeb8e7b78.php new file mode 100644 index 00000000..556c1e01 --- /dev/null +++ b/runtime/temp/2e0a3e29fe8d91949c529ddeeb8e7b78.php @@ -0,0 +1,184 @@ + + + + + +<?php echo (isset($title) && ($title !== '')?$title:''); ?> + + + + + + + + + + + + + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +

                                                                                              + + +

                                                                                              +
                                                                                              + + +
                                                                                              + + +
                                                                                              + + +
                                                                                              +
                                                                                              + +
                                                                                              + +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + +
                                                                                              + + +
                                                                                              + +
                                                                                              +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + +
                                                                                                + + +
                                                                                                + +
                                                                                                +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  + +
                                                                                                  + $vo): ?> + + +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  + +
                                                                                                  + $vo): ?> + + +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  + +
                                                                                                  + $vo): ?> + + +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  + +
                                                                                                  + $vo): ?> + + +
                                                                                                  + +
                                                                                                  +
                                                                                                  + +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + + \ No newline at end of file diff --git a/runtime/temp/2ef507f6e4a42aa5a81c8ecec008db99.php b/runtime/temp/2ef507f6e4a42aa5a81c8ecec008db99.php new file mode 100644 index 00000000..e3ef77fb --- /dev/null +++ b/runtime/temp/2ef507f6e4a42aa5a81c8ecec008db99.php @@ -0,0 +1,61 @@ + + + + + + 跳转提示 + + + + + +
                                                                                                  +
                                                                                                  + +
                                                                                                  +

                                                                                                  +

                                                                                                  + 页面将在 秒后自动跳转 +

                                                                                                  +

                                                                                                  + 返回上一步 + 立即跳转 +

                                                                                                  +
                                                                                                  + + + + diff --git a/runtime/temp/36813dae434ccff1bbc529d16a2b7a23.php b/runtime/temp/36813dae434ccff1bbc529d16a2b7a23.php new file mode 100644 index 00000000..087e81b8 --- /dev/null +++ b/runtime/temp/36813dae434ccff1bbc529d16a2b7a23.php @@ -0,0 +1,388 @@ + + + + + +<?php echo (isset($title) && ($title !== '')?$title:''); ?> + + + + + + + + + + + + +
                                                                                                  + + + + + + +
                                                                                                  + +
                                                                                                  + +
                                                                                                  + + Copyright © 2017-2018 >. All rights + reserved. +
                                                                                                  + + +
                                                                                                  + + + + +
                                                                                                  + + + + + \ No newline at end of file diff --git a/runtime/temp/49922a973702eb6af9a21a76ac7c0293.php b/runtime/temp/49922a973702eb6af9a21a76ac7c0293.php new file mode 100644 index 00000000..8a68dcfb --- /dev/null +++ b/runtime/temp/49922a973702eb6af9a21a76ac7c0293.php @@ -0,0 +1,169 @@ + + + + + +<?php echo (isset($title) && ($title !== '')?$title:''); ?> + + + + + + + + + + + + + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +

                                                                                                  + + +

                                                                                                  +
                                                                                                  + + +
                                                                                                  + + +
                                                                                                  + + +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  + __('Yes'), '0'=>__('No')], $row['ismenu']); ?> +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  + 'form-control', 'required'=>'']); ?> +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  + __('Normal'), 'hidden'=>__('Hidden')], $row['status']); ?> +
                                                                                                  +
                                                                                                  + +
                                                                                                  + + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + + \ No newline at end of file diff --git a/runtime/temp/520f9941a7a1ee51bce0f14496001a47.php b/runtime/temp/520f9941a7a1ee51bce0f14496001a47.php new file mode 100644 index 00000000..c6c82cc3 --- /dev/null +++ b/runtime/temp/520f9941a7a1ee51bce0f14496001a47.php @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + +

                                                                                                  趣侣行

                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + +
                                                                                                  +
                                                                                                  +

                                                                                                  © 2017 FastAdmin. All Rights Reserved.

                                                                                                  +
                                                                                                  +
                                                                                                  + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/runtime/temp/5f4f1e60c2b02beeeff375215604403b.php b/runtime/temp/5f4f1e60c2b02beeeff375215604403b.php new file mode 100644 index 00000000..0a9180c0 --- /dev/null +++ b/runtime/temp/5f4f1e60c2b02beeeff375215604403b.php @@ -0,0 +1,95 @@ + + + + + +<?php echo (isset($title) && ($title !== '')?$title:''); ?> + + + + + + + + + + + + + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +

                                                                                                  + + +

                                                                                                  +
                                                                                                  + + +
                                                                                                  + + +
                                                                                                  + + +
                                                                                                  +
                                                                                                  + + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + + + + + + +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + + \ No newline at end of file diff --git a/runtime/temp/a7fb933f17099783b80e1f3ffc8f3c65.php b/runtime/temp/a7fb933f17099783b80e1f3ffc8f3c65.php new file mode 100644 index 00000000..98ee3041 --- /dev/null +++ b/runtime/temp/a7fb933f17099783b80e1f3ffc8f3c65.php @@ -0,0 +1,95 @@ + + + + + +<?php echo (isset($title) && ($title !== '')?$title:''); ?> + + + + + + + + + + + + + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +

                                                                                                  + + +

                                                                                                  +
                                                                                                  + + +
                                                                                                  + + +
                                                                                                  + + +
                                                                                                  +
                                                                                                  + + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + + + + + + +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + + \ No newline at end of file diff --git a/runtime/temp/a994b6a0ec671b3a54153ca2ff92e1a2.php b/runtime/temp/a994b6a0ec671b3a54153ca2ff92e1a2.php new file mode 100644 index 00000000..c2d3af2c --- /dev/null +++ b/runtime/temp/a994b6a0ec671b3a54153ca2ff92e1a2.php @@ -0,0 +1,513 @@ + + + + + +<?php echo (isset($title) && ($title !== '')?$title:''); ?> + + + + + + + + + + + + + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +

                                                                                                  + + +

                                                                                                  +
                                                                                                  + + +
                                                                                                  + + +
                                                                                                  + + +
                                                                                                  + +
                                                                                                  +
                                                                                                  + + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  + + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  + + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  + + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  + + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  +

                                                                                                  1234

                                                                                                  +
                                                                                                  1234
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  +

                                                                                                  1043

                                                                                                  +
                                                                                                  2592
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  +

                                                                                                  1234

                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +

                                                                                                  6754

                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  +

                                                                                                  5302

                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +

                                                                                                  8205

                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +

                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +

                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +

                                                                                                  +
                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                  server('SERVER_SOFTWARE'); ?>
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + + \ No newline at end of file diff --git a/runtime/temp/bbf28c295054d83b34702d2261e919ba.php b/runtime/temp/bbf28c295054d83b34702d2261e919ba.php new file mode 100644 index 00000000..b0c15632 --- /dev/null +++ b/runtime/temp/bbf28c295054d83b34702d2261e919ba.php @@ -0,0 +1,95 @@ + + + + + +<?php echo (isset($title) && ($title !== '')?$title:''); ?> + + + + + + + + + + + + + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +

                                                                                                  + + +

                                                                                                  +
                                                                                                  + + +
                                                                                                  + + +
                                                                                                  + + +
                                                                                                  +
                                                                                                  + + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + + + + + + +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + + \ No newline at end of file