|
- <?php
- /**
- *
- * ============================================================================
- * * 版权所有 蜘蛛出行 * *
- * 网站地址: http://www.zhizhuchuxing.com
- * ----------------------------------------------------------------------------
- * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和
- * 使用;不允许对程序代码以任何形式任何目的的再发布。
- * ============================================================================
- * Author By: 傅冬荣
- * PhpStorm add_account.php
- * Create By 2017/03/01 15:21 $
- */
-
- use backend\modules\zzcs\assets\ZzcsAsset;
- use yii\helpers\Html;
-
- ZzcsAsset::addCss($this, '/account/css/add_account.css');
- ZzcsAsset::addCss($this, '/global/css/combo.select.css');
- ZzcsAsset::addScript($this, '/global/js/jquery.combo.select.js');
- ZzcsAsset::addScript($this, '/account/js/account_action.js');
- ZzcsAsset::addScript($this, '/plug/layer/layer.js');
- ?>
- <?php
- //echo '<pre>';
- //print_r($user_info);
- //echo '</pre>';
- //?>
- <div class="title_add"><?= Html::encode($this->title) ?></div>
- <div class="line_top"></div>
- <div class="content_header">基本信息</div>
- <table class="table_info">
-
- <tbody>
- <tr class="tr1">
- <td class="td1">
- <span class="necessary">*</span>
- 用户名:
- </td>
- <td class="td2">
-
- <input type="hidden" id="user_id" value="<?php echo $user_info['rows'][0]['id'];?>" />
- <input type="hidden" id="user_name" value="<?php echo $user_info['rows'][0]['user_name'];?>" />
- <?php echo $user_info['rows'][0]['user_name'];?>
-
- </td>
- </tr>
- <tr class="tr1">
- <td class="td1">
- <span class="necessary">*</span>
- 密码:
- </td>
- <td class="td2">
-
-
- <input type="text" id="pass_word"
- ?><span> 若此处为空则不修改密码</span>
-
- </td>
- </tr>
- <tr class="tr2">
- <td class="td1">
- <span class="necessary">*</span>
- CS运营主体:
- </td>
- <td class="td2">
- <input type="hidden" id="corporation" value="<?php echo $user_info['rows'][0]['main_corp_id'];?>" />
- <?php echo $user_info['rows'][0]['corporation_name'];?>
- </td>
- </tr>
- <tr class="tr2">
- <td class="td1">
- <span class="necessary">*</span>
- FO运营主体:
- </td>
- <td class="td2">
- <input type="hidden" id="corporation2" value="<?php echo $user_info['rows'][0]['main_corp_id2'];?>" />
- <?php echo $user_info['rows'][0]['corporation_name2'];?>
- </td>
- </tr>
- <tr class="tr3">
- <td class="td1">
- <span class="necessary">*</span>
- 权限:
- </td>
- <td class="td2">
- <select id="user_role" class="select_line" style="width: 131px;" value="<?php echo $user_info['rows'][0]['user_role_id'];?>">
- <option></option>
- <?php foreach ($all_role["all_user_role"] as $key => $vel) {
- if( $main_corp_id > 1 && $vel["user_role_id"] <= 1 ) {
- continue;
- }
- ?>
- <option value="<?php echo $vel['user_role_id']; ?>" <?php if($user_info['rows'][0]['user_role_id'] == $vel['user_role_id']){echo 'selected';}?>><?php echo $vel['user_role']; ?></option>
- <?php } ?>
- </select>
- </td>
- </tr>
- <tr class="tr4">
- <td class="td1">
- <span class="necessary">*</span>
- 姓名:
- </td>
- <td class="td2">
- <input type="text" id="true_name" value="<?php echo $user_info['rows'][0]['true_name'];?>"
- ?>
- </td>
- </tr>
- <tr class="tr5">
- <td class="td1">
- <span class="necessary">*</span>
- 电话:
- </td>
- <td class="td2">
- <input type="text" onkeyup="this.value=this.value.replace(/\D/g,'')" onafterpaste="this.value=this.value.replace(/\D/g,'')" id="phone_no" style="width: 148px" value="<?php echo $user_info['rows'][0]['phone_no'];?>"
- ?>
- </td>
- </tr>
- <tr class="tr5">
- <td class="td1">
- <span class="necessary">*</span>
- 运营负责人:
- </td>
- <td class="td2">
- <label><input name="is_run_duty" type="radio" value="0" style="width:30px" <?php if($user_info['rows'][0]['is_run_duty'] == '0'){ echo 'checked="checked"';}?>/>否 </label>
- <label><input name="is_run_duty" type="radio" value="1" style="width:30px" <?php if($user_info['rows'][0]['is_run_duty'] == '1'){ echo 'checked="checked"';}?>/>是 </label>
-
- </td>
- </tr>
- <tr class="tr5">
- <td class="td1">
- <span class="necessary">*</span>
- 状态:
- </td>
- <td class="td2">
- <label><input name="status" type="radio" value="0" style="width:30px" <?php if($user_info['rows'][0]['cancel_flag'] == '0'){ echo 'checked="checked"';}?>/>有效 </label>
- <label><input name="status" type="radio" value="1" style="width:30px" <?php if($user_info['rows'][0]['cancel_flag'] == '1'){ echo 'checked="checked"';}?>/>无效 </label>
-
- </td>
- </tr>
-
- </tbody>
- </table>
-
- <div class="opera_btn">
- <!-- 添加/修改-->
-
- <span class="btn-primary" id="update_driver"
- onclick="updateAccount()"
- >确定
- </span>
-
-
- <span class="btn-primary" id="add_range" onclick="window.top.close();">
-
- 取消
-
- </span>
- </div>
-
|