| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794 |
- <template>
- <div id="tableList">
- <div class="headerNavTool">
- <div class="leftIndexText">
- {{ navText.title }} <strong>{{ navText.index }}</strong>
- {{ navText.ch }}
- </div>
- <div class="rightBtnBox">
- <slot name="customize"></slot>
- <el-button
- size="medium"
- type="primary"
- @click="addClick"
- v-if="!navText.addHide"
- >添加</el-button
- >
- <el-button
- v-if="navText.backFatherBtn.status"
- size="medium"
- type="warning"
- @click="backFather"
- >{{ navText.backFatherBtn.title }}</el-button
- >
- <el-popover
- popper-class="slotPopper"
- placement="bottom-end"
- trigger="click"
- >
- <div class="popoverDis">
- <div class="checkboxHeader">
- <el-checkbox
- :indeterminate="isIndeterminate"
- v-model="checkAll"
- @change="handleCheckAllChange"
- >列展示</el-checkbox
- >
- <div class="initbtns" @click="initVue">重置</div>
- </div>
- <div
- style="height: 1px; width: 100%; background-color: #eaeefb"
- ></div>
- <el-checkbox-group
- class="checkboxGroup"
- v-model="checkedCities"
- @change="handleCheckedCitiesChange"
- >
- <div
- class="checkboxchild"
- v-for="(item, index) in cities"
- :key="index"
- >
- <el-checkbox
- :label="item"
- @change="checkboxChange(item, $event)"
- >{{ item }}</el-checkbox
- >
- <div class="icon-right">
- <i class="el-icon-upload2" @click="upMove(item, index)"></i>
- <i
- class="el-icon-download"
- @click="downMove(item, index)"
- ></i>
- </div>
- </div>
- </el-checkbox-group>
- </div>
- <el-button style="margin-left: 10px" size="medium" slot="reference"
- >自定义列</el-button
- >
- </el-popover>
- </div>
- </div>
- <el-table
- :data="tableData"
- stripe
- style="width: 100%"
- @select-all="selectAll"
- @select="select"
- :row-key="rowKey"
- :load="load"
- :cell-style="timeStyle"
- lazy
- ref="pagerset"
- v-loading="loading"
- :tree-props="{ children: 'children', hasChildren: 'hasChildren' }"
- >
- <el-table-column
- v-if="navText.choice"
- align="center"
- type="selection"
- width="55"
- header-align="center"
- >
- </el-table-column>
- <el-table-column
- v-if="navText.num"
- type="index"
- label="序号"
- align="center"
- header-align="center"
- >
- </el-table-column>
- <template v-for="(item, index) in tableSet">
- <el-table-column
- v-if="item.hidden"
- :width="item.width"
- :key="index"
- :label="item.label"
- align="center"
- :show-overflow-tooltip="true"
- header-align="center"
- >
- <template slot-scope="scope">
- <div class="imgboxsq" v-if="item.scope === 'img'">
- <el-image
- class="el_images"
- lazy
- :src="$methodsTools.splitImgHost(scope.row[item.prop])"
- style="height: 100%"
- :preview-src-list="[
- $methodsTools.splitImgHost(scope.row[item.prop]),
- ]"
- alt="加载失败..."
- >
- </el-image>
- </div>
- <span v-else-if="item.scope === 'status'">{{
- Number(scope.row[item.prop]) === 1
- ? "启用"
- : Number(scope.row[item.prop]) === 0
- ? "关闭"
- : Number(scope.row[item.prop]) === -1
- ? "已删除"
- : "未知"
- }}</span>
- <span v-else-if="item.scope === 'statusZpFB'">{{
- Number(scope.row[item.prop]) === 1
- ? "未发布"
- : Number(scope.row[item.prop]) === 2
- ? "已发布"
- : Number(scope.row[item.prop]) === 0
- ? "停用"
- : Number(scope.row[item.prop]) === -1
- ? "已删除"
- : "未知"
- }}</span>
- <span v-else-if="item.scope === 'reStatus'">{{
- Number(scope.row[item.prop]) === 1
- ? "定时发布"
- : Number(scope.row[item.prop]) === 0
- ? "手动发布"
- : "未知"
- }}</span>
- <span v-else-if="item.scope === 'ggType'">{{
- Number(scope.row[item.prop]) === 1
- ? "学习中心"
- : Number(scope.row[item.prop]) === 2
- ? "求职中心"
- : "未知"
- }}</span>
- <span v-else-if="item.scope === 'statusRe'">{{
- Number(scope.row[item.prop]) === 0
- ? "已删除"
- : Number(scope.row[item.prop]) === 1 &&
- Number(scope.row["reStatus"]) === 1
- ? "待发布"
- : Number(scope.row[item.prop]) === 1 &&
- Number(scope.row["reStatus"]) === 0
- ? "未发布"
- : Number(scope.row[item.prop]) === 2
- ? "已撤回"
- : Number(scope.row[item.prop]) === 3
- ? "已发布"
- : Number(scope.row[item.prop]) === 4
- ? "已到期"
- : "未知"
- }}</span>
- <span v-else-if="item.scope === 'TimeVoBtn'">
- <el-popover placement="left" trigger="click">
- <div
- v-for="(items, indexs) in scope.row[item.prop]"
- :key="indexs"
- style="margin-bottom: 6px"
- >
- {{ $methodsTools.onlyForma(items.startTime) }} ~
- {{ $methodsTools.onlyForma(items.endTime) }}
- </div>
- <el-button slot="reference" size="mini">查看</el-button>
- </el-popover>
- </span>
- <div v-else-if="item.scope === 'video'">
- <i v-if="scope.row[item.prop][item.prop1] !== null" class="el-icon-video-play cvideo" @click="openVideo($methodsTools.splitImgHost(scope.row[item.prop][item.prop1]))"></i>
- </div>
- <div
- v-else-if="item.scope === 'PDF'"
- style="display: flex; align-items: center"
- >
- <a
- v-if="scope.row[item.prop][item.prop1] !== null"
- :href="
- $methodsTools.splitImgHost(scope.row[item.prop][item.prop1])
- "
- target="_blank"
- style="
- display: block;
- width: 35px;
- height: 45px;
- margin-right: 10px;
- "
- >
- <img class="imgHover" src="@/assets/images/pdf@3x.png" alt="" />
- </a>
- <div>{{ scope.row[item.prop][item.prop2] }}</div>
- </div>
- <span v-else-if="item.scope === 'Salary'">
- {{ scope.row[item.prop1] === 1 ? "月薪" : "年薪" }}
- {{
- scope.row[item.prop2] === scope.row[item.prop3]
- ? scope.row[item.prop2]
- : scope.row[item.prop2] + "~" + scope.row[item.prop3]
- }}
- </span>
- <span v-else-if="item.scope === 'activityType'">{{
- Number(scope.row[item.prop]) === 0
- ? "优惠券"
- : Number(scope.row[item.prop]) === 1
- ? "折扣券"
- : Number(scope.row[item.prop]) === 2
- ? "线上直播"
- : Number(scope.row[item.prop]) === 3
- ? "定价"
- : Number(scope.row[item.prop]) === 4
- ? "优惠"
- : Number(scope.row[item.prop]) === 5
- ? "折扣"
- : Number(scope.row[item.prop]) === 6
- ? "线下活动"
- : "未知"
- }}</span>
- <span v-else-if="item.scope === 'activityRemarks'">{{
- Number(scope.row[item.prop]) === 0
- ? "金额:¥" + scope.row["price"]
- : Number(scope.row[item.prop]) === 1
- ? "折扣:" + scope.row["price"] + "折"
- : Number(scope.row[item.prop]) === 2
- ? "直播内容:" + scope.row["liveContent"]
- : Number(scope.row[item.prop]) === 3
- ? "商品金额:¥" + scope.row["price"]
- : Number(scope.row[item.prop]) === 4
- ? "优惠金额:¥" + scope.row["price"]
- : Number(scope.row[item.prop]) === 5
- ? "商品折扣:" + scope.row["price"] + "折"
- : Number(scope.row[item.prop]) === 6
- ? "活动地点:" + scope.row["liveAdress"]
- : "未知"
- }}</span>
- <span v-else-if="item.scope === 'isUrgent'">{{
- scope.row[item.prop] === 0
- ? "不是"
- : scope.row[item.prop] === 1
- ? "是"
- : "未知"
- }}</span>
- <span v-else-if="item.scope === 'peopleNum'">{{
- scope.row[item.prop] === 0 ? "不限制" : scope.row[item.prop]
- }}</span>
- <span v-else-if="item.scope === 'address'">{{
- scope.row[item.prop1] +
- scope.row[item.prop2] +
- scope.row[item.prop3] +
- scope.row[item.prop4]
- }}</span>
- <span v-else-if="item.scope === 'statusActivity'">{{
- Number(scope.row[item.prop]) === 0
- ? "已删除"
- : Number(scope.row[item.prop]) === 1
- ? "已结束"
- : Number(scope.row[item.prop]) === 2
- ? "已撤回"
- : Number(scope.row[item.prop]) === 3
- ? "已开始"
- : Number(scope.row[item.prop]) === 4
- ? "未开始"
- : "未知"
- }}</span>
- <span v-else-if="item.scope === 'statusFB'">{{
- scope.row[item.prop] === 0
- ? "删除"
- : scope.row[item.prop] === 1
- ? "发布"
- : scope.row[item.prop] === 2
- ? "撤回"
- : scope.row[item.prop] === 3
- ? "未发布"
- : "未知"
- }}</span>
- <span v-else-if="item.scope === 'typeStatus'">{{
- scope.row[item.prop] === 0
- ? "报名指引"
- : scope.row[item.prop] === 1
- ? "打印准考证"
- : scope.row[item.prop] === 2
- ? "成绩查询指引"
- : "未知"
- }}</span>
- <span v-else-if="item.scope === 'typeId'">{{
- scope.row[item.prop] === 1
- ? "普通练习"
- : scope.row[item.prop] === 2
- ? "押题试卷"
- : scope.row[item.prop] === 3
- ? "真题试卷"
- : "未知"
- }}</span>
- <span v-else-if="item.scope === 'taskType'">{{
- scope.row[item.prop] === 0
- ? "每日签到"
- : scope.row[item.prop] === 1
- ? "完善信息"
- : scope.row[item.prop] === 2
- ? "邀请好友"
- : scope.row[item.prop] === 3
- ? "每日分享"
- : scope.row[item.prop] === 4
- ? "视频学习"
- : scope.row[item.prop] === 5
- ? "模拟考试"
- : "未知"
- }}</span>
- <span v-else-if="item.scope === 'releaseType'">{{
- scope.row[item.prop] === 0
- ? "手动发布"
- : scope.row[item.prop] === 1
- ? "定时发布"
- : "未知"
- }}</span>
- <span v-else-if="item.scope === 'releaseStatus'">{{
- scope.row[item.prop] === 0
- ? "删除"
- : scope.row[item.prop] === 1
- ? "待发布"
- : scope.row[item.prop] === 2
- ? "撤回"
- : scope.row[item.prop] === 3
- ? "发布成功"
- : scope.row[item.prop] === 4
- ? "未发布"
- : scope.row[item.prop] === 5
- ? "已结束"
- : "未知"
- }}</span>
- <span
- class="editInfoSty"
- v-else-if="item.scope === 'isNums'"
- @click="editInfo(scope.row)"
- >{{ scope.row[item.prop] }}
- </span>
- <span v-else-if="item.scope === 'numberAll'">{{
- scope.row[item.prop1] + scope.row[item.prop2]
- }}</span>
- <span v-else-if="item.scope === 'moreLists'">{{
- scope.row[item.prop1] + " ~ " + scope.row[item.prop2]
- }}</span>
- <span v-else-if="item.scope === 'TimeLists'"
- >{{ $methodsTools.onlyForma(scope.row[item.prop1]) }} ~
- {{ $methodsTools.onlyForma(scope.row[item.prop2]) }}</span
- >
- <span v-else-if="item.scope === 'aTimeList'">{{
- scope.row[item.prop] === null
- ? "--"
- : $methodsTools.onlyForma(scope.row[item.prop])
- }}</span>
- <span v-else-if="item.scope === 'topic'">{{
- scope.row[item.prop] === 1
- ? "单选题"
- : scope.row[item.prop] === 2
- ? "多选题"
- : scope.row[item.prop] === 3
- ? "判断题"
- : scope.row[item.prop] === 4
- ? "案例题"
- : "未知"
- }}</span>
- <span v-else-if="item.scope === 'statusOrder'">{{
- scope.row[item.prop] === -2
- ? "超时关闭"
- : scope.row[item.prop] === -1
- ? "手动关闭"
- : scope.row[item.prop] === 0
- ? "待付款"
- : scope.row[item.prop] === 1
- ? "已付款"
- : scope.row[item.prop] === 3
- ? "成功"
- : "未知"
- }}</span>
- <span v-else-if="item.scope === 'cType'">
- <el-tag
- type="success"
- v-if="
- compType(scope.row[item.prop], scope.row['requestMethod']) ===
- '新增'
- "
- >
- {{
- compType(scope.row[item.prop], scope.row["requestMethod"])
- }}</el-tag
- >
- <el-tag
- v-if="
- compType(scope.row[item.prop], scope.row['requestMethod']) ===
- '修改'
- "
- >
- {{
- compType(scope.row[item.prop], scope.row["requestMethod"])
- }}</el-tag
- >
- <el-tag
- type="warning"
- v-if="
- compType(scope.row[item.prop], scope.row['requestMethod']) ===
- '查询'
- "
- >
- {{
- compType(scope.row[item.prop], scope.row["requestMethod"])
- }}</el-tag
- >
- </span>
- <span v-else-if="item.scope === 'time'">{{
- numTime(scope.row[item.prop])
- }}</span>
- <span v-else-if="item.scope === 'timeBtn'"
- >{{ numTime(scope.row[item.prop]) }}
- <el-button type="text" @click="getxq(scope.row)">详情</el-button>
- </span>
- <span v-else-if="item.scope === 'minute'">{{
- numTimeminute(scope.row[item.prop])
- }}</span>
- <span
- v-else-if="item.scope === 'jumpPage'"
- @click="jumpPage(scope.row)"
- style="color: #409eff; cursor: pointer"
- >{{ scope.row[item.prop] }}</span
- >
- <span v-else>{{ scope.row[item.prop] }}</span>
- </template>
- </el-table-column>
- </template>
- <el-table-column
- label="操作"
- align="center"
- fixed="right"
- width="180px"
- v-if="!navText.tableHide"
- >
- <template slot-scope="scope">
- <slot name="btn" :scope="scope"></slot>
- <!-- <el-button type="text" @click="edit(scope.row)">删除</el-button> -->
- </template>
- </el-table-column>
- </el-table>
- <el-dialog
- :visible.sync="diaBox"
- width="500px"
- :show-close="false"
- :destroy-on-close="true"
- >
- <div slot="title" class="hearders">
- <div class="leftTitle">详情</div>
- <div class="rightBoxs">
- <img
- src="@/assets/images/Close@2x.png"
- alt=""
- @click="closeBeforefs"
- />
- </div>
- </div>
- <el-row class="contentBox" :gutter="30">
- <div style="width: 100%; height: 100%">
- <video
- controls
- preload
- style="width: 100%; height: 100%"
- :src="$methodsTools.splitImgHost(videoUrls)"
- ></video>
- </div>
- </el-row>
- <div slot="footer" class="dialog-footer">
- <el-button @click="closeBeforefs">关闭</el-button>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- export default {
- props: ["tableSets", "tableData", "navText", "rowKey", "loading"],
- data() {
- return {
- tableSet: this.tableSets,
- allCheckData: [], //表格多选
- checkAll: true,
- checkedCities: [], //自定义列 选中数组
- cities: [], //自定义列 总数组
- isIndeterminate: false,
- videoUrls: '',
- diaBox:false,
- };
- },
- computed: {
- numTime: function () {
- return function (res) {
- return Number(res / 3600).toFixed(2);
- };
- },
- numTimeminute: function () {
- return function (res) {
- return Number(res / 60).toFixed(2);
- };
- },
- compType: function () {
- return function (res, data) {
- if (data === "POST") {
- if (res.indexOf("edit") !== -1 || res.indexOf("update") !== -1) {
- return "修改";
- } else {
- return "新增";
- }
- } else if (data === "GET") {
- return "查询";
- }
- };
- },
- },
- created() {
- this.inittableSet = JSON.stringify(this.tableSet);
- this.initTR();
- },
- mounted() {},
- methods: {
- editInfo(option) {
- this.$emit("editInfo", option);
- },
- timeStyle(column) {
- if (column.columnIndex === 0 && this.navText.firstColLeft) {
- return "text-align:left!important; padding-left: 40px;";
- }
- },
- //初始化
- initTR() {
- this.cities = [];
- this.checkedCities = [];
- this.checkAll = true;
- this.isIndeterminate = false;
- this.tableSet.forEach((item, index) => {
- this.cities.push(item.label);
- if (item.hidden) {
- this.checkedCities.push(item.label);
- }
- });
- if (this.checkedCities.length === 0) {
- this.isIndeterminate = false;
- } else if (this.checkedCities.length === this.cities.length) {
- this.isIndeterminate = false;
- this.checkAll = true;
- } else {
- this.isIndeterminate = true;
- this.checkAll = false;
- }
- },
- //自定义列全选按钮触发
- handleCheckAllChange(val) {
- this.checkedCities = val ? this.cities : [];
- this.isIndeterminate = false;
- if (val) {
- this.tableSet.forEach((item, index) => {
- item.hidden = true;
- });
- } else {
- this.tableSet.forEach((item, index) => {
- item.hidden = false;
- });
- }
- },
- // 勾选自定义列子选项
- handleCheckedCitiesChange(value) {
- let checkedCount = value.length;
- this.checkAll = checkedCount === this.cities.length;
- this.isIndeterminate =
- checkedCount > 0 && checkedCount < this.cities.length;
- },
- checkboxChange(v, e) {
- this.tableSet.forEach((item) => {
- if (item.label === v) {
- item.hidden = e;
- }
- });
- },
- // 下移
- downMove(option, index) {
- if (index !== this.tableSet.length - 1) {
- this.tableSet[index] = this.tableSet.splice(
- index + 1,
- 1,
- this.tableSet[index]
- )[0];
- this.cities[index] = this.cities.splice(
- index + 1,
- 1,
- this.cities[index]
- )[0];
- } else {
- this.tableSet.unshift(this.tableSet.splice(index, 1)[0]);
- this.cities.unshift(this.cities.splice(index, 1)[0]);
- }
- },
- // 上移
- upMove(option, index) {
- if (index != 0) {
- this.tableSet[index] = this.tableSet.splice(
- index - 1,
- 1,
- this.tableSet[index]
- )[0];
- this.cities[index] = this.cities.splice(
- index - 1,
- 1,
- this.cities[index]
- )[0];
- } else {
- this.tableSet.push(this.tableSet.shift());
- this.cities.push(this.cities.shift());
- }
- },
- //跳转页面
- jumpPage(options) {
- this.$router.push({
- path: "/dictData",
- query: {
- dictId: options.dictId,
- dictType: options.dictType,
- },
- });
- },
- //新增按钮
- addClick() {
- this.$emit("addClick");
- },
- //将选中值传回调用组件
- backFather() {
- this.$emit("emitData", this.allCheckData);
- },
- edit() {},
- selectAll(value) {
- this.allCheckData = value;
- },
- select(value) {
- this.allCheckData = value;
- },
- //自定义列重置
- initVue() {
- // this.$emit("initTableset");
- this.tableSet = JSON.parse(this.inittableSet);
- this.initTR();
- },
- load(tree, treeNode, resolve) {
- this.$emit("load", tree, treeNode, resolve);
- },
- getxq(option) {
- this.$emit("getxq", option.userId);
- },
- openVideo(url){
- this.videoUrls = url
- this.diaBox = true
- },
- closeBeforefs(){
- this.diaBox = false
- },
- },
- };
- </script>
- <style lang="less">
- .slotPopper {
- padding: 0px !important;
- }
- </style>
- <style lang="less" scoped>
- #tableList {
- padding: 0px 16px 16px;
- border-radius: 8px;
- box-shadow: 0px 0px 9px 1px rgba(28, 41, 90, 0.1);
- background: #ffffff;
- .headerNavTool {
- height: 72px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- .rightBtnBox {
- display: flex;
- align-items: center;
- }
- }
- }
- .popoverDis {
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- font-size: 14px;
- .checkboxHeader {
- height: 40px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding-left: 13px;
- padding-right: 15px;
- width: 100%;
- .initbtns {
- color: #47a6ff;
- cursor: pointer;
- }
- }
- .checkboxGroup {
- display: flex;
- flex-direction: column;
- width: 100%;
- .checkboxchild {
- width: 100%;
- justify-content: space-between;
- height: 40px;
- display: flex;
- align-items: center;
- padding: 0px 15px 0px 13px;
- transition: all 0.4s;
- &:hover {
- background-color: #ecf5ff;
- }
- &:hover .icon-right {
- display: flex;
- }
- .icon-right {
- display: flex;
- align-items: center;
- width: 30px;
- height: 30px;
- color: #666;
- font-size: 14px;
- display: none;
- i {
- cursor: pointer;
- margin: 0px 3px;
- &:hover {
- color: #47a6ff;
- }
- }
- }
- }
- }
- }
- /deep/.el-checkbox__input.is-checked + .el-checkbox__label {
- color: #666;
- }
- .imgboxsq {
- margin: 0 auto;
- height: 60px;
- max-height: 60px;
- .el_images {
- /deep/.el-image__inner {
- width: auto;
- }
- }
- }
- .imgHover {
- width: 100%;
- height: 100%;
- cursor: pointer;
- }
- .cvideo{
- transition: all 0.2s;
- color: #333;
- cursor: pointer;
- font-size: 30px;
- }
- .cvideo:hover{
- color: #47a6ff;
- }
- .editInfoSty {
- cursor: pointer;
- color: blue;
- }
- </style>
|