123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282 |
- <template>
- <div>
- <search-layout :needBox="true">
- <template slot="searchItem1">
- <span class="label">配置ID</span>
- <el-input
- v-model="searchParams.configCode"
- size="small"
- clearable
- placeholder="请输入"
- maxlength="60"
- @keyup.enter.native="doSearch"
- >
- </el-input>
- </template>
- <template slot="searchItem2">
- <span class="label">配置名称</span>
- <el-input
- v-model="searchParams.configName"
- size="small"
- clearable
- placeholder="请输入"
- maxlength="60"
- @keyup.enter.native="doSearch"
- >
- </el-input>
- </template>
- <template slot="searchItem3">
- <span class="label">配置描述</span>
- <el-input
- v-model="searchParams.configDescription"
- size="small"
- clearable
- placeholder="请输入"
- maxlength="200"
- @keyup.enter.native="doSearch"
- >
- </el-input>
- </template>
- <template slot="searchItem4">
- <span class="label">车辆名称</span>
- <el-input
- v-model="searchParams.vehicleName"
- size="small"
- clearable
- placeholder="请输入"
- maxlength="60"
- @keyup.enter.native="doSearch"
- >
- </el-input>
- </template>
- <template slot="searchItem5">
- <span class="label">车辆描述</span>
- <el-input
- v-model="searchParams.vehicleDescription"
- size="small"
- clearable
- placeholder="请输入"
- maxlength="200"
- @keyup.enter.native="doSearch"
- >
- </el-input>
- </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>
- <div class="myTabsBox">
- <el-tabs v-model="activeName" type="card" @tab-click="pageControl">
- <el-tab-pane label="公有" name="1"></el-tab-pane>
- <el-tab-pane label="私有" name="2"></el-tab-pane>
- </el-tabs>
- <el-button
- v-bind:class="{ addBtn: true, disabled: activeName === '1' }"
- icon="el-icon-circle-plus-outline"
- @click="addOne"
- type="primary"
- :disabled="activeName === '1'"
- >新增</el-button
- >
- </div>
- <tableList
- ref="table"
- style="margin: 0 30px"
- :columns="columns"
- :getDataWay="getDataWay"
- :pagination="pagination"
- index
- >
- <el-table-column label="操作" slot="cgInfos" align="center">
- <template v-slot="scope">
- <i
- v-if="activeName === '2'"
- @click="shareRow(scope.row)"
- class="el-icon-share elIcon"
- title="分享"
- ></i>
- <i
- @click="editRow(scope.row)"
- class="el-icon-edit-outline elIcon"
- title="编辑"
- ></i>
- <i
- v-if="activeName === '2'"
- @click="delOne(scope.row)"
- class="el-icon-delete elIcon"
- title="删除"
- ></i>
- </template>
- </el-table-column>
- </tableList>
- </div>
- </template>
- <script>
- import searchLayout from "@/components/grid/searchLayout";
- import tableList from "@/components/grid/TableList";
- import toolbarTab from "@/components/toolbar/toolbarTab";
- export default {
- name: "vehicleConfigurationList", // 车辆配置
- components: { searchLayout, tableList, toolbarTab },
- data() {
- return {
- searchParams: {
- // 搜索参数
- configCode: "", // 配置ID
- configName: "", // 配置名称
- configDescription: "", // 配置描述
- vehicleName: "", // 车辆名称
- vehicleDescription: "", // 车辆描述
- },
- activeName: "2",
- columns: [
- {
- label: "配置ID",
- prop: "configCode",
- },
- {
- label: "配置名称",
- prop: "configName",
- },
- {
- label: "配置描述",
- prop: "configDescription",
- // showOverflowTooltip: true,
- },
- {
- label: "车辆名称",
- prop: "vehicleName",
- },
- {
- label: "车辆描述",
- prop: "vehicleDescription",
- },
- {
- label: "传感器配置",
- prop: "configSensors",
- },
- {
- 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.modelLibrary.getConfigPageList,
- param: {
- share: "0",
- },
- },
- };
- },
- methods: {
- pageControl(data) {
- this.activeName = data.name;
- this.doSearch();
- },
- doSearch() {
- let pageMap = {
- ...this.searchParams,
- share: this.activeName === "1" ? "1" : "0",
- };
- this.refreshList(pageMap);
- },
- //刷新table
- refreshList(param) {
- param
- ? this.$refs["table"].loadData(param)
- : this.$refs["table"].loadData();
- },
- doReset() {
- this.searchParams = {
- configCode: "",
- configName: "",
- configDescription: "",
- vehicleName: "",
- vehicleDescription: "",
- };
- this.doSearch();
- },
- addOne() {
- this.$router.push({ path: "/vehicleConfigurationDetail" });
- },
- editRow(row) {
- this.$router.push({
- path: "/vehicleConfigurationDetail",
- query: {
- id: row.id,
- share: row.share,
- },
- });
- },
- delOne(row) {
- this.$confirm("确认是否删除?", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- }).then(() => {
- this.$axios({
- method: "post",
- url: this.$api.modelLibrary.delConfigById,
- data: {
- id: row.id,
- },
- }).then((res) => {
- if (res.code == 200) {
- this.$message.success("删除成功");
- } else {
- this.$message.error(res.message || "删除失败");
- }
- this.doSearch();
- });
- });
- },
- shareRow(row) {
- this.$confirm("确认是否分享?", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- }).then(() => {
- this.$axios({
- method: "post",
- url: this.$api.modelLibrary.shareConfigById,
- data: {
- id: row.id,
- },
- }).then((res) => {
- if (res.code == 200) {
- this.$message.success("分享成功");
- } else {
- this.$message.error(res.message || "分享失败");
- }
- this.doSearch();
- });
- });
- },
- },
- created() {},
- };
- </script>
- <style scoped lang="less">
- </style>
|