vr-shopxo-source/application/admin/form/Appminialipaylist.php

87 lines
2.9 KiB
PHP
Raw Normal View History

2020-06-20 14:04:28 +00:00
<?php
// +----------------------------------------------------------------------
// | ShopXO 国内领先企业级B2C免费开源电商系统
// +----------------------------------------------------------------------
// | Copyright (c) 2011~2019 http://shopxo.net All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: Devil
// +----------------------------------------------------------------------
namespace app\admin\form;
/**
* 支付宝小程序管理动态表格
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
2020-06-22 15:21:23 +00:00
* @date 2020-06-22
2020-06-20 14:04:28 +00:00
* @desc description
*/
class Appminialipaylist
{
// 基础条件
public $condition_base = [];
/**
* 入口
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
2020-06-22 15:21:23 +00:00
* @date 2020-06-22
2020-06-20 14:04:28 +00:00
* @desc description
* @param [array] $params [输入参数]
*/
public function Run($params = [])
{
return [
// 基础配置
'base' => [
2020-06-22 15:21:23 +00:00
'key_field' => 'name',
'is_delete' => 1,
'delete_url' => MyUrl('admin/appminialipaylist/delete'),
'delete_key' => 'ids',
2020-06-20 14:04:28 +00:00
],
// 表单配置
'form' => [
[
'view_type' => 'checkbox',
'is_checked' => 0,
'checked_text' => '反选',
'not_checked_text' => '全选',
'align' => 'center',
'width' => 80,
],
[
2020-06-22 15:21:23 +00:00
'label' => '包名',
2020-06-20 14:04:28 +00:00
'view_type' => 'field',
'view_key' => 'name',
],
[
2020-06-22 15:21:23 +00:00
'label' => '大小',
2020-06-20 14:04:28 +00:00
'view_type' => 'field',
2020-06-22 15:21:23 +00:00
'view_key' => 'size',
2020-06-20 14:04:28 +00:00
],
[
2020-06-22 15:21:23 +00:00
'label' => '下载地址',
2020-06-20 14:04:28 +00:00
'view_type' => 'field',
2020-06-22 15:21:23 +00:00
'view_key' => 'url',
'grid_size' => 'auto',
2020-06-20 14:04:28 +00:00
],
[
'label' => '创建时间',
'view_type' => 'field',
2020-06-22 15:21:23 +00:00
'view_key' => 'time',
2020-06-20 14:04:28 +00:00
],
[
'label' => '操作',
'view_type' => 'operate',
2020-06-22 15:21:23 +00:00
'view_key' => 'appminialipaylist/module/operate',
2020-06-20 14:04:28 +00:00
'align' => 'center',
'fixed' => 'right',
],
],
];
}
}
?>