| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260 |
- <template>
- <div class="full-container-p24">
- <div style="display: flex; justify-content: space-between">
- <div style="display: flex">
- <el-input
- placeholder="请输入船员/手机号"
- prefix-icon="el-icon-search"
- v-model="term"
- clearable
- class="mr30"
- style="width: 300px"
- ></el-input>
- <el-button type="primary" @click="getShipOwnerList(1)">查询</el-button>
- </div>
- <el-button
- type="primary"
- @click="router.push('/shipOwnerManage/shipOwnerDetail')"
- >
- 添加船员
- </el-button>
- <el-dialog title="添加船员" v-model="dialogFormVisible">
- <template v-slot:default>
- <el-form
- :model="ruleForm"
- :rules="rules"
- ref="form"
- label-width="110px"
- label-position="left"
- >
- <el-form-item prop="userName" label="船员姓名">
- <el-input
- style="width: 280px"
- v-model="ruleForm.userName"
- ></el-input>
- </el-form-item>
- <el-form-item prop="phone" label="手机号">
- <el-input
- style="width: 280px"
- v-model="ruleForm.phone"
- ></el-input>
- </el-form-item>
- <el-form-item prop="shipname" label="船名">
- <el-input
- style="width: 280px"
- v-model="ruleForm.shipname"
- ></el-input>
- </el-form-item>
- <el-form-item prop="mmsi" label="MMSI">
- <el-input style="width: 280px" v-model="ruleForm.mmsi"></el-input>
- </el-form-item>
- </el-form>
- </template>
- <template v-slot:footer>
- <div class="dialog-footer">
- <el-button @click="resetForm">取 消</el-button>
- <el-button type="primary" @click="addShipOwner(ruleForm)">
- 确 定
- </el-button>
- </div>
- </template>
- </el-dialog>
- </div>
- <div style="margin-top: 24px">
- <el-table border :data="tableData" stripe style="width: 100%">
- <el-table-column
- type="index"
- label="序号"
- width="80"
- align="center"
- ></el-table-column>
- <el-table-column
- prop="userName"
- label="船员名称"
- min-width="120"
- align="center"
- ></el-table-column>
- <el-table-column
- prop="phone"
- label="手机号"
- min-width="120"
- align="center"
- ></el-table-column>
- <el-table-column
- prop="createTime"
- label="创建时间"
- min-width="120"
- align="center"
- >
- <template v-slot="scope">
- {{ subTimeStr(scope.row.createTime) }}
- </template>
- </el-table-column>
- <el-table-column label="操作" min-width="80" align="center">
- <template v-slot="scope">
- <el-button
- @click="shipOwnerDetail(scope.row.id)"
- type="primary"
- text
- size="small"
- >
- 查看详情
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- <div class="df aic jcfe mt40 mr20">
- <el-pagination
- background
- layout="prev, pager, next"
- :current-page="currentPage"
- :total="total"
- @current-change="pageChange"
- ></el-pagination>
- </div>
- </div>
- </div>
- </template>
- <script setup>
- import { ref, h, reactive, toRefs, onMounted } from "vue";
- import { ElNotification, ElMessageBox, ElMessage } from "element-plus";
- import store from "../../store";
- import router from "../../router";
- import md5 from "md5";
- import api from "../../apis/fetch";
- import { subTimeStr } from "../../utils/utils";
- let dialogFormVisible = ref(false);
- let form = ref(null);
- let ruleForm = ref({
- userName: "",
- phone: "",
- shipname: "",
- mmsi: "",
- });
- async function resetForm() {
- dialogFormVisible.value = false;
- form.value.resetFields();
- }
- const rules = ref({
- userName: [{ required: true, message: "请填写船员名称", trigger: "blur" }],
- shipname: [{ required: true, message: "请填写船名", trigger: "blur" }],
- mmsi: [{ required: true, message: "请填写MMSI", trigger: "blur" }],
- phone: [
- { required: true, message: "请填写手机号", trigger: "blur" },
- { min: 11, max: 11, message: "请正确填写手机号", trigger: "blur" },
- ],
- });
- async function addShipOwner() {
- form.value.validate(async (valid) => {
- if (valid) {
- let { userName, shipname, mmsi, phone } = ruleForm.value;
- let res = await api.addShipOwner({
- userName,
- shipname,
- mmsi,
- phone,
- });
- console.log(res);
- if (res.data.status == 0) {
- ElNotification.success({
- title: "添加成功",
- duration: 0,
- message: `${userName}:${res.data.msg}`,
- type: "success",
- });
- resetForm();
- getShipOwnerList();
- } else {
- ElNotification.error({
- title: "失败",
- duration: 3000,
- message: res.data.msg,
- });
- }
- } else {
- return false;
- }
- });
- }
- let currentPage = ref(1);
- let term = ref("");
- let tableData = ref([]);
- let total = ref(0);
- async function getShipOwnerList(page) {
- currentPage.value = page || currentPage.value;
- let res = await api.getShipOwnerList({
- currentPage: currentPage.value,
- size: 10,
- term: term.value,
- });
- if (res.data.status == 0) {
- tableData.value = res.data.result;
- total.value = res.data.total;
- } else {
- tableData.value = [];
- total.value = 0;
- }
- }
- async function shipOwnerDetail(shipOwnerId) {
- store.commit("addAlive", "shipOwnerList");
- router.push({
- path: "/shipOwnerManage/shipOwnerDetail",
- query: {
- shipOwnerId,
- },
- });
- }
- function pageChange(e) {
- currentPage.value = e;
- getShipOwnerList();
- }
- onMounted(() => {
- getShipOwnerList();
- });
- </script>
- <style scoped>
- .seach-btn {
- display: inline-block;
- width: 60px;
- height: 38px;
- background: #0094fe;
- border-radius: 2px;
- font-size: 14px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #ffffff;
- text-align: center;
- line-height: 38px;
- margin-left: 10px;
- cursor: pointer;
- }
- .cargo-owner-add {
- width: 80px;
- height: 32px;
- border-radius: 2px;
- border: 1px solid #0094fe;
- font-size: 14px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #0094fe;
- line-height: 32px;
- text-align: center;
- cursor: pointer;
- }
- :deep().el-dialog {
- width: 560px;
- padding: 20px 50px;
- border-radius: 6px;
- }
- :deep() .el-dialog__title {
- font-size: 18px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #0094fe;
- }
- </style>
|