New file |
| | |
| | | <template> |
| | | <div class="otherInterface"> |
| | | <header> |
| | | <div class="headerTitle">运营管理 >> 视频管理</div> |
| | | </header> |
| | | <main> |
| | | <div class="mainHeader"> |
| | | <div class="add"> |
| | | <el-button type="primary" icon="el-icon-plus">新增任务</el-button> |
| | | </div> |
| | | <div class="date-search"> |
| | | <span>按天查询:</span> |
| | | <div class="mydate"> |
| | | <el-input placeholder="请输入开始时间"></el-input> |
| | | <div class="line"> |
| | | ——— ——— |
| | | </div> |
| | | <el-input placeholder="请输入结束时间"></el-input> |
| | | </div> |
| | | </div> |
| | | <div class="search"> |
| | | <el-input placeholder="请输入标题或者任务编号"></el-input> |
| | | </div> |
| | | <div class="btn"> |
| | | <el-button icon="el-icon-plus" type="primary">搜索</el-button> |
| | | <el-button icon="el-icon-delete">重置</el-button> |
| | | </div> |
| | | </div> |
| | | <div class="mainContent"> |
| | | <!-- @selection-change="handleSelectionChange" --> |
| | | <!-- 数据渲染 --> |
| | | <el-table ref="multipleTable" :data="tableData" tooltip-effect="dark" style="width: 100%" |
| | | :header-cell-style="{background:'#06122c','font-size':'12px',color:'#4b9bb7','font-weight':'650','line-height':'45px'}" |
| | | :row-class-name="tableRowClassName"> |
| | | <el-table-column type="selection" width="55"> |
| | | </el-table-column> |
| | | <el-table-column label="任务编号" prop="applicationName" min-width="10"> |
| | | </el-table-column> |
| | | <el-table-column prop="applicationType" label="标题" min-width="10"> |
| | | </el-table-column> |
| | | <el-table-column prop="websiteUrl" label="类型" min-width="10"> |
| | | </el-table-column> |
| | | <el-table-column prop="applicationType" label="级别" min-width="10"> |
| | | </el-table-column> |
| | | <el-table-column prop="applicationType" label="街道" min-width="10"> |
| | | </el-table-column> |
| | | <el-table-column prop="applicationType" label="社区" min-width="10"> |
| | | </el-table-column> |
| | | <el-table-column prop="applicationType" label="开始时间" min-width="10"> |
| | | </el-table-column> |
| | | <el-table-column prop="applicationType" label="结束时间" min-width="10"> |
| | | </el-table-column> |
| | | <el-table-column prop="applicationType" label="任务描述" min-width="10"> |
| | | </el-table-column> |
| | | <el-table-column prop="applicationType" label="状态" min-width="10"> |
| | | </el-table-column> |
| | | <el-table-column label="操作" min-width="10"> |
| | | <template slot-scope="scope"> |
| | | <span @click="handleView(scope.row)">编辑</span> |
| | | <span class="line">|</span> |
| | | <span @click="handleDelete(scope.row)">查看</span> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |
| | | <!-- 分页 --> |
| | | <!-- <div class="pagination"> |
| | | <el-pagination background :current-page="currentPage" layout="prev, pager, next" :total="totalNum" |
| | | :page-size="pageSize" @current-change="changeCurrentPage" @prev-click="handlePrev" |
| | | @next-click="handleNext"> |
| | | </el-pagination> |
| | | </div> --> |
| | | </div> |
| | | </main> |
| | | <footer> |
| | | <!-- 创建弹窗 --> |
| | | <el-dialog :visible.sync="dialogCreate" title="新增第三方接口" width="45%" v-if="dialogCreate" |
| | | :before-close="handleClose"> |
| | | <createInterface /> |
| | | </el-dialog> |
| | | <!-- 查看弹窗 --> |
| | | <el-dialog :visible.sync="dialogUpdate" :title="updateFlag ?'修改第三方接口':'查看第三方接口'" width="45%" |
| | | v-if="dialogUpdate" :before-close="handleClose"> |
| | | <viewInterface :updateFlag="updateFlag" :userInfo=userInfo /> |
| | | </el-dialog> |
| | | </footer> |
| | | </div> |
| | | </template> |
| | | <script> |
| | | // import createInterface from './components/createInterface'; |
| | | // import viewInterface from './components/viewInterface' |
| | | export default { |
| | | components: { |
| | | // createInterface, viewInterface |
| | | }, |
| | | data() { |
| | | return { |
| | | tableData: [], |
| | | search: "", |
| | | dialogCreate: false, |
| | | dialogUpdate: false, |
| | | updateFlag: false, |
| | | userInfo: '', |
| | | date:'', |
| | | // totalNum: 200, |
| | | // pageSize: 10, |
| | | // currentPage: 1, |
| | | } |
| | | }, |
| | | created() { |
| | | this.getUserList(); |
| | | }, |
| | | methods: { |
| | | // 获取接口列表 |
| | | getUserList() { |
| | | const that = this; |
| | | // const { currentPage, pageSize, search } = this; |
| | | this.dialogCreate = false; |
| | | this.$axios.get("sccg/system/portal/thirdApp/search").then(res => { |
| | | const { code, data } = res; |
| | | if (code == 200) { |
| | | this.tableData = data; |
| | | } |
| | | }) |
| | | }, |
| | | // 设置表格斑马纹 |
| | | tableRowClassName({ row, rowIndex }) { |
| | | if ((rowIndex + 1) % 2 == 0) { |
| | | return 'warning-row'; |
| | | } else { |
| | | return 'success-row'; |
| | | } |
| | | return ''; |
| | | }, |
| | | // 打开新增界面 |
| | | handleAdd() { |
| | | this.dialogCreate = true; |
| | | }, |
| | | // 创建弹窗关闭 |
| | | handleClose(done) { |
| | | const that = this; |
| | | this.$confirm('确认关闭?') |
| | | .then(_ => { |
| | | that.dialogCreate = false; |
| | | done(); |
| | | }) |
| | | .catch(_ => { }); |
| | | }, |
| | | // 创建查看弹窗 |
| | | handleView(rowData) { |
| | | this.userInfo = rowData; |
| | | this.dialogUpdate = true; |
| | | }, |
| | | // 删除第三方接口 |
| | | handleDelete({ id }) { |
| | | console.log(id); |
| | | this.$axios.delete('sccg/system/portal/thirdApp/delete', { |
| | | params: { |
| | | id |
| | | } |
| | | }).then(res => { |
| | | console.log(res); |
| | | }) |
| | | } |
| | | // // 当前页改变触发事件 |
| | | // changeCurrentPage(page) { |
| | | // this.currentPage = page; |
| | | // this.getUserList(); |
| | | // }, |
| | | // // 上一页点击事件 |
| | | // handlePrev(page) { |
| | | // this.currentPage = page; |
| | | // this.getUserList(); |
| | | // }, |
| | | // // 下一页点击事件 |
| | | // handleNext(page) { |
| | | // this.currentPage = page; |
| | | // this.getUserList(); |
| | | // }, |
| | | } |
| | | } |
| | | </script> |
| | | <!-- sccg/system/portal/thirdApp/search --> |
| | | <style lang="scss" scoped> |
| | | .otherInterface { |
| | | header { |
| | | display: flex; |
| | | line-height: 60px; |
| | | justify-content: space-between; |
| | | padding: 0 20px; |
| | | color: #4b9bb7; |
| | | |
| | | &::v-deep .el-button { |
| | | background-color: #eb5d01; |
| | | border: none; |
| | | color: #fff; |
| | | border-radius: 20px; |
| | | } |
| | | } |
| | | |
| | | main { |
| | | padding: 10px 20px; |
| | | |
| | | .mainHeader { |
| | | padding-left: 20px; |
| | | display: flex; |
| | | line-height: 60px; |
| | | color: #4b9bb7; |
| | | background-color: #09152f; |
| | | display: flex; |
| | | .add,.search,.btn{ |
| | | flex:1; |
| | | } |
| | | .date-search{ |
| | | flex: 3; |
| | | display: flex; |
| | | .mydate{ |
| | | display: flex; |
| | | .line{ |
| | | margin:0 10px 0 20px; |
| | | } |
| | | } |
| | | } |
| | | .el-input { |
| | | width: 180px; |
| | | height: 35px; |
| | | margin-left: 10px; |
| | | |
| | | &::v-deep .el-input__inner { |
| | | background-color: #09152f; |
| | | border: 1px solid #17324c; |
| | | font-size: 12px; |
| | | } |
| | | } |
| | | } |
| | | |
| | | .mainContent { |
| | | margin-top: 20px; |
| | | |
| | | .el-table { |
| | | color: #4b9bb7; |
| | | |
| | | &::v-deep .el-table__empty-block { |
| | | background-color: #06122c; |
| | | } |
| | | |
| | | &::v-deep .el-table__empty-text { |
| | | color: #4b9bb7; |
| | | } |
| | | |
| | | &::v-deep .warning-row { |
| | | background-color: #06122c; |
| | | } |
| | | |
| | | &::v-deep .success-row { |
| | | background-color: #071f39; |
| | | } |
| | | } |
| | | |
| | | .line { |
| | | padding: 0 5px; |
| | | // margin-top: -10px; |
| | | } |
| | | } |
| | | } |
| | | |
| | | footer { |
| | | |
| | | &::v-deep .el-dialog__header, |
| | | &::v-deep .el-dialog__body { |
| | | background-color: #06122c; |
| | | } |
| | | |
| | | &::v-deep .el-dialog__header { |
| | | display: flex; |
| | | align-items: center; |
| | | background-color: #fff; |
| | | padding: 20px; |
| | | line-height: 60px; |
| | | } |
| | | |
| | | &::v-deep .el-dialog__title { |
| | | color: #4b9bb7; |
| | | } |
| | | |
| | | &::v-deep .el-dialog__close { |
| | | width: 20px; |
| | | height: 20px; |
| | | // color: #fff; |
| | | } |
| | | |
| | | &::v-deep .el-dialog__body { |
| | | padding: 0; |
| | | } |
| | | } |
| | | } |
| | | </style> |