| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323 |
- <template>
- <div class="full-container-p24">
- <div class="df aic jcsb">
- <div class="df aic">
- <el-input
- placeholder="请输入货种/货主公司"
- prefix-icon="el-icon-search"
- v-model="term"
- clearable
- @clear="getCargoList(1)"
- style="height: 32px; width: 330px; line-height: 32px"
- ></el-input>
- <el-button
- @click="getCargoList(1)"
- type="primary"
- style="margin-left: 10px"
- >
- 查询
- </el-button>
- </div>
- <el-button type="primary" @click="bindModel = true">新增货种</el-button>
- </div>
- <div style="margin-top: 24px">
- <el-table :data="tableData" stripe style="width: 100%" border>
- <el-table-column
- type="index"
- label="序号"
- width="120"
- align="center"
- ></el-table-column>
- <el-table-column
- prop="cargoName"
- label="货种名称"
- min-width="120"
- align="center"
- ></el-table-column>
- <el-table-column label="操作" align="center">
- <template v-slot="scope">
- <el-button
- @click="checkCargoOwner(scope.row)"
- link
- type="primary"
- 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"
- :current-page="currentPage"
- :total="total"
- @current-change="pageChange"
- ></el-pagination>
- </div>
- </div>
- <el-dialog v-model="cargoOwnerModelVisible" style="width: 800px">
- <template #header="{ close, titleId, titleClass }">
- <div class="df jcsb" style="color: #409eff">
- <div>{{ currentCargo + " - 货主公司列表" }}</div>
- <el-button
- type="primary"
- @click="(bindModel = true), (ruleForm.cargoName = currentCargo)"
- >
- 新增绑定货主公司
- </el-button>
- </div>
- </template>
- <el-table :data="cargoOwnerInfos" border>
- <el-table-column
- type="index"
- label="序号"
- width="60"
- align="center"
- ></el-table-column>
- <el-table-column
- prop="cargoOwnerName"
- label="货主公司名称"
- min-width="120"
- align="center"
- ></el-table-column>
- <el-table-column
- prop="create_time"
- label="创建时间"
- width="180"
- align="center"
- ></el-table-column>
- <el-table-column label="启用/禁用" width="160" align="center">
- <template v-slot="scope">
- <el-switch
- v-model="scope.row.status"
- active-color="#13ce66"
- inactive-color="#ff4949"
- active-text="启用"
- inactive-text="禁用"
- :active-value="1"
- :inactive-value="0"
- @change="enableDisableCargoOwnerCompany($event, scope.row)"
- >
- >
- </el-switch>
- </template>
- </el-table-column>
- </el-table>
- </el-dialog>
- <el-dialog
- v-model="bindModel"
- :title="
- cargoOwnerModelVisible
- ? currentCargo + ' - 新增绑定货主公司'
- : '新增货种'
- "
- @close="
- ruleForm = {
- cargoName: '',
- cargoOwnerIds: [],
- }
- "
- >
- <el-form
- ref="ruleFormRef"
- :model="ruleForm"
- :rules="rules"
- label-width="120px"
- >
- <el-form-item label="货种名称" prop="cargoName">
- <el-input
- v-model="ruleForm.cargoName"
- :disabled="cargoOwnerModelVisible"
- ></el-input>
- </el-form-item>
- <el-form-item label="货主公司(多选)" prop="cargoOwnerIds">
- <el-select
- v-model="ruleForm.cargoOwnerIds"
- multiple
- style="width: 400px"
- >
- <el-option
- v-for="(item, index) in cargoOwnerModelVisible
- ? filterCargoOwnerOptions
- : cargoOwnerOptions"
- :key="index"
- :label="item.value"
- :value="item.key"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-form>
- <div class="df aic jcfe mt30 mr30">
- <el-button type="default" @click="bindModel = false">取消</el-button>
- <el-button type="primary" @click="submit()">确认</el-button>
- </div>
- </el-dialog>
- </div>
- </template>
- <script setup>
- import { ref, h, reactive, toRefs, onMounted, computed } 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";
- let currentPage = ref(1);
- let term = ref("");
- let tableData = ref([]);
- let total = ref(0);
- async function getCargoList(page) {
- currentPage.value = page || currentPage.value;
- let res = await api.getCargoList({
- 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 cargoDetail(cargoName) {
- console.log(cargoName);
- }
- function pageChange(e) {
- currentPage.value = e;
- getCargoList();
- }
- const cargoOwnerInfos = ref([]);
- const cargoOwnerModelVisible = ref(false);
- const currentCargo = ref("");
- function checkCargoOwner(row) {
- cargoOwnerModelVisible.value = true;
- currentCargo.value = row.cargoName;
- cargoOwnerInfos.value = row.cargoOwnerInfos;
- }
- async function enableDisableCargoOwnerCompany(status, row) {
- let { data } = await api.enableDisableCargoOwnerCompany({
- cargoId: row.cargoId,
- status,
- });
- if (data.status == 0) {
- ElMessage({
- message: data.msg,
- type: "success",
- });
- } else {
- ElMessage({
- message: data.msg,
- type: "error",
- });
- row.status = status === 1 ? 0 : 1;
- }
- }
- const bindModel = ref(false);
- const cargoOwnerOptions = ref([]);
- const filterCargoOwnerOptions = computed(() => {
- return cargoOwnerOptions.value.filter(
- (item) =>
- !cargoOwnerInfos.value.some((obj) => obj.cargoOwnerName === item.value)
- );
- });
- async function getCargoOwnerCompanySelect() {
- let { data } = await api.getCargoOwnerCompanySelect({});
- cargoOwnerOptions.value = data.result;
- }
- const ruleFormRef = ref(null);
- const ruleForm = ref({
- cargoName: "",
- cargoOwnerIds: [],
- });
- const rules = ref({
- cargoName: [{ required: true, message: "请输入货种名称", trigger: "blur" }],
- cargoOwnerIds: [
- { required: true, message: "请选择货主公司", trigger: "blur" },
- ],
- });
- function cancel() {}
- function submit() {
- ruleFormRef.value.validate(async (valid) => {
- if (valid) {
- let { data } = await api[
- cargoOwnerModelVisible.value ? "bindCargoOwnerCompany" : "addCargo"
- ]({
- cargoName: ruleForm.value.cargoName,
- cargoOwnerIds: ruleForm.value.cargoOwnerIds.join(","),
- });
- if (data.status == 0) {
- ElNotification({
- message: data.msg,
- type: "success",
- });
- bindModel.value = false;
- cargoOwnerModelVisible.value = false;
- } else {
- ElMessage({
- message: data.msg,
- type: "error",
- });
- }
- getCargoList();
- }
- });
- }
- onMounted(() => {
- getCargoList();
- getCargoOwnerCompanySelect();
- });
- </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>
|