123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>-列表</title>
- <meta charset="utf-8">
- <meta name="viewport"
- content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no"/>
- <!-- 所有的 css & js 资源 -->
- <link rel="stylesheet" href="https://unpkg.com/element-ui@2.13.0/lib/theme-chalk/index.css">
- <link rel="stylesheet" href="../../static/sa.css">
- <script src="https://unpkg.com/vue@2.6.10/dist/vue.js"></script>
- <script src="https://unpkg.com/element-ui@2.13.0/lib/index.js"></script>
- <script src="https://unpkg.com/http-vue-loader@1.4.2/src/httpVueLoader.js"></script>
- <script src="https://unpkg.com/jquery@3.4.1/dist/jquery.js"></script>
- <script src="https://www.layuicdn.com/layer-v3.1.1/layer.js"></script>
- <script src="../../static/sa.js"></script>
- </head>
- <body>
- <div class="vue-box" style="display: none;" :style="'display: block;'">
- <div class="c-panel">
- <!-- ------------- 检索参数 ------------- -->
- <!-- ------------- 快捷按钮 ------------- -->
- <sa-item type="fast-btn" show="add,reset"></sa-item>
- <!-- ------------- 数据列表 ------------- -->
- <el-table class="data-table" ref="data-table" :data="dataList">
- <sa-td type="selection"></sa-td>
- <sa-td name="字典值" prop="itemValue"></sa-td>
- <sa-td name="字典文本" prop="itemText"></sa-td>
- <sa-td name="描述" prop="des"></sa-td>
- <sa-td name="排序" prop="sort" type="num"></sa-td>
- <!-- <sa-td name="状态" prop="status" type="num">-->
- <!-- <template slot-scope="s">-->
- <!-- <el-switch v-model="s.row.status" :active-value="1" :inactive-value="0"-->
- <!-- @change="updateStatus(s.row)" inactive-color="#ff4949" style="vertical-align: top;">-->
- <!-- </el-switch>-->
- <!-- <span style="color: #999;" v-if="s.row.status == 1">启用</span>-->
- <!-- <span style="color: #999;" v-if="s.row.status == 0">禁用</span>-->
- <!-- </template>-->
- <!-- </sa-td>-->
- <sa-td name="状态" prop="status" type="switch" :jv="{0: '禁用[#ff0000]', 1: '启用[#005500]'}"
- @change="s => updateStatus(s.row)"></sa-td>
- <el-table-column label="操作" fixed="right" width="240px">
- <template slot-scope="s">
- <el-button class="c-btn" type="primary" icon="el-icon-edit" @click="update(s.row)">修改</el-button>
- <el-button class="c-btn" type="danger" icon="el-icon-delete" @click="del(s.row)">删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- <!-- ------------- 分页 ------------- -->
- <sa-item type="page" :curr.sync="p.pageNo" :size.sync="p.pageSize" :total="dataCount" @change="f5()"></sa-item>
- </div>
- </div>
- <script>
- var app = new Vue({
- components: {
- "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
- "sa-td": httpVueLoader('../../sa-frame/com/sa-td.vue'),
- },
- el: '.vue-box',
- data: {
- p: { // 查询参数
- dictId: sa.p('dictId', ''),
- pageNo: 1, // 当前页
- pageSize: 10, // 页大小
- sortType: 0 // 排序方式
- },
- dataCount: 0,
- dataList: [], // 数据集合
- },
- methods: {
- // 刷新
- f5: function () {
- sa.ajax('/SysDictItem/getList', sa.removeNull(this.p), function (res) {
- this.dataList = res.data; // 数据
- this.dataCount = res.dataCount; // 数据总数
- sa.f5TableHeight(); // 刷新表格高度
- }.bind(this));
- },
- // 查看
- get: function (data) {
- sa.showIframe('数据详情', 'sys-dict-item-info.html?id=' + data.id, '1050px', '90%');
- },
- // 查看 - 根据选中的
- getBySelect: function (data) {
- var selection = this.$refs['data-table'].selection;
- if (selection.length == 0) {
- return sa.msg('请选择一条数据')
- }
- this.get(selection[0]);
- },
- // 修改
- update: function (data) {
- sa.showIframe('修改数据', 'sys-dict-item-add.html?id=' + data.id + '&dictId=' + this.p.dictId,
- '450px', '60%');
- },
- // 新增
- add: function (data) {
- sa.showIframe('新增数据', 'sys-dict-item-add.html?id=-1&dictId=' + this.p.dictId, '450px', '60%');
- },
- // 删除
- del: function (data) {
- sa.confirm('是否删除,此操作不可撤销', function () {
- sa.ajax('/SysDictItem/delete?id=' + data.id, function (res) {
- sa.arrayDelete(this.dataList, data);
- sa.ok('删除成功');
- sa.f5TableHeight(); // 刷新表格高度
- }.bind(this))
- }.bind(this));
- },
- // 批量删除
- deleteByIds: function () {
- // 获取选中元素的id列表
- let selection = this.$refs['data-table'].selection;
- let ids = sa.getArrayField(selection, 'id');
- if (selection.length == 0) {
- return sa.msg('请至少选择一条数据')
- }
- // 提交删除
- sa.confirm('是否批量删除选中数据?此操作不可撤销', function () {
- sa.ajax('/SysDictItem/deleteByIds', {ids: ids.join(',')}, function (res) {
- sa.arrayDelete(this.dataList, selection);
- sa.ok('删除成功');
- sa.f5TableHeight(); // 刷新表格高度
- }.bind(this))
- }.bind(this));
- },
- // 改 - 是否可用(0=可用,1=不可用)
- updateStatus: function (data) {
- // 声明变量记录是否成功
- var isOk = false;
- var oldValue = data.status;
- var ajax = sa.ajax('/SysDictItem/updateStatus', {
- id: data.id,
- value: data.status
- }, function (res) {
- isOk = true;
- sa.msg('修改成功');
- }.bind(this));
- // 如果未能修改成功, 则回滚
- $.when(ajax).done(function () {
- if (isOk == false) {
- data.status = oldValue;
- }
- })
- },
- },
- created: function () {
- this.f5();
- sa.onInputEnter();
- }
- })
- </script>
- </body>
- </html>
|