123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300 |
- <template>
- <div class="generalizationListPanel">
- <search-layout>
- <template slot="searchItem1">
- <span class="label">场景类型编号</span>
- <el-input
- v-model="searchParams.sceneId"
- size="small"
- clearable
- placeholder="请输入"
- maxlength="60"
- @keyup.enter.native="doSearch"
- >
- </el-input>
- </template>
- <template slot="searchItem2">
- <span class="label">功能模块</span>
- <el-select v-model="searchParams.fileName" multiple>
- <el-option
- v-for="item in fileNameList"
- :label="item.caption"
- :value="item.code"
- :key="item.code"
- >
- </el-option>
- </el-select>
- </template>
- <template slot="searchItem3">
- <span class="label">天气</span>
- <el-select v-model="searchParams.scenarioWeather" multiple>
- <el-option
- v-for="item in scenarioWeatherList"
- :label="item.caption"
- :value="item.code"
- :key="item.code"
- ></el-option>
- </el-select>
- </template>
- <template slot="searchItem4">
- <span class="label">时间</span>
- <el-time-picker
- v-model="searchParams.scenarioTime"
- value-format="HH:mm:ss"
- placeholder="时间"
- >
- </el-time-picker>
- </template>
- <template slot="searchBtn1">
- <el-button type="primary" @click="doSearch">查询</el-button>
- </template>
- <template slot="searchBtn2">
- <el-button type="primary" @click="doReset">重置</el-button>
- </template>
- </search-layout>
- <tableList
- ref="table"
- style="margin: 0"
- :columns="columns"
- :getDataWay="getDataWay"
- :pagination="pagination"
- :checkedData="checkedArr"
- :singleSelect="true"
- index
- selection
- >
- <el-table-column
- label="操作"
- slot="cgInfos"
- align="center"
- width="180"
- >
- <!-- <template v-slot="scope">
- <i
- @click="viewRow(scope.row)"
- class="el-icon-view elIcon cursor"
- title="查看"
- >
- </i>
- </template> -->
- </el-table-column>
- </tableList>
- <el-dialog
- :title="videoDiaTitle"
- :visible.sync="dialogVisible"
- width="690px"
- :close-on-click-modal="false"
- :close-on-press-escape="false"
- :before-close="diaClose"
- >
- <div class="videoBox">
- <video autoplay :src="videoSrc" controls></video>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import searchLayout from "@/components/grid/searchLayout";
- import tableList from "@/components/grid/TableList";
- import { mapState } from "vuex";
- export default {
- name: "generalizationList", // 泛化场景
- components: { searchLayout, tableList },
- data() {
- return {
- searchParams: {
- //搜索参数
- sceneId: "", // 场景类型编号
- fileName: [], // 功能模块
- scenarioWeather: [], // 天气
- scenarioTime: "", // 时间
- },
- labels: [],
- fileNameList: [],
- scenarioWeatherList: [],
- props: {
- multiple: true,
- label: "dictName",
- value: "dictCode",
- },
- columns: [
- //表格列
- {
- label: "编号",
- prop: "sceneId",
- },
- {
- label: "场景名称",
- prop: "scenarioName",
- },
- {
- label: "功能模块",
- prop: "fileName",
- },
- {
- label: "道路类型",
- prop: "scenarioRoadType",
- },
- {
- label: "时间",
- prop: "scenarioTime",
- },
- {
- label: "天气",
- prop: "scenarioWeather",
- },
- // {
- // label: "标签",
- // prop: "label",
- // },
- // {
- // label: "操作",
- // prop: "cgInfos",
- // template: true,
- // },
- ],
- pagination: {
- //分页使用
- currentPage: 1,
- pageSize: 10,
- position: "right",
- pageSizes: [10, 30, 50, 100, 200],
- layout: "sizes, total, prev, pager, next, jumper",
- },
- getDataWay: {
- //加载表格数据
- dataType: "url",
- type: "post",
- // firstRequest: false,
- data: this.$api.sceneLibrary.querySceneGeneralTemplateList,
- param: {},
- },
- checkedArr: [],
- dialogVisible: false,
- autoplay: false,
- videoSrc: "",
- videoDiaTitle: "",
- };
- },
- computed: {
- ...mapState(["fileHost", "fileUrl"]),
- },
- methods: {
- doSearch() {
- this.refreshList(this.searchParams);
- },
- //刷新table
- refreshList(param) {
- param
- ? this.$refs["table"].loadData(param)
- : this.$refs["table"].loadData();
- },
- doReset() {
- this.searchParams = {
- sceneId: "",
- fileName: [],
- scenarioWeather: [],
- scenarioTime: "",
- };
- this.labels = [];
- this.doSearch();
- },
- viewRow(row) {
- this.dialogVisible = true;
- this.videoDiaTitle = row.naturalName;
- let url = "";
- if (process.env.VUE_APP_IS_DEV == "true") {
- url = this.fileHost + this.fileUrl;
- } else {
- url = this.fileUrl;
- }
- let token = localStorage.getItem("Authorization").split(" ")[1];
- this.videoSrc = `${url}?objectName=${row.videoAddress}&access_token=${token}`;
- this.autoplay = true;
- },
- delRow(row) {
- this.$confirm("确认是否删除?", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- }).then(() => {
- this.$axios({
- method: "post",
- url: this.$api.sceneLibrary.deleteSceneNatural,
- data: {
- naturalId: row.naturalId,
- },
- }).then((res) => {
- if (res.code == 200) {
- this.$message.success("删除成功");
- } else {
- this.$message.error(res.message || "删除失败");
- }
- this.doSearch();
- });
- });
- },
- diaClose(done) {
- this.autoplay = false;
- this.videoSrc = "";
- done();
- },
- didUpload() {
- this.doSearch();
- },
- getFileNameList() {
- this.$axios({
- method: "post",
- url: this.$api.sceneLibrary.queryType,
- data: {},
- }).then((res) => {
- if (res.code == 200 && res.info) {
- let arr = [];
- res.info.forEach((item, i) => {
- arr[i] = {
- code: item,
- caption: item,
- };
- });
- this.fileNameList = arr;
- } else {
- this.$message.error(res.message || "获取功能模块列表失败");
- }
- });
- },
- },
- async mounted() {
- await this.$dicsListsInit({
- scenarioWeatherList: "scenarioWeather",
- });
- this.getFileNameList();
- },
- };
- </script>
- <style lang='less' scoped>
- @import "../common/util.less";
- .generalizationListPanel {
- .inputBox {
- .label {
- min-width: 90px;
- }
- .el-input,
- .el-select {
- width: 230px;
- }
- }
- }
- </style>
|