You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.2 KiB
43 lines
1.2 KiB
|
|
@{
|
|
ViewBag.Title = "QCConfig";
|
|
Layout = "~/Views/Shared/iframeLayout.cshtml";
|
|
}
|
|
|
|
<section class="content-header">
|
|
<h3 class="box-title">系统管理<small>报检权限管理</small></h3>
|
|
</section>
|
|
<section class="content">
|
|
<div>
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<div class="box box-primary" id="vueApp">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title">报检权限</h3>
|
|
</div>
|
|
<!-- /.box-header -->
|
|
<!-- form start -->
|
|
|
|
<div class="box-body">
|
|
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" v-model="isEnable"> 开启报检
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<!-- /.box-body -->
|
|
|
|
<div class="box-footer">
|
|
<button type="button" class="btn btn-primary" v-on:click="setConfig">确定</button>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</section>
|
|
<script src="~/Scripts/SysConfig/QCConfig.js?v=2"></script>
|
|
|
|
|
|
|