From c19fec2cf8f23b132c292bb783ff7c309b5c5a96 Mon Sep 17 00:00:00 2001 From: RuoYi <yzz_ivy@163.com> Date: 星期六, 03 十月 2020 20:05:06 +0800 Subject: [PATCH] 格式化代码 --- ruoyi-ui/src/views/system/menu/index.vue | 11 ++++++++++- 1 files changed, 10 insertions(+), 1 deletions(-) diff --git a/ruoyi-ui/src/views/system/menu/index.vue b/ruoyi-ui/src/views/system/menu/index.vue index 53e9181..f8ce2f0 100644 --- a/ruoyi-ui/src/views/system/menu/index.vue +++ b/ruoyi-ui/src/views/system/menu/index.vue @@ -36,7 +36,7 @@ v-hasPermi="['system:menu:add']" >新增</el-button> </el-col> - <table-tools-ext :showSearch.sync="showSearch" @queryTable="getList"></table-tools-ext> + <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> </el-row> <el-table @@ -187,6 +187,14 @@ </el-radio-group> </el-form-item> </el-col> + <el-col :span="12"> + <el-form-item v-if="form.menuType == 'C'" label="是否缓存"> + <el-radio-group v-model="form.isCache"> + <el-radio label="0">缓存</el-radio> + <el-radio label="1">不缓存</el-radio> + </el-radio-group> + </el-form-item> + </el-col> </el-row> </el-form> <div slot="footer" class="dialog-footer"> @@ -316,6 +324,7 @@ menuType: "M", orderNum: undefined, isFrame: "1", + isCache: "0", visible: "0", status: "0" }; -- Gitblit v1.9.2