store_import.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php defined('InShopNC') or exit('Access Invalid!');?>
  2. <div class="page">
  3. <div class="fixed-bar">
  4. <div class="item-title">
  5. <h3>从CSV导入</h3>
  6. </div>
  7. </div>
  8. <div class="fixed-empty"></div>
  9. <table class="tb-type1 noborder">
  10. <tbody>
  11. <tr>
  12. <th>下载csv模板:</th>
  13. <td>
  14. <ul>
  15. <li><a href="<?php echo RESOURCE_SITE_URL ?>/store_import.csv">批量导入商家模板下载</a></li>
  16. </ul>
  17. </td>
  18. </tr>
  19. </tbody>
  20. </table>
  21. <br/>
  22. <table class="table tb-type2" id="prompt">
  23. <tbody>
  24. <tr class="space odd">
  25. <th colspan="12"><div class="title">
  26. <h5><?php echo $lang['nc_prompts'];?></h5>
  27. <span class="arrow"></span></div>
  28. </th>
  29. </tr>
  30. <tr>
  31. <td>提醒:请仔细阅读以下各注意事项:<ul>
  32. <li>登录密码长度不能小于6</li>
  33. <li>会员名称,用于登录会员中心</li>
  34. <li>店主卖家账号,用于登录商家中心,可与店主账号不同</li>
  35. <li>会员名称, 店主卖家用户名可以相同,但是各个商家的用户名称和店主卖家用户不能重复,否则会导致导入失败</li>
  36. </ul></td>
  37. </tr>
  38. </tbody>
  39. </table>
  40. <table class="table tb-type2">
  41. <thead>
  42. <tr class="thead">
  43. <th>
  44. <form method="post" action="index.php?act=store&op=store_import_csv" enctype="multipart/form-data" id="stores_form">
  45. <label for="文件选择">请选择要导入的csv文件:</label><input name="csv_stores" type="file" />
  46. <input type="submit" value="导入csv" name="import" />
  47. </form>
  48. </th>
  49. </tr>
  50. </thead>
  51. </table>
  52. </div>