12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- return [
- [
- 'name' => 'username',
- 'title' => '短信宝账号',
- 'type' => 'string',
- 'content' => [],
- 'value' => '123456xiao',
- 'rule' => 'required',
- 'msg' => '',
- 'tip' => '',
- 'ok' => '',
- 'extend' => '',
- ],
- [
- 'name' => 'password',
- 'title' => '短信宝密码',
- 'type' => 'string',
- 'content' => [],
- 'value' => 'mh123123',
- 'rule' => 'required',
- 'msg' => '',
- 'tip' => '',
- 'ok' => '',
- 'extend' => '',
- ],
- [
- 'name' => 'sign',
- 'title' => '短信签名',
- 'type' => 'string',
- 'content' => [],
- 'value' => '【盲盒商城】',
- 'rule' => 'required',
- 'msg' => '',
- 'tip' => '例如【短信宝】',
- 'ok' => '',
- 'extend' => '',
- ],
- ];
|