|
|
@@ -0,0 +1,454 @@
|
|
|
+<template>
|
|
|
+ <basic-container>
|
|
|
+ <el-row>
|
|
|
+ <el-col :span="12">
|
|
|
+ <avue-crud :option="option"
|
|
|
+ :table-loading="loading"
|
|
|
+ :data="data"
|
|
|
+ :page.sync="page"
|
|
|
+ :permission="permissionList"
|
|
|
+ :before-open="beforeOpen"
|
|
|
+ v-model="form"
|
|
|
+ ref="crud"
|
|
|
+ @row-update="rowUpdate"
|
|
|
+ @row-save="rowSave"
|
|
|
+ @row-del="rowDel"
|
|
|
+ @row-click="rowClick"
|
|
|
+ @search-change="searchChange"
|
|
|
+ @search-reset="searchReset"
|
|
|
+ @selection-change="selectionChange"
|
|
|
+ @current-change="currentChange"
|
|
|
+ @size-change="sizeChange"
|
|
|
+ @refresh-change="refreshChange"
|
|
|
+ @on-load="onLoad">
|
|
|
+ <template slot="menuLeft">
|
|
|
+ <el-button type="danger"
|
|
|
+ size="small"
|
|
|
+ icon="el-icon-delete"
|
|
|
+ plain
|
|
|
+ v-if="permission.shipyard_delete"
|
|
|
+ @click="handleDelete">删 除
|
|
|
+ </el-button>
|
|
|
+ </template>
|
|
|
+ </avue-crud>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <avue-crud :option="optionShip"
|
|
|
+ :table-loading="loadingShip"
|
|
|
+ :data="dataShip"
|
|
|
+ :page.sync="pageShip"
|
|
|
+ :permission="permissionListShip"
|
|
|
+ :before-open="beforeOpenShip"
|
|
|
+ v-model="formShip"
|
|
|
+ ref="crudShip"
|
|
|
+ @row-update="rowUpdateShip"
|
|
|
+ @row-save="rowSaveShip"
|
|
|
+ @row-del="rowDelShip"
|
|
|
+ @search-change="searchChangeShip"
|
|
|
+ @search-reset="searchResetShip"
|
|
|
+ @selection-change="selectionChangeShip"
|
|
|
+ @current-change="currentChangeShip"
|
|
|
+ @size-change="sizeChangeShip"
|
|
|
+ @refresh-change="refreshChangeShip"
|
|
|
+ >
|
|
|
+ <template slot="menuLeft">
|
|
|
+ <el-button type="danger"
|
|
|
+ size="small"
|
|
|
+ icon="el-icon-delete"
|
|
|
+ plain
|
|
|
+ v-if="permission.ship_delete"
|
|
|
+ @click="handleDeleteShip">删 除
|
|
|
+ </el-button>
|
|
|
+ <span>【{{yardName}}】</span>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ </avue-crud>
|
|
|
+ </el-col>
|
|
|
+
|
|
|
+ </el-row>
|
|
|
+
|
|
|
+ </basic-container>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+ import {getList, getDetail, add, update, remove} from "@/api/ship/shipyard";
|
|
|
+ import {mapGetters} from "vuex";
|
|
|
+ import {getList as getListShip, getDetail as getDetailShip, add as addShip, update as updateShip, remove as removeShip} from "@/api/ship/ship";
|
|
|
+
|
|
|
+ export default {
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ form: {},
|
|
|
+ query: {},
|
|
|
+ loading: true,
|
|
|
+ page: {
|
|
|
+ pageSize: 10,
|
|
|
+ currentPage: 1,
|
|
|
+ total: 0
|
|
|
+ },
|
|
|
+ selectionList: [],
|
|
|
+ option: {
|
|
|
+ height:'auto',
|
|
|
+ calcHeight: 30,
|
|
|
+ tip: false,
|
|
|
+ searchShow: true,
|
|
|
+ searchMenuSpan: 6,
|
|
|
+ border: true,
|
|
|
+ index: true,
|
|
|
+ viewBtn: true,
|
|
|
+ selection: true,
|
|
|
+ dialogClickModal: false,
|
|
|
+ column: [
|
|
|
+ {
|
|
|
+ label: "船厂编号",
|
|
|
+ prop: "code",
|
|
|
+ rules: [{
|
|
|
+ required: true,
|
|
|
+ message: "请输入船厂编号",
|
|
|
+ trigger: "blur"
|
|
|
+ }]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: "船厂名称",
|
|
|
+ prop: "name",
|
|
|
+ rules: [{
|
|
|
+ required: true,
|
|
|
+ message: "请输入船厂名称",
|
|
|
+ trigger: "blur"
|
|
|
+ }]
|
|
|
+ },
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ data: [],
|
|
|
+
|
|
|
+ yardId: '',
|
|
|
+
|
|
|
+ formShip: {},
|
|
|
+ queryShip: {},
|
|
|
+ loadingShip: true,
|
|
|
+ pageShip: {
|
|
|
+ pageSize: 10,
|
|
|
+ currentPage: 1,
|
|
|
+ total: 0
|
|
|
+ },
|
|
|
+ selectionListShip: [],
|
|
|
+ optionShip: {
|
|
|
+ addTitle:'',
|
|
|
+ editTitle:'',
|
|
|
+ height:'auto',
|
|
|
+ calcHeight: 30,
|
|
|
+ tip: false,
|
|
|
+ searchShow: true,
|
|
|
+ searchMenuSpan: 6,
|
|
|
+ border: true,
|
|
|
+ index: true,
|
|
|
+ viewBtn: true,
|
|
|
+ selection: true,
|
|
|
+ dialogClickModal: false,
|
|
|
+ column: [
|
|
|
+ {
|
|
|
+ label: "船只编号",
|
|
|
+ prop: "code",
|
|
|
+ rules: [{
|
|
|
+ required: true,
|
|
|
+ message: "请输入船只编号",
|
|
|
+ trigger: "blur"
|
|
|
+ }]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: "船只名称",
|
|
|
+ prop: "name",
|
|
|
+ rules: [{
|
|
|
+ required: true,
|
|
|
+ message: "请输入船只名称",
|
|
|
+ trigger: "blur"
|
|
|
+ }]
|
|
|
+ },
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ dataShip: []
|
|
|
+ };
|
|
|
+ },
|
|
|
+ computed: {
|
|
|
+ ...mapGetters(["permission"]),
|
|
|
+ permissionList() {
|
|
|
+ return {
|
|
|
+ addBtn: this.vaildData(this.permission.shipyard_add, false),
|
|
|
+ viewBtn: this.vaildData(this.permission.shipyard_view, false),
|
|
|
+ delBtn: this.vaildData(this.permission.shipyard_delete, false),
|
|
|
+ editBtn: this.vaildData(this.permission.shipyard_edit, false)
|
|
|
+ };
|
|
|
+ },
|
|
|
+ ids() {
|
|
|
+ let ids = [];
|
|
|
+ this.selectionList.forEach(ele => {
|
|
|
+ ids.push(ele.id);
|
|
|
+ });
|
|
|
+ return ids.join(",");
|
|
|
+ },
|
|
|
+ permissionListShip() {
|
|
|
+ return {
|
|
|
+ addBtn: this.vaildData(this.permission.ship_add, false),
|
|
|
+ viewBtn: this.vaildData(this.permission.ship_view, false),
|
|
|
+ delBtn: this.vaildData(this.permission.ship_delete, false),
|
|
|
+ editBtn: this.vaildData(this.permission.ship_edit, false)
|
|
|
+ };
|
|
|
+ },
|
|
|
+ idsShip() {
|
|
|
+ let ids = [];
|
|
|
+ this.selectionList.forEach(ele => {
|
|
|
+ ids.push(ele.id);
|
|
|
+ });
|
|
|
+ return ids.join(",");
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ rowClick(row, column, event){
|
|
|
+ this.yardId = row.id;
|
|
|
+ this.yardName = row.name;
|
|
|
+ this.onLoadShip(this.pageShip)
|
|
|
+ },
|
|
|
+ rowSave(row, done, loading) {
|
|
|
+ add(row).then(() => {
|
|
|
+ this.onLoad(this.page);
|
|
|
+ this.$message({
|
|
|
+ type: "success",
|
|
|
+ message: "操作成功!"
|
|
|
+ });
|
|
|
+ done();
|
|
|
+ }, error => {
|
|
|
+ loading();
|
|
|
+ window.console.log(error);
|
|
|
+ });
|
|
|
+ },
|
|
|
+ rowUpdate(row, index, done, loading) {
|
|
|
+ update(row).then(() => {
|
|
|
+ this.onLoad(this.page);
|
|
|
+ this.$message({
|
|
|
+ type: "success",
|
|
|
+ message: "操作成功!"
|
|
|
+ });
|
|
|
+ done();
|
|
|
+ }, error => {
|
|
|
+ loading();
|
|
|
+ console.log(error);
|
|
|
+ });
|
|
|
+ },
|
|
|
+ rowDel(row) {
|
|
|
+ this.$confirm("确定将选择数据删除?", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning"
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ return remove(row.id);
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ this.onLoad(this.page);
|
|
|
+ this.$message({
|
|
|
+ type: "success",
|
|
|
+ message: "操作成功!"
|
|
|
+ });
|
|
|
+ });
|
|
|
+ },
|
|
|
+ handleDelete() {
|
|
|
+ if (this.selectionList.length === 0) {
|
|
|
+ this.$message.warning("请选择至少一条数据");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ this.$confirm("确定将选择数据删除?", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning"
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ return remove(this.ids);
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ this.onLoad(this.page);
|
|
|
+ this.$message({
|
|
|
+ type: "success",
|
|
|
+ message: "操作成功!"
|
|
|
+ });
|
|
|
+ this.$refs.crud.toggleSelection();
|
|
|
+ });
|
|
|
+ },
|
|
|
+ beforeOpen(done, type) {
|
|
|
+ if (["edit", "view"].includes(type)) {
|
|
|
+ getDetail(this.form.id).then(res => {
|
|
|
+ this.form = res.data.data;
|
|
|
+ });
|
|
|
+ }
|
|
|
+ done();
|
|
|
+ },
|
|
|
+ searchReset() {
|
|
|
+ this.query = {};
|
|
|
+ this.onLoad(this.page);
|
|
|
+ },
|
|
|
+ searchChange(params, done) {
|
|
|
+ this.query = params;
|
|
|
+ this.page.currentPage = 1;
|
|
|
+ this.onLoad(this.page, params);
|
|
|
+ done();
|
|
|
+ },
|
|
|
+ selectionChange(list) {
|
|
|
+ this.selectionList = list;
|
|
|
+ },
|
|
|
+ selectionClear() {
|
|
|
+ this.selectionList = [];
|
|
|
+ this.$refs.crud.toggleSelection();
|
|
|
+ },
|
|
|
+ currentChange(currentPage){
|
|
|
+ this.page.currentPage = currentPage;
|
|
|
+ },
|
|
|
+ sizeChange(pageSize){
|
|
|
+ this.page.pageSize = pageSize;
|
|
|
+ },
|
|
|
+ refreshChange() {
|
|
|
+ this.onLoad(this.page, this.query);
|
|
|
+ },
|
|
|
+ onLoad(page, params = {}) {
|
|
|
+ this.loading = true;
|
|
|
+ getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
|
|
|
+ const data = res.data.data;
|
|
|
+ this.page.total = data.total;
|
|
|
+ this.data = data.records;
|
|
|
+
|
|
|
+ if (this.data.length > 0){
|
|
|
+ this.yardId = this.data[0].id;
|
|
|
+ this.yardName = this.data[0].name;
|
|
|
+ this.onLoadShip(this.pageShip)
|
|
|
+ }
|
|
|
+
|
|
|
+ this.loading = false;
|
|
|
+ this.selectionClear();
|
|
|
+ });
|
|
|
+ },
|
|
|
+
|
|
|
+ //*********************** 右组件 ***************************************//
|
|
|
+
|
|
|
+ rowSaveShip(row, done, loading) {
|
|
|
+ row.yardId = this.yardId;
|
|
|
+ addShip(row).then(() => {
|
|
|
+ this.onLoadShip(this.pageShip);
|
|
|
+ this.$message({
|
|
|
+ type: "success",
|
|
|
+ message: "操作成功!"
|
|
|
+ });
|
|
|
+ done();
|
|
|
+ }, error => {
|
|
|
+ loading();
|
|
|
+ window.console.log(error);
|
|
|
+ });
|
|
|
+ },
|
|
|
+ rowUpdateShip(row, index, done, loading) {
|
|
|
+ row.yardId = this.yardId;
|
|
|
+ updateShip(row).then(() => {
|
|
|
+ this.onLoadShip(this.pageShip);
|
|
|
+ this.$message({
|
|
|
+ type: "success",
|
|
|
+ message: "操作成功!"
|
|
|
+ });
|
|
|
+ done();
|
|
|
+ }, error => {
|
|
|
+ loading();
|
|
|
+ console.log(error);
|
|
|
+ });
|
|
|
+ },
|
|
|
+ rowDelShip(row) {
|
|
|
+ this.$confirm("确定将选择数据删除?", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning"
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ return removeShip(row.id);
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ this.onLoadShip(this.pageShip);
|
|
|
+ this.$message({
|
|
|
+ type: "success",
|
|
|
+ message: "操作成功!"
|
|
|
+ });
|
|
|
+ });
|
|
|
+ },
|
|
|
+ handleDeleteShip() {
|
|
|
+ if (this.selectionList.length === 0) {
|
|
|
+ this.$message.warning("请选择至少一条数据");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ this.$confirm("确定将选择数据删除?", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning"
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ return removeShip(this.ids);
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ this.onLoadShip(this.page);
|
|
|
+ this.$message({
|
|
|
+ type: "success",
|
|
|
+ message: "操作成功!"
|
|
|
+ });
|
|
|
+ this.$refs.crudShip.toggleSelection();
|
|
|
+ });
|
|
|
+ },
|
|
|
+ beforeOpenShip(done, type) {
|
|
|
+ if (type == 'add'){
|
|
|
+ this.optionShip.addTitle = "新增【" + this.yardName + "】";
|
|
|
+ }
|
|
|
+ if (type == 'edit'){
|
|
|
+ this.optionShip.editTitle = "编辑【" + this.yardName + "】";
|
|
|
+ }
|
|
|
+
|
|
|
+ if (["edit", "view"].includes(type)) {
|
|
|
+ getDetailShip(this.formShip.id).then(res => {
|
|
|
+ this.formShip = res.data.data;
|
|
|
+ });
|
|
|
+ }
|
|
|
+ done();
|
|
|
+ },
|
|
|
+ searchResetShip() {
|
|
|
+ this.queryShip = {};
|
|
|
+ this.onLoadShip(this.pageShip);
|
|
|
+ },
|
|
|
+ searchChangeShip(params, done) {
|
|
|
+ this.queryShip = params;
|
|
|
+ this.pageShip.currentPage = 1;
|
|
|
+ this.onLoadShip(this.pageShip, params);
|
|
|
+ done();
|
|
|
+ },
|
|
|
+ selectionChangeShip(list) {
|
|
|
+ this.selectionListShip = list;
|
|
|
+ },
|
|
|
+ selectionClearShip() {
|
|
|
+ this.selectionListShip = [];
|
|
|
+ this.$refs.crudShip.toggleSelection();
|
|
|
+ },
|
|
|
+ currentChangeShip(currentPage){
|
|
|
+ this.pageShip.currentPage = currentPage;
|
|
|
+ },
|
|
|
+ sizeChangeShip(pageSize){
|
|
|
+ this.pageShip.pageSize = pageSize;
|
|
|
+ },
|
|
|
+ refreshChangeShip() {
|
|
|
+ this.onLoadShip(this.pageShip, this.queryShip);
|
|
|
+ },
|
|
|
+ onLoadShip(page, params = {}) {
|
|
|
+ this.loadingShip = true;
|
|
|
+ params.yardId = this.yardId;
|
|
|
+ getListShip(page.currentPage, page.pageSize, Object.assign(params, this.queryShip)).then(res => {
|
|
|
+ const data = res.data.data;
|
|
|
+ this.pageShip.total = data.total;
|
|
|
+ this.dataShip = data.records;
|
|
|
+ this.loadingShip = false;
|
|
|
+ this.selectionClearShip();
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+ };
|
|
|
+</script>
|
|
|
+
|
|
|
+<style>
|
|
|
+</style>
|