|
@@ -0,0 +1,268 @@
|
|
|
+<template>
|
|
|
+ <div class="main-content__div">
|
|
|
+ <div class="table-box__div" v-cloak v-loading="loadingFlag">
|
|
|
+ <el-form class="demo-form-inline">
|
|
|
+ <el-form-item label="站点名称">
|
|
|
+ <el-input
|
|
|
+ placeholder="站点名称"
|
|
|
+ v-model="searchFrom.website_name"
|
|
|
+ style="width:150px;"
|
|
|
+ size="small"
|
|
|
+ clearable>
|
|
|
+ </el-input>
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
+ <!-- 搜索按钮 -->
|
|
|
+ <el-form-item>
|
|
|
+ <el-button type="primary" size="small" >搜索</el-button>
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
+ </el-form>
|
|
|
+ </div>
|
|
|
+ <!-- 列表 -->
|
|
|
+ <div class="table-box__div" v-cloak v-loading="loadingFlag">
|
|
|
+ <!-- 查询表单 -->
|
|
|
+ <el-form :inline="true" class="demo-form-inline">
|
|
|
+ <el-form-item>
|
|
|
+ <el-button type="primary" size="small" @click="addClick">添加站点</el-button>
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
+ </el-form>
|
|
|
+ <el-table
|
|
|
+ size="mini"
|
|
|
+ :data="tableData"
|
|
|
+ :empty-text="tableDataLoadingText"
|
|
|
+ style="width: 100%;font-size: 15px;"
|
|
|
+ :header-cell-style="{background:'#FAFAFA'}"
|
|
|
+ >
|
|
|
+ <el-table-column label="编号" width="150" prop="id"></el-table-column>
|
|
|
+ <el-table-column label="站点名称" prop="website_name" width="250"></el-table-column>
|
|
|
+ <el-table-column label="站点栏目" prop="column_name" width="200"></el-table-column>
|
|
|
+ <el-table-column label="站点logo" prop="logo" width="200"></el-table-column>
|
|
|
+ <el-table-column label="站点地址" prop="website_url" width="200"></el-table-column>
|
|
|
+ <el-table-column label="站点城市" prop="city_name" width="200"></el-table-column>
|
|
|
+ <el-table-column label="站点状态" width="200" prop="is_links">
|
|
|
+ <template v-slot="{row}">
|
|
|
+ <el-switch
|
|
|
+ v-model="row.status"
|
|
|
+ :active-value="1"
|
|
|
+ :inactive-value="0"
|
|
|
+ disabled
|
|
|
+ ></el-switch>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="创建时间" prop="created_at" width="200"></el-table-column>
|
|
|
+ <el-table-column prop="" label="操作" align="center" >
|
|
|
+ <template v-slot="scope">
|
|
|
+ <div style="display: flex;flex-direction: column;justify-content: center;align-items: center;">
|
|
|
+ <span class="btn" @click="updateClick(scope.row, scope.$index)">编辑</span>
|
|
|
+ <span class="btn" @click="deleteAuthority(scope.row,scope.$index)">删除</span>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ <!-- 分页 -->
|
|
|
+ <div class="block" v-show="pagination" style="margin-top: 10px;float: right;">
|
|
|
+ <el-pagination
|
|
|
+ background
|
|
|
+ @current-change="handleCurrentChange"
|
|
|
+ :current-page="currentPage"
|
|
|
+ :page-size="pageSize"
|
|
|
+ layout="total, prev, pager, next, jumper"
|
|
|
+ :total="parseInt(tableCount)">
|
|
|
+ </el-pagination>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <Dialog title="温馨提示" content="您确认要删除该菜单吗?"
|
|
|
+ @close="DialogShow = false"
|
|
|
+ @submitSureClick="submitSureClickDel"
|
|
|
+ @DialogFalse="DialogShow = false"
|
|
|
+ :innerVisible="DialogShow">
|
|
|
+ </Dialog>
|
|
|
+ <DialogSlot
|
|
|
+ title="添加/编辑"
|
|
|
+ @close="menuDialogShow = false"
|
|
|
+ @DialogClose="menuDialogShow = false"
|
|
|
+ :innerVisible="menuDialogShow"
|
|
|
+ @colesClick="menuDialogShow = false"
|
|
|
+ >
|
|
|
+ <editFrom
|
|
|
+ @colesClick="menuDialogShow = false"
|
|
|
+ :menuDataForm="menuDataForm"
|
|
|
+ :isloading="isloading"
|
|
|
+ @menuSubmitClick="menuSubmitClick"
|
|
|
+ @closeDlg="closeDlg"
|
|
|
+ >
|
|
|
+ </editFrom>
|
|
|
+ </DialogSlot>
|
|
|
+ </template>
|
|
|
+ <script>
|
|
|
+ import Dialog from "../../components/dialog";
|
|
|
+ import editFrom from "./components/edit";
|
|
|
+ import DialogSlot from "../../components/DialogSlot";
|
|
|
+ export default {
|
|
|
+ components: {
|
|
|
+ Dialog,
|
|
|
+ editFrom,
|
|
|
+ DialogSlot
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ value:"1",
|
|
|
+ // 菜站点数据
|
|
|
+ tableData: [],
|
|
|
+ // 加载中数据提示
|
|
|
+ tableDataLoadingText:"拼命加载中······",
|
|
|
+ // 是否显示分页
|
|
|
+ pagination:false,
|
|
|
+ // 每页显示的条数
|
|
|
+ pageSize:10,
|
|
|
+ // 当前页
|
|
|
+ currentPage:1,
|
|
|
+ // 菜单列表数据总条数
|
|
|
+ tableCount:0,
|
|
|
+ keyWord:'',
|
|
|
+ loadingFlag: false,
|
|
|
+ isShowSource: false, // 是否显示来源列
|
|
|
+ id:0,
|
|
|
+ DialogShow: false, //控制删除弹窗
|
|
|
+ MenuId:'',
|
|
|
+ MenuRowIndex:'',
|
|
|
+ menuDataForm: {},
|
|
|
+ menuTableData: [],
|
|
|
+ isloading:false, //提交按钮状态
|
|
|
+ menuDialogShow: false, // 控制保存弹窗
|
|
|
+ searchFrom:{
|
|
|
+ "website_name":''
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ mounted() {},
|
|
|
+ methods: {
|
|
|
+ // 获取菜单信息列表
|
|
|
+ getList:function(){
|
|
|
+ console.log("#######################@@@")
|
|
|
+ let _t = this;
|
|
|
+ _t.loadingFlag = true;
|
|
|
+ let parames = {
|
|
|
+ 'page':this.currentPage,
|
|
|
+ 'pageSize':this.pageSize,
|
|
|
+ 'keyWord':this.keyWord
|
|
|
+ }
|
|
|
+ this.$api.website.getWebsiteList(parames).then(res=>{
|
|
|
+ _t.loadingFlag = false;
|
|
|
+ if(res.code==200){
|
|
|
+ if(res.data.rows.length==0){
|
|
|
+ this.$message.error("没有数据了")
|
|
|
+ return
|
|
|
+ }
|
|
|
+ _t.tableData = res.data.rows;
|
|
|
+ _t.tableCount = res.data.count;
|
|
|
+ // 总条数大于每页显示的条数时显示分页
|
|
|
+ if( _t.tableCount > _t.pageSize ){
|
|
|
+ _t.pagination = true;
|
|
|
+ }
|
|
|
+ if( _t.tableData.length==0 ){
|
|
|
+ _t.tableDataLoadingText = "暂无数据";
|
|
|
+ }
|
|
|
+ }else{
|
|
|
+ this.$message.error("查询失败")
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 点击翻页
|
|
|
+ handleCurrentChange(val) {
|
|
|
+ this.currentPage = val;
|
|
|
+ this.getList();
|
|
|
+ },
|
|
|
+
|
|
|
+ addClick(){
|
|
|
+ this.menuDataForm = {}
|
|
|
+ this.menuDialogShow = true
|
|
|
+ },
|
|
|
+ //更新菜单
|
|
|
+ updateClick(row,index){
|
|
|
+ console.log(row)
|
|
|
+ this.menuDataForm = row
|
|
|
+ this.rowIndex = index
|
|
|
+ this.menuDialogShow = true
|
|
|
+ },
|
|
|
+ // menuDialogShow(){
|
|
|
+ // this.isloading = false
|
|
|
+ // },
|
|
|
+ closeDlg(val){
|
|
|
+ console.log("aaaaaa",val)
|
|
|
+ this.menuDialogShow = false
|
|
|
+ this.isloading = false
|
|
|
+ },
|
|
|
+ menuSubmitClick(data){
|
|
|
+ let _t = this
|
|
|
+ console.log("提交数据",data)
|
|
|
+ let parames = data
|
|
|
+ _t.isloading = true
|
|
|
+ //有id更新,没有新增
|
|
|
+ if(parames.id){
|
|
|
+ this.$api.authority.updateMenu(parames).then(res=>{
|
|
|
+ _t.loadingFlag = false;
|
|
|
+ if(res.code==200){
|
|
|
+ _t.tableData[_t.rowIndex] = parames
|
|
|
+ console.log("修改成功")
|
|
|
+ location.reload();
|
|
|
+ }else{
|
|
|
+ this.$message.error("修改失败")
|
|
|
+ }
|
|
|
+ this.menuDialogShow = false
|
|
|
+ this.isloading = false
|
|
|
+ })
|
|
|
+ }else{
|
|
|
+ this.$api.authority.addMenu(parames).then(res=>{
|
|
|
+ _t.loadingFlag = false;
|
|
|
+ if(res.code==200){
|
|
|
+ console.log("创建成功")
|
|
|
+ location.reload();
|
|
|
+ }else{
|
|
|
+ this.$message.error(res.message)
|
|
|
+ }
|
|
|
+ this.menuDialogShow = false
|
|
|
+ this.isloading = false
|
|
|
+ })
|
|
|
+ }
|
|
|
+
|
|
|
+ },
|
|
|
+ //删除菜单
|
|
|
+ deleteAuthority(row, index) {
|
|
|
+ this.MenuId = row.id
|
|
|
+ this.MenuRowIndex = index
|
|
|
+ this.DialogShow = true
|
|
|
+ },
|
|
|
+ submitSureClickDel(row,index){
|
|
|
+ let parames = {
|
|
|
+ 'id':this.MenuId
|
|
|
+ }
|
|
|
+ this.$api.authority.delMenu(parames).then(res=>{
|
|
|
+ if(res.code==200){
|
|
|
+ this.DialogShow = false
|
|
|
+ this.getList()
|
|
|
+ }else{
|
|
|
+ this.$message.error("查询失败")
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+
|
|
|
+ },
|
|
|
+ created() {
|
|
|
+ this.getList();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ </script>
|
|
|
+ <style >
|
|
|
+ .demo-form-inline{
|
|
|
+ display: flex;
|
|
|
+ }
|
|
|
+ .demo-form-inline .el-form-item{
|
|
|
+ margin: 0 20px;
|
|
|
+ }
|
|
|
+ </style>
|
|
|
+
|
|
|
+
|