1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- /*
- |--------------------------------------------------------------------------
- | home
- |--------------------------------------------------------------------------
- */
- $view
- # 定义名称
- ->fetch('.form1@action', 'store/admin/info.getConfig#update')
- ->fetch('#update_where_id@value', '<{Dever::input("id")}>')
- ->render('store/admin/info.getData', array
- (
- '#update_name_value@value' => '$v.name',
- '#update_truename_value@value' => '$v.truename',
- '#update_mobile_value@value' => '$v.mobile',
- '#update_address_value@value' => '$v.address',
- '#update_license_number_value@value' => '$v.license_number',
- '#dever-linkage-update_area' => '$v.area',
- '#show_update_license_license@style' => array('<{$v.license}>', 'display:none'),
- '#show_update_license_license@src' => '$v.license',
- '#update_license_license@value' => '$v.license',
- '#show_update_idcard_back_idcard_back@style' => array('<{$v.idcard_back}>', 'display:none'),
- '#show_update_idcard_back_idcard_back@src' => '$v.idcard_back',
- '#update_idcard_back_idcard_back@value' => '$v.idcard_back',
- '#show_update_idcard_front_idcard_front@style' => array('<{$v.idcard_front}>', 'display:none'),
- '#show_update_idcard_front_idcard_front@src' => '$v.idcard_front',
- '#update_idcard_front_idcard_front@value' => '$v.idcard_front',
- '#show_update_kh_license_kh_license@style' => array('<{$v.kh_license}>', 'display:none'),
- '#show_update_kh_license_kh_license@src' => '$v.kh_license',
- '#update_kh_license_kh_license@value' => '$v.kh_license',
- '#restart' => '$v.status',
- ))
- # display
- ->display();
|