Parcourir la source

新增 船东列表;船东详情

wangzhihui il y a 4 ans
Parent
commit
5d936a84ac

+ 23 - 4
src/views/shipOwnerManage/shipOwnerDetail.vue

@@ -1,9 +1,28 @@
-<template>shipOwnerDetail</template>
+<template>
+  <div class="line-container-p24">
+    <el-card style="width: 500px">
+      <template v-slot:header>
+        <span>船东信息</span>
+      </template>
+    </el-card>
+  </div>
+  <div class="line-container-p24">
+    <el-card style="width: 500px">
+      <template v-slot:header>
+        <span>船舶信息</span>
+      </template>
+    </el-card>
+  </div>
+</template>
 <script>
+import { ref, h, reactive, toRefs, onMounted } from "vue";
+import { Notification, Msgbox, Message } from "element3";
+import store from "../../store";
+import router from "../../router";
+import md5 from "md5";
+import api from "../../apis/fetch";
 export default {
-  setup() {
-    return {};
-  },
+  setup() {},
 };
 </script>
 <style scoped></style>

+ 155 - 3
src/views/shipOwnerManage/shipOwnerList.vue

@@ -1,9 +1,161 @@
-<template>shipOwnerList</template>
+<template>
+  <div class="full-container">
+    <div style="display: flex; justify-content: space-between">
+      <div style="display: flex">
+        <el-input
+          placeholder="请输入船东/手机号"
+          prefix-icon="el-icon-search"
+          v-model="term"
+          style="height: 32px; width: 330px; line-height: 32px"
+        ></el-input>
+        <div class="seach-btn" @click="getShipOwnerList">查询</div>
+      </div>
+    </div>
+    <div style="margin-top: 24px">
+      <el-table :data="tableData" stripe style="width: 100%">
+        <el-table-column
+          type="index"
+          label="序号"
+          min-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="userPhone"
+          label="手机号"
+          min-width="160"
+          align="center"
+        ></el-table-column>
+        <el-table-column
+          prop="createTime"
+          label="入驻时间"
+          min-width="200"
+          align="center"
+        ></el-table-column>
+        <el-table-column label="操作" min-width="80" align="center">
+          <template v-slot="scope">
+            <el-button
+              @click="shipOwnerDetail(scope.row.userId, 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>
+  </div>
+</template>
 <script>
+import { ref, h, reactive, toRefs, onMounted } from "vue";
+import { Notification, Msgbox, Message } from "element3";
+import store from "../../store";
+import router from "../../router";
+import md5 from "md5";
+import api from "../../apis/fetch";
+
 export default {
   setup() {
-    return {};
+    let currentPage = ref(1);
+    let term = ref();
+    let tableData = ref();
+    let total = ref();
+    async function getShipOwnerList() {
+      let res = await api.getUserList({
+        identity: 1,
+        currentPage: currentPage.value,
+        size: 10,
+        term: term.value,
+      });
+      if (res.data.status == 0) {
+        tableData.value = res.data.result;
+        total.value = res.data.total;
+      }
+    }
+
+    async function shipOwnerDetail(userId) {
+      router.push({
+        path: "/shipOwnerManage/shipOwnerDetail",
+        query: {
+          userId,
+        },
+      });
+    }
+    function pageChange(e) {
+      currentPage.value = e;
+      getShipOwnerList();
+    }
+    onMounted(() => {});
+    return {
+      currentPage,
+      term,
+      tableData,
+      total,
+      getShipOwnerList,
+      shipOwnerDetail,
+      pageChange,
+    };
   },
 };
 </script>
-<style scoped></style>
+<style scoped>
+.seach-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-input__icon {
+  line-height: 100% !important;
+}
+
+: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>