|
|
|
<!DOCTYPE html>
|
|
|
|
<html class="no-js" lang="zh-CN">
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<script type="text/javascript" src="{$smarty.const.CSS_URL}/js/jquery-1.8.1.min.js"></script>
|
|
|
|
<script type="text/javascript" src="{$smarty.const.CSS_URL}/js/jquery.form.js"></script>
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
|
|
<title>计量单位转换列表</title>
|
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
|
|
<link href="{$smarty.const.CSS_URL}/css/global.css?v={$smarty.const.CSS_JS_VERSION}" media="screen" rel="stylesheet" type="text/css">
|
|
|
|
<script src="{$smarty.const.CSS_URL}/js/common.js?v={$smarty.const.CSS_JS_VERSION}"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div id="page">
|
|
|
|
{include file="admin/include/header.html"}
|
|
|
|
<div class="container">
|
|
|
|
<aside id="sidebar" class="sidebar">
|
|
|
|
<div id="search" class="domain-search module">
|
|
|
|
{include file="admin/include/leftmenu.html"}
|
|
|
|
</div>
|
|
|
|
</aside>
|
|
|
|
<section id="main">
|
|
|
|
<div class="entry">
|
|
|
|
<div class="modal-body">
|
|
|
|
<table class="table table-striped table-bordered table-condensed">
|
|
|
|
<tbody class='js-bundle-record-list'>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
计量单位:
|
|
|
|
<select id="unit_type" style="width: 100px;">
|
|
|
|
<option value="0" {if $smarty.get.unit_type==0}selected{/if}>请选择</option>
|
|
|
|
{foreach from=$unit_list key=key item=item}
|
|
|
|
<option value="{$key}" {if $smarty.get.unit_type==$key}selected{/if}>1{$item}</option>
|
|
|
|
{/foreach}
|
|
|
|
</select>
|
|
|
|
|
|
|
|
<button onclick="searchList();" class="button primary next" id="btnVer">搜索</button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="main-content">
|
|
|
|
<div class="record-control">
|
|
|
|
<ul class="tabs">
|
|
|
|
<li class="active"><a href="javascript:;">计量单位转换列表</a></li>
|
|
|
|
<div style="display:inline-block;float: right;">
|
|
|
|
<button class="button primary next" onclick="to_add()">添加准换</button>
|
|
|
|
</div>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="entry">
|
|
|
|
<div class="modal-body">
|
|
|
|
<table class="table table-striped table-bordered table-condensed">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th style="width: 5%">ID</th>
|
|
|
|
<th style="width: 10%">计量单位</th>
|
|
|
|
<th style="width: 10%">转换克重</th>
|
|
|
|
<th style="width: 60%">转换根据</th>
|
|
|
|
<th style="width: 15%">操作</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{foreach from=$list key=key item=item}
|
|
|
|
<tr>
|
|
|
|
<td>{$item.id}</td>
|
|
|
|
<td>1{$unit_list[$item.unit_type]}</td>
|
|
|
|
<td>{$item.num}g</td>
|
|
|
|
<td>{$item.from}</td>
|
|
|
|
<td>
|
|
|
|
{if $item.is_super == 0}
|
|
|
|
{if $item.status == 0}
|
|
|
|
<a href="javascript:;" onclick="to_disabled({$item.id},1)">禁用</a>
|
|
|
|
{else}
|
|
|
|
<a href="javascript:;" onclick="to_disabled({$item.id},0)">启用</a>
|
|
|
|
{/if}
|
|
|
|
{/if}
|
|
|
|
<a href="/admin/unit_conv_add/id/{$item.id}">编辑</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{/foreach}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</section><!--end of main section-->
|
|
|
|
|
|
|
|
</div><!--end of container-->
|
|
|
|
|
|
|
|
</div><!--end of #page-->
|
|
|
|
|
|
|
|
{literal}
|
|
|
|
<script type="text/javascript">
|
|
|
|
function to_add() {
|
|
|
|
location.href = '/admin/unit_conv_add';
|
|
|
|
}
|
|
|
|
|
|
|
|
function searchList() {
|
|
|
|
var unit_type = $('#unit_type').val();
|
|
|
|
|
|
|
|
var url = '/admin/unit_conv';
|
|
|
|
|
|
|
|
if(unit_type > 0) url += '/unit_type/' + unit_type;
|
|
|
|
|
|
|
|
location.href = url;
|
|
|
|
}
|
|
|
|
|
|
|
|
function to_disabled(id, status) {
|
|
|
|
if (!confirm("确定要禁用吗?")) {
|
|
|
|
console.log("用户选择了确认");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const data = {
|
|
|
|
id: id,
|
|
|
|
status: status,
|
|
|
|
};
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
url: '/admin/ajax_change_unit_conv', // 替换为你的服务器端处理文件
|
|
|
|
type: 'POST',
|
|
|
|
data: data,
|
|
|
|
dataType: 'json',
|
|
|
|
success: function (response) {
|
|
|
|
if (response.status == true) {
|
|
|
|
showAlert('操作成功', window.location.href)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(response.data.code == 40002){
|
|
|
|
showAlert('请登录','/admin/login')
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
showAlert(response.info)
|
|
|
|
},
|
|
|
|
error: function (xhr, status, error) {
|
|
|
|
console.error('错误:', response);
|
|
|
|
alert('提交失败,请重试。');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
{/literal}
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|