| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598 |
- <template>
- <div class="full-container-p24">
- <div style="display: flex; justify-content: space-between">
- <div class="df aic">
- <div
- @click="changeVoyageType(1)"
- :class="
- currentbtn == 1
- ? 'currentbtn radio-btns left-radius'
- : 'radio-btns left-radius'
- "
- >
- 装货中
- </div>
- <div
- style="border-left: none"
- @click="changeVoyageType(2)"
- :class="currentbtn == 2 ? 'currentbtn radio-btns' : 'radio-btns'"
- >
- 运输中
- </div>
- <div
- style="border-left: none"
- @click="changeVoyageType(3)"
- :class="currentbtn == 3 ? 'currentbtn radio-btns' : 'radio-btns'"
- >
- 卸货中
- </div>
- <div
- style="border-left: none"
- @click="changeVoyageType(4)"
- :class="currentbtn == 4 ? 'currentbtn radio-btns' : 'radio-btns'"
- >
- 未签单
- </div>
- <div
- @click="changeVoyageType(5)"
- :class="
- currentbtn == 5
- ? 'currentbtn radio-btns right-radius'
- : 'radio-btns right-radius '
- "
- style="margin-right: 40px; border-left: none"
- >
- 历史航次
- </div>
- <el-input
- placeholder="请输入货主名称/船名/MMSi"
- prefix-icon="el-icon-search"
- v-model="term"
- clearable
- style="width: 330px"
- ></el-input>
- <div class="search-btn" @click="getVoyageList()">查询</div>
- </div>
- <div class="cargo-owner-add" @click="voyageAddDialogVisible = true">
- 添加航次
- </div>
- </div>
- <el-dialog v-model="voyageAddDialogVisible" title="添加航次">
- <el-form
- :rules="rules"
- label-position="right"
- label-width="80px"
- ref="addVoyageForm"
- :model="voyageForm"
- :before-close="resetAddVoyageForm"
- >
- <div class="df ffw">
- <!-- <el-form-item prop="voyageName" label="航次名称">
- <el-input v-model="voyageForm.voyageName"></el-input>
- </el-form-item>
- <el-form-item label=""></el-form-item> -->
- <el-form-item prop="shipName" label="船舶">
- <!-- <el-input v-model="voyageForm.shipOwnerId"></el-input> -->
- <el-autocomplete
- v-model="voyageForm.shipName"
- :fetch-suggestions="searchShip"
- placeholder="选择船舶"
- @select="selectShip"
- />
- </el-form-item>
- <el-form-item prop="cargoOwnerId" label="货主">
- <el-autocomplete
- v-model="voyageForm.cargoOwnerName"
- :fetch-suggestions="searchCargoOwner"
- placeholder="选择货主"
- @select="selectCargoOwner"
- />
- </el-form-item>
- <el-form-item prop="startTime" label="开始时间">
- <el-date-picker
- v-model="voyageForm.startTime"
- type="date"
- value-format="YYYY/MM/DD"
- placeholder="航次开始时间"
- ></el-date-picker>
- </el-form-item>
- <el-form-item prop="endTime" label="结束时间">
- <el-date-picker
- v-model="voyageForm.endTime"
- type="date"
- value-format="YYYY/MM/DD"
- placeholder="航次结束时间"
- disabled
- ></el-date-picker>
- </el-form-item>
- <el-form-item prop="loadPort" label="装货港">
- <!-- <el-input v-model="voyageForm.loadPort"></el-input> -->
- <el-autocomplete
- v-model="voyageForm.loadPort"
- :fetch-suggestions="searchLoadPort"
- placeholder="选择装货港"
- @select="selectLoadPort"
- />
- </el-form-item>
- <el-form-item prop="dischargeProt" label="卸货港">
- <!-- <el-input v-model="voyageForm.dischargeProt"></el-input> -->
- <el-autocomplete
- v-model="voyageForm.dischargeProt"
- :fetch-suggestions="searchDischargeProt"
- placeholder="选择卸货港"
- @select="selectDischargeProt"
- />
- </el-form-item>
- <el-form-item prop="cargo" label="货种">
- <el-input v-model="voyageForm.cargo"></el-input>
- </el-form-item>
- <el-form-item prop="tons" label="吨位">
- <el-input v-model="voyageForm.tons"></el-input>
- </el-form-item>
- </div>
- </el-form>
- <template #footer>
- <span class="dialog-footer">
- <el-button @click="resetAddVoyageForm">取消</el-button>
- <el-button type="primary" @click="addVoyage">确定</el-button>
- </span>
- </template>
- </el-dialog>
- <el-table :data="tableData" stripe style="width: 100%; margin-top: 24px">
- <el-table-column
- type="index"
- label="序号"
- min-width="80"
- align="center"
- ></el-table-column>
- <el-table-column
- prop="voyageName"
- label="航次名称"
- min-width="120"
- align="center"
- ></el-table-column>
- <el-table-column
- prop="loadDiscPort"
- label="装货港-卸货港"
- min-width="200"
- align="center"
- ></el-table-column>
- <el-table-column
- prop="setSailTime"
- label="开航时间"
- min-width="180"
- align="center"
- ></el-table-column>
- <el-table-column
- prop="todayPhotoCount"
- label="今日照片"
- min-width="80"
- align="center"
- ></el-table-column>
- <el-table-column
- prop="cargo"
- label="货种"
- min-width="80"
- align="center"
- ></el-table-column>
- <el-table-column
- prop="tons"
- label="吨位(吨)"
- min-width="80"
- align="center"
- ></el-table-column>
- <el-table-column
- prop="transStatus"
- label="船舶状态"
- min-width="100"
- align="center"
- ></el-table-column>
- <el-table-column
- prop="remark"
- label="备注"
- min-width="100"
- align="center"
- ></el-table-column>
- <el-table-column label="操作" min-width="80" align="center">
- <template v-slot="scope">
- <el-button
- @click="voyageDetail(scope.row.id, tableData)"
- type="text"
- size="small"
- >
- 查看详情
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- <div style="width: 100%; text-align: right; margin-top: 43px">
- <el-pagination
- background
- layout="prev, pager, next"
- :total="total"
- @current-change="pageChange"
- ></el-pagination>
- </div>
- </div>
- </template>
- <script>
- 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";
- export default {
- setup() {
- let currentbtn = ref(true);
- let currentPage = ref(1);
- let term = ref();
- let tableData = ref();
- let total = ref();
- let status = ref(1);
- async function getVoyageList() {
- tableData.value = [];
- let res = await api.getVoyageList({
- cargoOwnerId: 0,
- shipId: 0,
- status: status.value,
- term: term.value,
- currentPage: currentPage.value,
- size: 10,
- });
- term.value = "";
- if (res.data.status == 0) {
- tableData.value = res.data.result;
- } else {
- ElNotification({
- type: "error",
- title: res.data.msg,
- });
- }
- }
- function changeVoyageType(s) {
- term.value = "";
- currentPage.value = 1;
- currentbtn.value = s;
- status.value = s;
- getVoyageList();
- }
- async function voyageDetail(id) {
- router.push({
- path: "/voyage/voyageDetail",
- query: {
- id,
- },
- });
- }
- function pageChange(e) {
- currentPage.value = e;
- getVoyageList();
- }
- function goToVoyageAdd() {
- router.push({
- path: "/voyage/voyageAdd",
- });
- }
- let voyageAddDialogVisible = ref(false);
- const rules = reactive({
- rules: {
- voyageName: [
- { required: false, message: "请填写航次名称", trigger: "blur" },
- ],
- shipName: [{ required: true, message: "请选择船舶", trigger: "blur" }],
- cargoOwnerId: [
- { required: true, message: "请选择货主", trigger: "blur" },
- ],
- startTime: [
- { required: true, message: "请填写开始时间", trigger: "blur" },
- ],
- loadPort: [
- { required: true, message: "请填写装货港", trigger: "blur" },
- ],
- dischargeProt: [
- { required: true, message: "请填写卸货港", trigger: "blur" },
- ],
- cargo: [{ required: true, message: "请填写货种", trigger: "blur" }],
- tons: [{ required: true, message: "请填写吨位", trigger: "blur" }],
- // -----------
- shipOwnerName: [
- { required: true, message: "请选择船东", trigger: "blur" },
- ],
- cargoOwnerName: [
- { required: true, message: "请选择货主", trigger: "blur" },
- ],
- },
- });
- let voyageForm = reactive({
- voyageForm: {
- voyageName: "",
- cargoOwnerId: "",
- startTime: "",
- endTime: "",
- loadPort: "",
- dischargeProt: "",
- cargo: "",
- tons: "",
- // -----
- shipOwnerName: "",
- cargoOwnerName: "",
- },
- });
- let addVoyageForm = ref(null);
- async function addVoyage() {
- console.log("提交", voyageForm.voyageForm);
- return;
- addVoyageForm.value.validate(async (valid) => {
- if (valid) {
- // console.log("提交", voyageForm.voyageForm);
- let res = await api.addVoyage({
- ...voyageForm.voyageForm,
- });
- if (res.data.status == 0) {
- ElNotification({
- title: res.data.msg,
- type: "success",
- });
- resetAddVoyageForm();
- getVoyageList();
- } else {
- console.log(res);
- ElNotification({
- title: res.data.msg,
- type: "error",
- });
- }
- }
- });
- }
- async function searchShip(queryString, cb) {
- if (!queryString) return;
- let res = await api.searchShip({
- term: queryString,
- });
- let ships = [];
- if (res.data.status == 0) {
- ships = res.data.result;
- for (let i of ships) {
- i.value = `${i.shipName}`;
- }
- cb(ships);
- }
- }
- const selectShip = (item) => {
- voyageForm.voyageForm.shipOwnerId = item.shipOwnerId;
- voyageForm.voyageForm.shipId = item.shipId;
- };
- async function searchCargoOwner(queryString, cb) {
- if (!queryString) return;
- let res = await api.searchUser({
- term: queryString,
- identity: 2,
- });
- let cargoOwners = [];
- if (res.data.status == 0) {
- cargoOwners = res.data.result;
- for (let i of cargoOwners) {
- i.value = `${i.userName}`;
- }
- cb(cargoOwners);
- }
- }
- const selectCargoOwner = (item) => {
- voyageForm.voyageForm.cargoOwnerId = item.userId;
- };
- async function searchLoadPort(queryString, cb) {
- if (!queryString) return;
- let res = await api.getCol({
- term: queryString,
- });
- if (res.data.status == 0) {
- cb(res.data.result);
- }
- }
- const selectLoadPort = (item) => {
- voyageForm.voyageForm.loadPort = item.value;
- };
- async function searchDischargeProt(queryString, cb) {
- if (!queryString) return;
- let res = await api.getCol({
- term: queryString,
- });
- if (res.data.status == 0) {
- cb(res.data.result);
- }
- }
- const selectDischargeProt = (item) => {
- voyageForm.voyageForm.dischargeProt = item.value;
- };
- function resetAddVoyageForm() {
- voyageAddDialogVisible.value = false;
- voyageForm.voyageForm.shipOwnerName = "";
- voyageForm.voyageForm.cargoOwnerName = "";
- addVoyageForm.value.resetFields();
- }
- getVoyageList();
- onMounted(() => {});
- return {
- currentPage,
- term,
- tableData,
- total,
- currentbtn,
- changeVoyageType,
- getVoyageList,
- voyageDetail,
- pageChange,
- goToVoyageAdd,
- addVoyage,
- voyageAddDialogVisible,
- addVoyageForm,
- ...toRefs(rules),
- ...toRefs(voyageForm),
- searchShip,
- selectShip,
- searchCargoOwner,
- selectCargoOwner,
- resetAddVoyageForm,
- searchLoadPort,
- selectLoadPort,
- searchDischargeProt,
- selectDischargeProt,
- };
- },
- };
- </script>
- <style scoped>
- .search-btn {
- display: inline-block;
- width: 60px;
- height: 32px;
- background: #0094fe;
- border-radius: 2px;
- font-size: 14px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #ffffff;
- text-align: center;
- line-height: 32px;
- 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;
- }
- .normal-label {
- font-size: 14px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #353a42;
- margin-right: 10px;
- }
- .show-input {
- width: 280px;
- height: 32px;
- background: #ffffff;
- border-radius: 2px;
- border: 1px solid #dee0e3;
- font-size: 14px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #333333;
- line-height: 32px;
- padding-left: 12px;
- margin-right: 40px;
- }
- .radio-btns {
- height: 38px;
- width: 103px;
- border: 1px solid #1486f9;
- line-height: 38px;
- text-align: center;
- font-size: 14px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #0094fe;
- cursor: pointer;
- }
- .left-radius {
- border-top-left-radius: 19px;
- border-bottom-left-radius: 19px;
- }
- .right-radius {
- border-top-right-radius: 19px;
- border-bottom-right-radius: 19px;
- }
- .currentbtn {
- background: #1486f9;
- color: #fff;
- }
- .search-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;
- }
- .voyage-add {
- width: 80px;
- height: 36px;
- border-radius: 2px;
- border: 1px solid #0094fe;
- font-size: 14px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #0094fe;
- line-height: 36px;
- text-align: center;
- cursor: pointer;
- }
- :deep() .el-dialog {
- width: 800px;
- }
- :deep() .el-form-item {
- margin-right: 22px;
- width: 300px;
- }
- :deep() .el-autocomplete {
- width: 220px;
- }
- </style>
|