| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463 |
- <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,
- // searchBtn: false,
- searchShow: true,
- searchMenuSpan: 6,
- searchSpan: 12,
- border: true,
- index: true,
- viewBtn: true,
- selection: true,
- dialogClickModal: false,
- align: "center",
- column: [
- /*{
- label: "船厂编号",
- prop: "code",
- search: true,
- rules: [{
- required: true,
- message: "请输入船厂编号",
- trigger: "blur"
- }]
- },*/
- {
- label: "船厂名称",
- prop: "name",
- search: true,
- 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,
- searchSpan: 12,
- border: true,
- index: true,
- viewBtn: true,
- selection: true,
- dialogClickModal: false,
- align: "center",
- column: [
- {
- label: "船只编号",
- prop: "code",
- rules: [{
- required: true,
- message: "请输入船只编号",
- trigger: "blur"
- }]
- },
- {
- label: "船只名称",
- prop: "name",
- search: true,
- 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>
|