123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>分配客户</title>
- <meta name="renderer" content="webkit">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <meta name="viewport"
- content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0">
- <link rel="stylesheet" href="../../layuiadmin/layui/css/layui.css" media="all">
- <link rel="stylesheet" href="../../layuiadmin/style/admin.css" media="all">
- <link rel="stylesheet" type="text/css" href="../../layuiadmin/style/formSelects-v4.css"/>
- <style>
- .input {
- border-radius: 2px;
- height: 38px;
- border-width: 1px;
- border-color: lightgray;
- border-style: solid;
- background-color: white;
- padding-left: 3px;
- }
- </style>
- </head>
- <body>
- <div class="layui-fluid">
- <div class="layui-row layui-col-space15">
- <div class="layui-card">
- <div class="layui-card-body" pad15>
- <form class="layui-form" action="" lay-filter="component-form-element">
- <div class="layui-row layui-col-space10 layui-form-item">
- <div>
- <label class="layui-form-label"><font color='red' size="4">*</font>选择人员:</label>
- <div class="layui-input-block">
- <select lay-verify="required" name="source" id="id_source">
- <option value="">请选择人员</option>
- <option value="1">小红</option>
- <option value="2">小芳</option>
- <option value="3">小绿</option>
- </select>
- </div>
- </div>
- <button id="id_save" class="layui-btn" lay-submit lay-filter="component-form-element"
- style="display: none">保存
- </button>
- </div>
- </form>
- </div>
- </div>
- </div>
- </div>
- <script src="../../layuiadmin/layui/layui.js"></script>
- <script>
- layui.link('../../../layuiadmin/style/autocomplete.css');
- layui.config({
- base: '../../../layuiadmin/' //静态资源所在路径
- , autocomplete: 'autocomplete'
- }).extend({
- index: 'lib/index',
- formSelects: 'formSelects-v4'
- }).use(['index', 'form', 'autocomplete', 'formSelects'], function () {
- var $ = layui.$
- , admin = layui.admin
- , formSelects = layui.formSelects
- , form = layui.form
- var id = layui.view.getParameterByName('id');
- console.log(id, "oppppp");
- // admin.req({
- // url: '/customer/dict/',
- // done: function (res) {
- // var data_source = res.data.source;
- // var source_node = $('#id_source');
- // for (var i in data_source) {
- // var pid = data_source[i].id;
- // var name = data_source[i].name;
- // source_node.append("<option value='" + pid + "'>" + name + "</option>");
- // }
- // var data_project = res.data.project;
- // let tempData = [];
- // if(data_project && data_project.length > 0){
- // tempData = data_project.map(item=>{
- // if(id && editdata['project']){
- // if(typeof editdata['project'] === 'number'){
- // editdata['project'] = [editdata['project']]
- // }
- // editdata['project'].forEach(item1=>{
- // if(item.id === item1){
- // item.selected = 'selected'
- // }else{
- // item.selected = ''
- // }
- // })
- // }
- // return {value: item.id, name: item.name, selected: item.selected }
- // });
- // }
- // formSelects.data('selectProject', 'local', {
- // arr: tempData
- // });
- // form.val("component-form-element", editdata);
- // }
- // });
- //form.render(null, 'component-form-element');
- form.on('submit(component-form-element)', function (data) {
- // if (id) {
- // var url = '/customer/report_customer/' + id + '/';
- // var type = 'put';
- // } else {
- // url = '/customer/report_customer/';
- // type = 'post'
- // }
- var submitData = data.field;
- // admin.req({
- // url: url
- // , data: data.field
- // , type: type
- // , done: function (res) {
- parent.layui.onSubmitChild();
- // }
- // });
- return false;
- });
- parent.layui.submitChild = function () {
- $("#id_save").click();
- };
- });
- </script>
- </body>
- </html>
|