mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-05 22:55:32 +08:00
28 lines
601 B
PHP
28 lines
601 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
|
||
class desktop_finder_builder_import extends desktop_finder_builder_prototype
|
||
{
|
||
|
||
/**
|
||
* main
|
||
* @return mixed 返回值
|
||
*/
|
||
public function main()
|
||
{
|
||
$render = app::get('desktop')->render();
|
||
|
||
if (!$render->pagedata['thisUrl']) {
|
||
$render->pagedata['thisUrl'] = $this->url;
|
||
}
|
||
|
||
$render->pagedata['use_import_template'] = $this->use_import_template;
|
||
|
||
echo $render->fetch('common/import.html');
|
||
}
|
||
}
|