客户生日

This commit is contained in:
meimei
2025-04-16 11:38:20 +08:00
parent 478e257bce
commit adcd9f7847
5 changed files with 96 additions and 4 deletions

View File

@@ -16,7 +16,13 @@
<div class="form-group">
<label class="control-label col-xs-12 col-sm-2">{:__('Age')}:</label>
<div class="col-xs-12 col-sm-8">
<input id="c-age" min="0" name="row[age]" type="text" class="form-control datetimepicker" data-date-format="YYYY-MM-DD">
<input id="c-age" min="0" name="row[age]" type="number" class="form-control" >
</div>
</div>
<div class="form-group">
<label class="control-label col-xs-12 col-sm-2">出生月日:</label>
<div class="col-xs-12 col-sm-8">
<input id="c-birthday" name="row[birthday]" type="text" class="form-control datetimepicker" data-date-format="MM-DD">
</div>
</div>
<div class="form-group">

View File

@@ -16,7 +16,13 @@
<div class="form-group">
<label class="control-label col-xs-12 col-sm-2">{:__('Age')}:</label>
<div class="col-xs-12 col-sm-8">
<input id="c-age" min="0" class="form-control" name="row[age]" type="number" value="{$row.age|htmlentities}">
<input id="c-age" class="form-control " name="row[age]" type="number" value="{$row.age|htmlentities}">
</div>
</div>
<div class="form-group">
<label class="control-label col-xs-12 col-sm-2">出生月日:</label>
<div class="col-xs-12 col-sm-8">
<input id="c-birthday" class="form-control datetimepicker" name="row[birthday]" type="text" value="{$row.birthday|htmlentities}" data-date-format="MM-DD">
</div>
</div>
<div class="form-group">

View File

@@ -48,7 +48,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
{
name: 'addFollwup',
text: __('新增回访'),
title: __('新增回访new'),
title: __('新增回访'),
classname: 'btn btn-xs btn-primary btn-dialog',
icon: 'fa fa-magic',
url: 'firmcustomerfollowuprecord/newadd',