define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) { var Controller = { index: function () { // 初始化表格参数配置 Table.api.init({ extend: { index_url: 'service/skill/perfect/index' + location.search, add_url: 'service/skill/perfect/add', // edit_url: 'service/skill/perfect/edit', // del_url: 'service/skill/perfect/del', multi_url: 'service/skill/perfect/multi', import_url: 'service/skill/perfect/import', table: 'service_apply_skill', } }); var table = $("#table"); // 初始化表格 table.bootstrapTable({ url: $.fn.bootstrapTable.defaults.extend.index_url, pk: 'id', sortName: 'updatetime', fixedColumns: true, fixedRightNumber: 1, columns: [ [ {field: 'id', title: __('服务者信息'),operate: false,formatter:function (value,row){ let result = `
${row.name}
ID:${row.id}
${row.skill_cate_name}
` result += `
${row.sex_text}身份证:${row.idcard}
学历:${row.edu_text}
年龄:${row.age}
民族:${row.nation}
经验:${row.exper_text}
所在位置:${row.province}${row.city}${row.district}${row.address}
` return result }}, {field: 'id', title: __('证件'),operate: false,formatter:function (value,row){ return `
身份证正面
身份证反面
从业资格证
健康证
` }}, {field: 'id', title: __('服务项目'),operate: false,cellStyle: function () {return {css: {"min-width": "300px","max-width": "500px"}}},formatter:function (value,row){ let word = row.goodsname.split(',') let result = '
'; for(let i=0; i < word.length; i++){ result += `
${word[i]}
` } result+='
' return result }}, {field: 'id', title: __('照片'),operate: false,formatter:function (value,row){ let images = row.images.split(',') let result = `
实拍照
`; if(row.images.length>0){ result+=`
相册
`; for(let i=0; i < images.length; i++){ result += `` } result+='
' } return result }}, {field: 'id', title: __('状态'),operate: false, cellStyle: function () {return {css: {"max-width": "400px","min-width": "300px"}}},formatter:function (value,row){ let result = `
状态 ${row.state_text}
` if(row.state == -1){ result+=`
拒绝原因
${row.note}
` } return result }}, {field: 'id', title: __('时间'),operate: false, cellStyle: function () {return {css: {"min-width": "180px"}}},formatter:function (value,row){ return `
创建时间
${row.create_time}
更新时间
${row.update_time}
` }}, // {checkbox: true}, {field: 'id', title: __('Id'),visible: false}, {field: 'user_id', title: __('User_id'),visible: false}, {field: 'applytype', title: __('Applytype'), searchList: {"0":__('Applytype 0'),"1":__('Applytype 1')}, formatter: Table.api.formatter.normal,visible: false}, {field: 'name', title: __('Name'),visible: false}, {field: 'sex', title: __('Sex'), searchList: {"1":__('Sex 1'),"0":__('Sex 0')}, formatter: Table.api.formatter.normal,visible: false}, {field: 'idcard', title: __('Idcard'),visible: false}, // {field: 'front_image', title: __('Front_image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image}, // {field: 'opposite_image', title: __('Opposite_image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image}, // {field: 'user_image', title: __('User_image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image}, // {field: 'certificate_image', title: __('Certificate_image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image}, // {field: 'health_image', title: __('Health_image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image}, {field: 'category.name', title: __('Category_id'),visible: false}, {field: 'cate.name', title: __('Skill_cate_id'),visible: false}, {field: 'goodsname', title: __('服务项目'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content,visible: false}, {field: 'image', title: __('Image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image,visible: false}, // {field: 'images', title: __('Images'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.images}, {field: 'edu', title: __('Edu'), searchList: {"0":__('Edu 0'),"1":__('Edu 1'),"2":__('Edu 2'),"3":__('Edu 3'),"4":__('Edu 4'),"5":__('Edu 5'),"6":__('Edu 6')}, formatter: Table.api.formatter.normal,visible: false}, {field: 'nation', title: __('Nation'),visible: false}, {field: 'height', title: __('Height'),visible: false}, {field: 'weight', title: __('Weight'),visible: false,operate: false}, {field: 'exper', title: __('Exper'), searchList: {"0":__('Exper 0'),"1":__('Exper 1'),"2":__('Exper 2'),"3":__('Exper 3')}, formatter: Table.api.formatter.normal,visible: false}, {field: 'province', title: __('Province'), operate: 'LIKE',visible: false}, {field: 'city', title: __('City'), operate: 'LIKE',visible: false}, {field: 'district', title: __('District'), operate: 'LIKE',visible: false}, {field: 'address', title: __('Address'), operate: 'LIKE',visible: false}, {field: 'lng', title: __('Lng'),visible: false,operate: false}, {field: 'lat', title: __('Lat'),visible: false,operate: false}, {field: 'note', title: __('Note'), operate: 'LIKE',visible: false}, {field: 'state', title: __('State'), searchList: {"0":__('State 0'),"1":__('State 1'),"-1":__('State -1')}, formatter: Table.api.formatter.normal,visible: false}, {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime,visible: false}, {field: 'updatetime', title: __('Updatetime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime,visible: false}, {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, buttons: [ { name:'audit', text:'通过', title:'通过', classname: 'btn btn-xs btn-success btn-ajax', url: 'service/skill/perfect/agree', success: function (data, ret) { $(".btn-refresh").trigger('click'); }, hidden:function(row){ if(row.state != 0){ return true; } } }, { name: 'refuse', text: __('拒绝'), title: __('拒绝'), classname: 'btn btn-xs btn-danger btn-dialog', url: function(row){ return 'service/skill/perfect/refuse?ids='+row.id; }, success: function (data, ret) { $(".btn-refresh").trigger('click'); }, hidden:function(row){ if(row.state != 0){ return true; } } }, ], formatter: Table.api.formatter.operate} ] ] }); // 为表格绑定事件 Table.api.bindevent(table); }, add: function () { Controller.api.bindevent(); }, edit: function () { Controller.api.bindevent(); }, agree: function () { $(document).on('click', '.btn-embossed', function () { parent.$(".btn-refresh").trigger('click'); }); Controller.api.bindevent(); }, refuse: function () { $(document).on('click', '.btn-embossed', function () { parent.$(".btn-refresh").trigger('click'); }); Controller.api.bindevent(); }, api: { bindevent: function () { Form.api.bindevent($("form[role=form]")); } } }; return Controller; });