| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214 |
- <template>
- <div
- class="main-content"
- :style="{
- width: '100%',
- padding: '20px 30px',
- fontSize: '15px',
- }"
- >
- <!-- 列表页 -->
- <template v-if="!addOrUpdateOrDetailFlag">
- <el-form
- class="center-form-pv"
- :style="{
- border: '0px solid #fff',
- padding: '10px',
- margin: '0',
- flexWrap: 'wrap',
- background: '#ffffff',
- display: 'flex',
- width: '100%',
- }"
- :inline="true"
- :model="searchForm"
- >
- <el-row
- :style="{
- padding: '10px',
- alignItems: 'center',
- flexWrap: 'wrap',
- background: 'none',
- display: 'flex',
- }"
- >
- <div
- :style="{
- alignItems: 'center',
- margin: '0 10px 0 0',
- display: 'flex',
- }"
- >
- <label
- :style="{
- margin: '0 10px 0 0',
- whiteSpace: 'nowrap',
- color: '#666',
- display: 'inline-block',
- lineHeight: '40px',
- fontSize: 'inherit',
- fontWeight: '500',
- height: '40px',
- }"
- class="item-label"
- >变电站名称</label
- >
- <el-input
- v-model="searchForm.subName"
- placeholder="变电站名称"
- @keydown.enter.native="search()"
- clearable
- ></el-input>
- </div>
- <div
- :style="{
- alignItems: 'center',
- margin: '0 10px 0 0',
- display: 'flex',
- }"
- >
- <label
- :style="{
- margin: '0 10px 0 0',
- whiteSpace: 'nowrap',
- color: '#666',
- display: 'inline-block',
- lineHeight: '40px',
- fontSize: 'inherit',
- fontWeight: '500',
- height: '40px',
- }"
- class="item-label"
- >归属市名称</label
- >
- <el-select
- style="width: 100%"
- v-model="searchForm.cityId"
- placeholder="归属市名称"
- @keydown.enter.native="search()"
- @change="getCompList()"
- clearable
- >
- <el-option
- v-for="item in cityList"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- />
- </el-select>
- </div>
- <div
- :style="{
- alignItems: 'center',
- margin: '0 10px 0 0',
- display: 'flex',
- }"
- >
- <label
- :style="{
- margin: '0 10px 0 0',
- whiteSpace: 'nowrap',
- color: '#666',
- display: 'inline-block',
- lineHeight: '40px',
- fontSize: 'inherit',
- fontWeight: '500',
- height: '40px',
- }"
- class="item-label"
- >归属县旗</label
- >
- <el-select
- style="width: 100%"
- v-model="searchForm.compId"
- placeholder="归属县旗名称"
- @keydown.enter.native="search()"
- clearable
- >
- <el-option
- v-for="item in compList"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- />
- </el-select>
- </div>
- <el-button class="search" type="success" @click="search()">
- <span
- class="icon iconfont icon-fangdajing07"
- :style="{
- margin: '0 2px',
- fontSize: '16px',
- color: '#fff',
- display: 'none',
- height: '40px',
- }"
- ></span>
- 搜索
- </el-button>
- </el-row>
- <el-row
- class="actions"
- :style="{
- padding: '10px',
- margin: '0px 0',
- flexWrap: 'wrap',
- background: 'none',
- display: 'flex',
- }"
- >
- <el-button class="add" type="success" @click="addOrUpdateHandler(null, 'add')">
- <span
- class="icon iconfont icon-xihuan"
- :style="{
- margin: '0 2px',
- fontSize: '14px',
- color: '#fff',
- display: 'none',
- height: '34px',
- }"
- ></span>
- 添加
- </el-button>
- <el-button
- class="del"
- :disabled="dataListSelections.length ? false : true"
- type="danger"
- @click="deleteHandler()"
- >
- <span
- class="icon iconfont icon-xihuan"
- :style="{
- margin: '0 2px',
- fontSize: '14px',
- color: '#fff',
- display: 'none',
- height: '34px',
- }"
- ></span>
- 批量删除
- </el-button>
- </el-row>
- </el-form>
- <div
- :style="{
- border: '0px solid #fff',
- width: '100%',
- padding: '0 20px 20px',
- fontSize: '14px',
- color: '#000',
- background: '#fff',
- }"
- >
- <el-table
- class="tables"
- :stripe="false"
- :style="{
- padding: '0px 0',
- borderColor: '#f0f0f0',
- borderRadius: '0',
- borderWidth: '0px 0 0 1px',
- background: '#fff',
- width: '100%',
- fontSize: 'inherit',
- borderStyle: 'solid',
- }"
- :border="true"
- :data="dataList"
- v-loading="dataListLoading"
- @selection-change="selectionChangeHandler"
- >
- <el-table-column
- :resizable="true"
- type="selection"
- align="center"
- width="50"
- ></el-table-column>
- <el-table-column
- :resizable="true"
- :sortable="true"
- label="序号"
- type="index"
- width="50"
- />
- <el-table-column :resizable="true" :sortable="true" prop="subName" label="变电站名称">
- <template slot-scope="scope">
- {{ scope.row.subName }}
- </template>
- </el-table-column>
- <el-table-column :resizable="true" :sortable="true" prop="cityName" label="归属市名称">
- <template slot-scope="scope">
- {{ scope.row.cityName }}
- </template>
- </el-table-column>
- <el-table-column :resizable="true" :sortable="true" prop="compName" label="归属旗县">
- <template slot-scope="scope">
- {{ scope.row.compName }}
- </template>
- </el-table-column>
- <el-table-column :resizable="true" :sortable="true" prop="voltageLevel" label="电压等级">
- <template slot-scope="scope">
- {{ scope.row.voltageLevel }}
- </template>
- </el-table-column>
- <el-table-column :resizable="true" :sortable="true" prop="mainNum" label="主变台数">
- <template slot-scope="scope">
- {{ scope.row.mainNum }}
- </template>
- </el-table-column>
- <el-table-column
- :resizable="true"
- :sortable="true"
- prop="mainCapacity"
- label="主变容量(MVA)"
- >
- <template slot-scope="scope">
- {{ scope.row.mainCapacity }}
- </template>
- </el-table-column>
- <el-table-column
- :resizable="true"
- :sortable="true"
- prop="alarmThreshold"
- label="负荷报警阀值"
- >
- <template slot-scope="scope">
- {{ scope.row.alarmThreshold }}
- </template>
- </el-table-column>
- <el-table-column
- :resizable="true"
- :sortable="true"
- prop="growRate"
- label="用户增长率(%)"
- />
- <el-table-column :resizable="true" :sortable="true" prop="remark" label="备注">
- <template slot-scope="scope">
- {{ scope.row.remark }}
- </template>
- </el-table-column>
- <el-table-column width="260" label="操作">
- <template slot-scope="scope">
- <el-button
- class="view"
- type="success"
- @click="addOrUpdateHandler(scope.row.id, 'view')"
- >
- <span
- class="icon iconfont icon-xihuan"
- :style="{
- margin: '0 2px',
- fontSize: '14px',
- color: '#fff',
- display: 'none',
- height: '40px',
- }"
- ></span>
- 查看
- </el-button>
- <el-button
- class="edit"
- type="success"
- @click="addOrUpdateHandler(scope.row.id, 'edit')"
- >
- <span
- class="icon iconfont icon-xihuan"
- :style="{
- margin: '0 2px',
- fontSize: '14px',
- color: '#fff',
- display: 'none',
- height: '40px',
- }"
- ></span>
- 修改
- </el-button>
- <el-button class="del" type="primary" @click="deleteHandler(scope.row.id)">
- <span
- class="icon iconfont icon-xihuan"
- :style="{
- margin: '0 2px',
- fontSize: '14px',
- color: '#fff',
- display: 'none',
- height: '40px',
- }"
- ></span>
- 删除
- </el-button>
- <el-button v-if="false" class="view" type="primary" @click="lineHandler(scope.row)">
- <span
- class="icon iconfont icon-xihuan"
- :style="{
- margin: '0 2px',
- fontSize: '14px',
- color: '#fff',
- display: 'none',
- height: '40px',
- }"
- ></span>
- 线路
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- <el-pagination
- @size-change="sizeChangeHandle"
- @current-change="currentChangeHandle"
- :current-page="pageIndex"
- background
- :page-sizes="[10, 50, 100, 200]"
- :page-size="pageSize"
- :layout="layouts.join()"
- :total="totalPage"
- prev-text="< "
- next-text="> "
- :hide-on-single-page="false"
- :style="{
- padding: '0 20px 20px',
- margin: '0px auto',
- whiteSpace: 'nowrap',
- color: '#333',
- textAlign: 'left',
- background: '#fff',
- width: '100%',
- fontSize: 'inherit',
- position: 'relative',
- fontWeight: '500',
- }"
- ></el-pagination>
- </template>
- <!-- 添加/修改页面 将父组件的search方法传递给子组件-->
- <add-or-update v-if="addOrUpdateOrDetailFlag" :parent="this" ref="addOrUpdate"></add-or-update>
- <!-- 线路页面 -->
- <line-list :parent="this" ref="line"></line-list>
- </div>
- </template>
- <script>
- import AddOrUpdate from './components/add-or-update';
- import LineList from './components/line-list';
- import { myMixin } from './selectMixin';
- export default {
- mixins: [myMixin],
- data() {
- return {
- searchForm: {
- subName: '',
- cityId: '',
- compId: '',
- },
- form: {},
- dataList: [],
- pageIndex: 1,
- pageSize: 10,
- totalPage: 0,
- dataListLoading: false,
- dataListSelections: [],
- layouts: ['prev', 'pager', 'next', 'sizes'],
- compList: [],
- addOrUpdateOrDetailFlag: false,
- };
- },
- created() {
- this.getCityList();
- this.getDataList();
- },
- components: {
- AddOrUpdate,
- LineList,
- },
- methods: {
- // 获取公司列表
- async getCompList() {
- this.searchForm.compName = undefined;
- this.compList = [];
- const { data } = await this.$http({
- url: `/company/lists`,
- method: 'get',
- params: {
- cityId: this.searchForm.cityId,
- },
- });
- if (data && data.code === 0) {
- this.compList = data.data.map(item => ({
- label: item.compName,
- value: String(item.id),
- }));
- }
- },
- search() {
- this.pageIndex = 1;
- this.getDataList();
- },
- lineHandler(info) {
- this.$refs.line.openDrawer(info);
- },
- // 获取数据列表
- getDataList() {
- this.dataListLoading = true;
- let params = {
- page: this.pageIndex,
- limit: this.pageSize,
- sort: 'id',
- order: 'desc',
- };
- if (this.searchForm.subName != '' && this.searchForm.subName != undefined) {
- params['subName'] = '%' + this.searchForm.subName + '%';
- }
- if (this.searchForm.cityId != '' && this.searchForm.cityId != undefined) {
- params['cityId'] = Number(this.searchForm.cityId);
- }
- if (this.searchForm.compId != '' && this.searchForm.compId != undefined) {
- params['compId'] = Number(this.searchForm.compId);
- }
- this.$http({
- url: '/sub/page',
- method: 'get',
- params: params,
- }).then(({ data }) => {
- if (data && data.code === 0) {
- this.dataList = data.data.list;
- this.totalPage = data.data.total;
- } else {
- this.dataList = [];
- this.totalPage = 0;
- }
- this.dataListLoading = false;
- });
- },
- // 每页数
- sizeChangeHandle(val) {
- this.pageSize = val;
- this.pageIndex = 1;
- this.getDataList();
- },
- // 当前页
- currentChangeHandle(val) {
- this.pageIndex = val;
- this.getDataList();
- },
- // 多选
- selectionChangeHandler(val) {
- this.dataListSelections = val;
- },
- // 添加/修改
- addOrUpdateHandler(id, type) {
- this.addOrUpdateOrDetailFlag = true;
- this.$nextTick(() => {
- this.$refs.addOrUpdate.openDialog(id, type);
- });
- },
- // 删除
- async deleteHandler(id) {
- var ids = id
- ? [Number(id)]
- : this.dataListSelections.map(item => {
- return Number(item.id);
- });
- await this.$confirm(`确定进行[${id ? '删除' : '批量删除'}]操作?`, '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning',
- }).then(async () => {
- await this.$http({
- url: 'sub/delete',
- method: 'post',
- data: ids,
- }).then(async ({ data }) => {
- if (data && data.code === 0) {
- this.$message({
- message: '操作成功',
- type: 'success',
- });
- this.search();
- } else {
- this.$message.error(data.msg);
- }
- });
- });
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .center-form-pv {
- .el-date-editor.el-input {
- width: auto;
- }
- }
- .el-input {
- width: auto;
- }
- // form
- .center-form-pv .el-input {
- width: auto;
- }
- .center-form-pv .el-input ::v-deep .el-input__inner {
- border: 1px solid #ddd;
- border-radius: 0px;
- padding: 0 12px;
- color: #666;
- width: 150px;
- font-size: 15px;
- height: 40px;
- }
- .center-form-pv .el-select {
- width: auto;
- }
- .center-form-pv .el-select ::v-deep .el-input__inner {
- border: 1px solid #ddd;
- border-radius: 0px;
- padding: 0 10px;
- color: #666;
- width: 150px;
- font-size: 15px;
- height: 40px;
- }
- .center-form-pv .el-date-editor {
- width: auto;
- }
- .center-form-pv .el-date-editor ::v-deep .el-input__inner {
- border: 1px solid #ddd;
- border-radius: 0px;
- padding: 0 10px 0 30px;
- color: #666;
- width: 150px;
- font-size: 15px;
- height: 40px;
- }
- .center-form-pv .search {
- border: 0;
- cursor: pointer;
- border-radius: 0px;
- padding: 0 20px;
- color: #fff;
- background: #0977fd;
- width: auto;
- font-size: 16px;
- min-width: 90px;
- height: 40px;
- }
- .center-form-pv .search:hover {
- opacity: 0.8;
- }
- .center-form-pv .actions .add {
- border: 1px solid #0977fd60;
- cursor: pointer;
- border-radius: 0px;
- padding: 0 10px;
- margin: 4px;
- color: #0977fd;
- background: #fff;
- width: auto;
- font-size: inherit;
- height: 34px;
- }
- .center-form-pv .actions .add:hover {
- opacity: 0.8;
- }
- .center-form-pv .actions .del {
- border: 1px solid #cc000060;
- cursor: pointer;
- border-radius: 0px;
- padding: 0 10px;
- margin: 4px;
- color: #c00;
- background: #fff;
- width: auto;
- font-size: inherit;
- height: 34px;
- }
- .center-form-pv .actions .del:hover {
- opacity: 0.8;
- }
- .center-form-pv .actions .statis {
- border: 1px solid #e0970460;
- cursor: pointer;
- border-radius: 0px;
- padding: 0 20px;
- margin: 4px;
- color: #e09704;
- background: #fff;
- width: auto;
- font-size: inherit;
- height: 34px;
- }
- .center-form-pv .actions .statis:hover {
- opacity: 0.8;
- }
- .center-form-pv .actions .btn18 {
- border: 1px solid #ed9a0d60;
- cursor: pointer;
- border-radius: 0px;
- padding: 0 10px;
- margin: 4px;
- color: #ed9a0d;
- background: #fff;
- width: auto;
- font-size: inherit;
- height: 34px;
- }
- .center-form-pv .actions .btn18:hover {
- opacity: 0.8;
- }
- // table
- .el-table ::v-deep .el-table__header-wrapper thead {
- color: #999;
- background: #fff;
- font-weight: 500;
- width: 100%;
- }
- .el-table ::v-deep .el-table__header-wrapper thead tr {
- background: #cae2ff;
- }
- .el-table ::v-deep .el-table__header-wrapper thead tr th {
- padding: 8px 0;
- background: none;
- border-color: #f6f6f6;
- border-width: 0 0px 0px 0;
- border-style: solid;
- text-align: left;
- }
- .el-table ::v-deep .el-table__header-wrapper thead tr th .cell {
- padding: 0 0 0 5px;
- word-wrap: normal;
- color: #0977fd;
- white-space: normal;
- font-weight: bold;
- display: flex;
- vertical-align: middle;
- font-size: 14px;
- line-height: 24px;
- text-overflow: ellipsis;
- word-break: break-all;
- width: 100%;
- align-items: center;
- position: relative;
- min-width: 110px;
- }
- .el-table ::v-deep .el-table__body-wrapper {
- position: relative;
- }
- .el-table ::v-deep .el-table__body-wrapper tbody {
- width: 100%;
- }
- .el-table ::v-deep .el-table__body-wrapper tbody tr {
- background: #fff;
- }
- .el-table ::v-deep .el-table__body-wrapper tbody tr td {
- padding: 4px 0;
- color: #333;
- background: #fff;
- font-size: inherit;
- border-color: #0977fd30;
- border-width: 0 0px 1px 0;
- border-style: solid;
- text-align: left;
- }
- .el-table ::v-deep .el-table__body-wrapper tbody tr:hover td {
- padding: 4px 0;
- color: #333;
- background: #f4f9ff;
- border-color: #0977fd30;
- border-width: 0 0px 1px 0;
- border-style: solid;
- text-align: left;
- }
- .el-table ::v-deep .el-table__body-wrapper tbody tr td {
- padding: 4px 0;
- color: #333;
- background: #fff;
- font-size: inherit;
- border-color: #0977fd30;
- border-width: 0 0px 1px 0;
- border-style: solid;
- text-align: left;
- }
- .el-table ::v-deep .el-table__body-wrapper tbody tr td .cell {
- padding: 0 0 0 5px;
- overflow: hidden;
- word-break: break-all;
- white-space: normal;
- font-size: inherit;
- line-height: 24px;
- text-overflow: ellipsis;
- }
- .el-table ::v-deep .el-table__body-wrapper tbody tr td .view {
- border: 1px solid #0977fd60;
- cursor: pointer;
- border-radius: 0px;
- padding: 0 10px;
- margin: 0 5px 5px 0;
- color: #0977fd;
- background: #fff;
- width: auto;
- font-size: 14px;
- height: 32px;
- }
- .el-table ::v-deep .el-table__body-wrapper tbody tr td .view:hover {
- opacity: 0.8;
- }
- .el-table ::v-deep .el-table__body-wrapper tbody tr td .add {
- }
- .el-table ::v-deep .el-table__body-wrapper tbody tr td .add:hover {
- }
- .el-table ::v-deep .el-table__body-wrapper tbody tr td .edit {
- border: 1px solid #21c79260;
- cursor: pointer;
- border-radius: 0px;
- padding: 0 10px;
- margin: 0 5px 5px 0;
- color: #21c792;
- background: #fff;
- width: auto;
- font-size: 14px;
- height: 32px;
- }
- .el-table ::v-deep .el-table__body-wrapper tbody tr td .edit:hover {
- opacity: 0.8;
- }
- .el-table ::v-deep .el-table__body-wrapper tbody tr td .del {
- border: 1px solid #cc000060;
- cursor: pointer;
- border-radius: 0px;
- padding: 0 10px;
- margin: 0 5px 5px 0;
- color: #c00;
- background: #fff;
- width: auto;
- font-size: 14px;
- height: 32px;
- }
- .el-table ::v-deep .el-table__body-wrapper tbody tr td .del:hover {
- opacity: 0.8;
- }
- .el-table ::v-deep .el-table__body-wrapper tbody tr td .btn8 {
- border: 1px solid #ed9a0d60;
- cursor: pointer;
- border-radius: 0px;
- padding: 0 10px;
- margin: 0 5px 5px 0;
- color: #ed9a0d;
- background: #fff;
- width: auto;
- font-size: 14px;
- height: 32px;
- }
- .el-table ::v-deep .el-table__body-wrapper tbody tr td .btn8:hover {
- opacity: 0.8;
- }
- // pagination
- .main-content .el-pagination ::v-deep .el-pagination__total {
- margin: 0 10px 0 0;
- color: #666;
- font-weight: 400;
- display: inline-block;
- vertical-align: top;
- font-size: inherit;
- line-height: 28px;
- height: 28px;
- }
- .main-content .el-pagination ::v-deep .btn-prev {
- border: none;
- border-radius: 100px;
- padding: 0;
- margin: 0 5px;
- color: #fff;
- background: #000;
- display: inline-block;
- vertical-align: top;
- width: 28px;
- font-size: 16px;
- line-height: auto;
- height: 28px;
- }
- .main-content .el-pagination ::v-deep .btn-next {
- border: none;
- border-radius: 100%;
- padding: 0;
- margin: 0 5px;
- color: #fff;
- background: #000;
- display: inline-block;
- vertical-align: top;
- width: 28px;
- font-size: 16px;
- line-height: auto;
- height: 28px;
- }
- .main-content .el-pagination ::v-deep .btn-prev:disabled {
- border: none;
- cursor: not-allowed;
- padding: 0;
- margin: 0 5px;
- color: #666;
- display: inline-block;
- vertical-align: top;
- font-size: 16px;
- line-height: auto;
- border-radius: 100px;
- background: #ccc;
- width: 28px;
- height: 28px;
- }
- .main-content .el-pagination ::v-deep .btn-next:disabled {
- border: none;
- cursor: not-allowed;
- padding: 0;
- margin: 0 5px;
- color: #666;
- display: inline-block;
- vertical-align: top;
- font-size: 16px;
- line-height: auto;
- border-radius: 100px;
- background: #ccc;
- width: 28px;
- height: 28px;
- }
- .main-content .el-pagination ::v-deep .el-pager {
- padding: 0;
- margin: 0;
- display: inline-block;
- vertical-align: top;
- }
- .main-content .el-pagination ::v-deep .el-pager .number {
- cursor: pointer;
- border-radius: 100%;
- padding: 0 10px;
- margin: 0 2px;
- color: #fff;
- background: #b9b9b9;
- display: inline-block;
- vertical-align: top;
- font-size: 16px;
- line-height: 28px;
- text-align: center;
- height: 28px;
- }
- .main-content .el-pagination ::v-deep .el-pager .number:hover {
- cursor: pointer;
- border-radius: 100%;
- padding: 0 10px;
- margin: 0 2px;
- color: #fff;
- background: #0977fd;
- display: inline-block;
- vertical-align: top;
- font-size: 16px;
- line-height: 28px;
- text-align: center;
- height: 28px;
- }
- .main-content .el-pagination ::v-deep .el-pager .number.active {
- cursor: default;
- border-radius: 100%;
- padding: 0 10px;
- margin: 0 2px;
- color: #fff;
- background: #0977fd;
- display: inline-block;
- vertical-align: top;
- font-size: 16px;
- line-height: 28px;
- text-align: center;
- height: 28px;
- }
- .main-content .el-pagination ::v-deep .el-pagination__sizes {
- display: inline-block;
- vertical-align: top;
- font-size: 15px;
- line-height: 28px;
- height: 28px;
- }
- .main-content .el-pagination ::v-deep .el-pagination__sizes .el-input {
- margin: 0 5px;
- width: 100px;
- position: relative;
- }
- .main-content .el-pagination ::v-deep .el-pagination__sizes .el-input .el-input__inner {
- border: 1px solid #dcdfe6;
- cursor: pointer;
- padding: 0 25px 0 8px;
- color: #606266;
- display: inline-block;
- font-size: 15px;
- line-height: 28px;
- border-radius: 10px;
- outline: 0;
- background: #fff;
- width: 100%;
- text-align: center;
- height: 28px;
- }
- .main-content .el-pagination ::v-deep .el-pagination__sizes .el-input span.el-input__suffix {
- top: 0;
- position: absolute;
- right: 0;
- height: 100%;
- }
- .main-content
- .el-pagination
- ::v-deep
- .el-pagination__sizes
- .el-input
- .el-input__suffix
- .el-select__caret {
- cursor: pointer;
- color: #c0c4cc;
- width: 25px;
- font-size: 14px;
- line-height: 28px;
- text-align: center;
- }
- .main-content .el-pagination ::v-deep .el-pagination__jump {
- margin: 0 0 0 24px;
- color: #606266;
- display: inline-block;
- vertical-align: top;
- font-size: 15px;
- line-height: 28px;
- height: 28px;
- }
- .main-content .el-pagination ::v-deep .el-pagination__jump .el-input {
- border-radius: 3px;
- padding: 0 2px;
- margin: 0 2px;
- display: inline-block;
- width: 50px;
- font-size: 15px;
- line-height: 18px;
- position: relative;
- text-align: center;
- height: 28px;
- }
- .main-content .el-pagination ::v-deep .el-pagination__jump .el-input .el-input__inner {
- border: 1px solid #dcdfe6;
- cursor: pointer;
- padding: 0 3px;
- color: #606266;
- display: inline-block;
- font-size: 15px;
- line-height: 28px;
- border-radius: 3px;
- outline: 0;
- background: #fff;
- width: 100%;
- text-align: center;
- height: 28px;
- }
- // list one
- .one .list1-view {
- border: 0;
- cursor: pointer;
- border-radius: 4px;
- padding: 0 15px;
- margin: 0 5px 5px 0;
- outline: none;
- color: #fff;
- background: #157ed2;
- width: auto;
- font-size: 14px;
- height: 32px;
- }
- .one .list1-view:hover {
- opacity: 0.8;
- }
- .one .list1-edit {
- border: 0;
- cursor: pointer;
- border-radius: 4px;
- padding: 0 15px;
- margin: 0 5px 5px 0;
- outline: none;
- color: #fff;
- background: #409eff;
- width: auto;
- font-size: 14px;
- height: 32px;
- }
- .one .list1-edit:hover {
- opacity: 0.8;
- }
- .one .list1-del {
- border: 0;
- cursor: pointer;
- border-radius: 4px;
- padding: 0 15px;
- margin: 0 5px 5px 0;
- outline: none;
- color: #fff;
- background: rgba(255, 0, 0, 1);
- width: auto;
- font-size: 14px;
- height: 32px;
- }
- .one .list1-del:hover {
- opacity: 0.8;
- }
- .one .list1-btn8 {
- border: 0;
- cursor: pointer;
- border-radius: 4px;
- padding: 0 24px;
- margin: 0 5px 5px 0;
- outline: none;
- color: #fff;
- background: rgba(255, 128, 0, 1);
- width: auto;
- font-size: 14px;
- height: 32px;
- }
- .one .list1-btn8:hover {
- opacity: 0.8;
- }
- .main-content .el-table .el-switch {
- display: inline-flex;
- vertical-align: middle;
- line-height: 30px;
- position: relative;
- align-items: center;
- height: 30px;
- }
- .main-content .el-table .el-switch ::v-deep .el-switch__label--left {
- cursor: pointer;
- margin: 0 10px 0 0;
- color: #333;
- font-weight: 500;
- display: inline-block;
- vertical-align: middle;
- font-size: 16px;
- transition: 0.2s;
- height: 30px;
- }
- .main-content .el-table .el-switch ::v-deep .el-switch__label--right {
- cursor: pointer;
- margin: 0 0 0 10px;
- color: #333;
- font-weight: 500;
- display: inline-block;
- vertical-align: middle;
- font-size: 16px;
- transition: 0.2s;
- height: 30px;
- }
- .main-content .el-table .el-switch ::v-deep .el-switch__core {
- border: 1px solid #75c0d6;
- cursor: pointer;
- border-radius: 15px;
- margin: 0;
- background: #75c0d6;
- display: inline-block;
- width: 42px;
- box-sizing: border-box;
- transition: border-color 0.3s, background-color 0.3s;
- height: 20px;
- }
- .main-content .el-table .el-switch ::v-deep .el-switch__core::after {
- border-radius: 100%;
- top: 1px;
- left: 1px;
- background: #fff;
- width: 16px;
- position: absolute;
- transition: all 0.3s;
- height: 16px;
- }
- .main-content .el-table .el-switch.is-checked ::v-deep .el-switch__core::after {
- margin: 0 0 0 -18px;
- left: 100%;
- }
- .main-content .el-table .el-rate ::v-deep .el-rate__item {
- cursor: pointer;
- display: inline-block;
- vertical-align: middle;
- font-size: 0;
- position: relative;
- }
- .main-content .el-table .el-rate ::v-deep .el-rate__item .el-rate__icon {
- margin: 0 3px;
- display: inline-block;
- font-size: 18px;
- position: relative;
- transition: 0.3s;
- }
- </style>
|