| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911 |
- <template>
- <div class="line-container-p24">
- <div class="df jcsb aic">
- <div class="df aic">
- <div
- @click="changeVoyageType(0)"
- :class="
- status == 0
- ? 'currentbtn radio-btns left-radius'
- : 'radio-btns left-radius'
- "
- >
- 全部航次
- </div>
- <div
- style="border-left: none"
- @click="changeVoyageType(1)"
- :class="status == 1 ? 'currentbtn radio-btns' : 'radio-btns'"
- >
- 装货中
- </div>
- <div
- style="border-left: none"
- @click="changeVoyageType(2)"
- :class="status == 2 ? 'currentbtn radio-btns' : 'radio-btns'"
- >
- 运输中
- </div>
- <div
- style="border-left: none"
- @click="changeVoyageType(3)"
- :class="status == 3 ? 'currentbtn radio-btns' : 'radio-btns'"
- >
- 卸货中
- </div>
- <div
- @click="changeVoyageType(4)"
- :class="
- status == 4
- ? 'currentbtn radio-btns right-radius'
- : 'radio-btns right-radius '
- "
- style="margin-right: 40px; border-left: none"
- >
- 历史航次
- </div>
- <!-- <div style="color: #333; margin-right: 10px; font-size: 14px">
- 预计到港时间:
- </div>
- <el-radio-group v-model="sortradio">
- <el-radio :label="-1">默认排序</el-radio>
- <el-radio :label="0">降序</el-radio>
- <el-radio :label="1">升序</el-radio>
- </el-radio-group> -->
- <el-input
- placeholder="请输入船名/MMSI"
- prefix-icon="el-icon-search"
- v-model="term"
- clearable
- style="width: 240px"
- @keyup.enter.native="getVoyageList()"
- ></el-input>
- <div class="search-btn" @click="getVoyageList()">查询</div>
- </div>
- <!-- <div class="cargo-owner-add" @click="voyageAddDialogVisible = true">
- 添加航次
- </div> -->
- <div>
- <el-button
- type="primary"
- size="small"
- @click="showExportModal('航次列表')"
- >导出航次列表</el-button
- >
- <el-button
- type="primary"
- size="small"
- v-auth="'MULTDOWNLOADSHIPTRACK'"
- @click="showExportModal('航次跟踪')"
- >导出航次跟踪</el-button
- >
- <el-button
- type="primary"
- size="small"
- @click="showExportModal('卸货记录')"
- v-auth="'MULTDOWNLOADDISCHARGE'"
- >导出卸货记录</el-button
- >
- <el-button
- v-auth="'DOWNLOADFYDI'"
- type="primary"
- size="small"
- @click="downloadFYDI"
- >下载FYDI指数</el-button
- >
- </div>
- </div>
- <el-dialog
- v-model="exportModalVisable"
- :title="exportModalTitle"
- width="200px"
- >
- <div class="df aic jcsb">
- <div class="df aic">
- <div class="mr20">请选择月份:</div>
- <el-date-picker
- v-model="currentMonth"
- type="month"
- placeholder="请选择年月"
- value-format="YYYYMM"
- :disabled="isLoadingZip"
- />
- </div>
- <el-button type="primary" @click="exportZip" :loading="isLoadingZip"
- >导出{{ exportModalTitle }}</el-button
- >
- </div>
- </el-dialog>
- <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="选择船舶"
- @blur="clear('shipId')"
- @select="selectShip"
- />
- </el-form-item>
- <el-form-item prop="cargoOwnerName" label="货主">
- <el-autocomplete
- v-model="voyageForm.cargoOwnerName"
- :fetch-suggestions="searchCargoOwner"
- @blur="clear('cargoOwnerId')"
- 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-autocomplete
- v-model="voyageForm.loadPort"
- :fetch-suggestions="getCol"
- @blur="clear('loadPort')"
- placeholder="选择装货港"
- @select="selectLoadPort"
- />
- </el-form-item>
- <el-form-item prop="dischargeProt" label="卸货港">
- <el-autocomplete
- v-model="voyageForm.dischargeProt"
- :fetch-suggestions="getCol"
- @blur="clear('dischargeProt')"
- 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"
- :row-style="rowStyle"
- >
- <!-- <el-table-column
- type="index"
- label="序号"
- min-width="80"
- align="center"
- ></el-table-column> -->
- <el-table-column
- prop="voyageName"
- label="航次名称"
- min-width="140"
- align="center"
- ></el-table-column>
- <el-table-column
- prop="loadDiscPort"
- label="装货港-卸货港"
- min-width="160"
- align="center"
- ></el-table-column>
- <!-- <el-table-column
- prop="setSailTime"
- label="开航时间"
- min-width="100"
- align="center"
- ></el-table-column> -->
- <el-table-column
- prop="expectedArrivalTime"
- label="预计到港时间"
- sortable
- min-width="100"
- align="center"
- >
- <template v-slot="scope">
- {{ scope.row.arrived ? "已到港" : scope.row.expectedArrivalTime }}
- </template>
- </el-table-column>
- <el-table-column
- prop="abnormalStatus"
- label="航次状态"
- min-width="80"
- align="center"
- >
- <template v-slot="scope">
- {{ scope.row.abnormalStatus == 0 ? "正常" : "异常" }}
- </template>
- </el-table-column>
- <el-table-column
- prop="daysInPort"
- label="在港天数"
- sortable
- min-width="70"
- align="center"
- ></el-table-column>
- <el-table-column
- prop="todayPhotoCount"
- label="今日照片"
- min-width="70"
- align="center"
- ></el-table-column>
- <el-table-column
- prop="cargo"
- label="货种"
- min-width="70"
- align="center"
- ></el-table-column>
- <el-table-column
- prop="actualLoadTons"
- label="装载吨位"
- min-width="80"
- align="center"
- ></el-table-column>
- <el-table-column
- prop="unloadedtons"
- label="已卸货吨位"
- min-width="80"
- align="center"
- ></el-table-column>
- <el-table-column
- prop="remainTons"
- label="剩余吨位"
- min-width="80"
- align="center"
- ></el-table-column>
- <!-- <el-table-column
- prop="waybillStatus"
- sortable
- label="签单状态"
- min-width="100"
- align="center"
- >
- <template v-slot="scope">
- {{
- scope.row.waybillStatus == 0
- ? ""
- : scope.row.waybillStatus == 1
- ? "未签单"
- : "已签单"
- }}
- </template>
- </el-table-column> -->
- <!-- <el-table-column
- prop="transStatus"
- label="船舶状态"
- min-width="100"
- align="center"
- ></el-table-column> -->
- <el-table-column
- prop="hasInsurance"
- label="保险状态"
- min-width="70"
- align="center"
- >
- <template v-slot="scope">
- {{ scope.row.hasInsurance == 0 ? "未购买" : "已购买" }}
- </template>
- </el-table-column>
- <!-- <el-table-column
- sortable
- prop="createTime"
- label="创建时间"
- min-width="100"
- align="center"
- >
- <template v-slot="scope">
- {{ subTimeStr(scope.row.createTime) }}
- </template>
- </el-table-column>
- <el-table-column
- prop="remark"
- label="备注"
- min-width="100"
- align="center"
- ></el-table-column> -->
- <el-table-column
- v-auth="'VOYAGEDETAIL'"
- label="操作"
- min-width="80"
- align="center"
- fixed="right"
- >
- <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 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 _ from "lodash";
- import { subTimeStr } from "../../utils/utils";
- import downloadBlobFile from "../../utils/downloadBlobFile";
- import url from "../../apis/config";
- let currentPage = ref(1);
- let term = ref("");
- let tableData = ref([]);
- let total = ref(0);
- let status = ref(0);
- async function getVoyageList() {
- tableData.value = [];
- let res = await api.getVoyageList({
- loginAccountId: localStorage.loginAccountId,
- cargoOwnerId: localStorage.userId,
- 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;
- total.value = res.data.total;
- } else {
- ElNotification({
- type: "error",
- title: res.data.msg,
- });
- }
- }
- function changeVoyageType(s) {
- term.value = "";
- currentPage.value = 1;
- 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" }],
- cargoOwnerName: [
- { 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" }],
- },
- });
- let voyageForm = reactive({
- voyageForm: {
- voyageName: "",
- cargoOwnerId: "",
- cargoOwnerName: "",
- startTime: "",
- endTime: "",
- loadPort: "",
- dischargeProt: "",
- cargo: "",
- tons: "",
- loadPortId: "",
- dischargeProtId: "",
- shipId: "",
- shipName: "",
- },
- });
- function clear(type) {
- setTimeout(() => {
- switch (type) {
- case "shipId": {
- let index = ref(-1);
- for (let i in shipsCache.value) {
- if (voyageForm.voyageForm.shipName == shipsCache.value[i].shipName) {
- index.value = i;
- break;
- }
- }
- if (index.value != -1) {
- voyageForm.voyageForm.shipId = shipsCache.value[index.value].shipId;
- } else {
- let b = shipsCache.value.some((item) => {
- return (
- item.shipId == voyageForm.voyageForm.shipId &&
- item.shipName == voyageForm.voyageForm.shipName
- );
- });
- voyageForm.voyageForm["shipId"] = "";
- voyageForm.voyageForm["shipName"] = "";
- }
- break;
- }
- case "cargoOwnerId": {
- let index = ref(-1);
- for (let i in cargoOwnersCache.value) {
- if (
- voyageForm.voyageForm.cargoOwnerName ==
- cargoOwnersCache.value[i].userName
- ) {
- index.value = i;
- break;
- }
- }
- if (index.value != -1) {
- voyageForm.voyageForm.cargoOwnerId =
- cargoOwnersCache.value[index.value].userId;
- } else {
- let b = cargoOwnersCache.value.some((item) => {
- return (
- item.userId == voyageForm.voyageForm.cargoOwnerId &&
- item.userName == voyageForm.voyageForm.cargoOwnerName
- );
- });
- if (!b) {
- voyageForm.voyageForm["cargoOwnerId"] = "";
- voyageForm.voyageForm["cargoOwnerName"] = "";
- }
- }
- break;
- }
- case "loadPort": {
- let index = ref(-1);
- for (let i in colCache.value) {
- if (voyageForm.voyageForm.loadPort == colCache.value[i].value) {
- index.value = i;
- break;
- }
- }
- if (index.value != -1) {
- voyageForm.voyageForm.loadPortId = colCache.value[index.value].key;
- } else {
- let b = colCache.value.some((item) => {
- return (
- item.value == voyageForm.voyageForm.loadPort &&
- item.key == voyageForm.voyageForm.loadPortId
- );
- });
- if (!b) {
- voyageForm.voyageForm["loadPort"] = "";
- voyageForm.voyageForm["loadPortId"] = "";
- }
- }
- break;
- }
- case "dischargeProt": {
- let index = ref(-1);
- for (let i in colCache.value) {
- if (voyageForm.voyageForm.dischargeProt == colCache.value[i].value) {
- index.value = i;
- break;
- }
- }
- if (index.value != -1) {
- voyageForm.voyageForm.dischargeProtId =
- colCache.value[index.value].key;
- } else {
- let b = colCache.value.some((item) => {
- return (
- item.value == voyageForm.voyageForm.dischargeProt &&
- item.key == voyageForm.voyageForm.dischargeProtId
- );
- });
- if (!b) {
- voyageForm.voyageForm["dischargeProt"] = "";
- voyageForm.voyageForm["dischargeProtId"] = "";
- }
- }
- break;
- }
- }
- }, 200);
- }
- let addVoyageForm = ref(null);
- async function addVoyage() {
- 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",
- });
- }
- } else {
- console.log("未提交", voyageForm.voyageForm);
- }
- });
- }
- let shipsCache = ref([]);
- let colCache = ref([]);
- let cargoOwnersCache = ref([]);
- const searchShip = _.debounce(
- async (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}`;
- }
- shipsCache.value = ships;
- cb(ships);
- }
- },
- 1000,
- { leading: true }
- );
- const selectShip = (item) => {
- voyageForm.voyageForm.shipId = item.shipId;
- };
- const searchCargoOwner = _.debounce(
- async (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}`;
- }
- cargoOwnersCache.value = cargoOwners;
- cb(cargoOwners);
- }
- },
- 1000,
- { leading: true }
- );
- const selectCargoOwner = (item) => {
- voyageForm.voyageForm.cargoOwnerId = item.userId;
- };
- const getCol = _.debounce(
- async (queryString, cb) => {
- if (!queryString) return;
- let res = await api.getCol({
- term: queryString,
- });
- if (res.data.status == 0) {
- colCache.value = [...colCache.value, ...res.data.result];
- colCache.value = _.uniqBy(colCache.value, "key");
- cb(res.data.result);
- }
- },
- 1000,
- { leading: true }
- );
- const selectLoadPort = (item) => {
- voyageForm.voyageForm.loadPortId = item.key;
- voyageForm.voyageForm.loadPort = item.value;
- };
- const selectDischargeProt = (item) => {
- voyageForm.voyageForm.dischargeProtId = item.key;
- voyageForm.voyageForm.dischargeProt = item.value;
- };
- function resetAddVoyageForm() {
- voyageAddDialogVisible.value = false;
- addVoyageForm.value.resetFields();
- }
- let sortradio = ref(0);
- async function downloadFYDI() {
- let res0 = await api.getFYFIDownloadUrl({
- loginAccountId: localStorage.loginAccountId,
- });
- let url = res0.data.result;
- let a = document.createElement("a");
- a.setAttribute("href", url);
- a.click();
- }
- let exportModalVisable = ref(false);
- let exportModalTitle = ref("");
- let currentMonth = ref("");
- function showExportModal(type) {
- exportModalVisable.value = true;
- exportModalTitle.value = type;
- }
- let isLoadingZip = ref(false);
- async function exportZip() {
- if (!currentMonth.value) return;
- isLoadingZip.value = true;
- let path = "";
- let type = "";
- switch (exportModalTitle.value) {
- case "航次列表": {
- path = "/voyage/exportListExcel";
- type =
- "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8";
- break;
- }
- case "航次跟踪": {
- path = "/voyage/exportMultExcel";
- type = "application/zip";
- break;
- }
- case "卸货记录": {
- path = "/voyage/exportMultDischargeExcel";
- type = "application/zip";
- break;
- }
- }
- let res = await downloadBlobFile(
- `${url.baseurl}${path}`,
- { loginAccountId: localStorage.loginAccountId, date: currentMonth.value },
- `${exportModalTitle.value}${currentMonth.value}`,
- "post",
- type
- );
- ElNotification({
- title: "导出成功!",
- type: "success",
- });
- isLoadingZip.value = false;
- currentMonth.value = "";
- exportModalVisable.value = false;
- }
- function rowStyle({ row }) {
- let rowStyle = {};
- if (row.daysInPort >= 30) {
- rowStyle.color = "red";
- return rowStyle;
- }
- }
- onMounted(() => {
- getVoyageList();
- });
- </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: 70px;
- 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;
- width: 80px;
- }
- .right-radius {
- border-top-right-radius: 19px;
- border-bottom-right-radius: 19px;
- width: 80px;
- }
- .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;
- }
- .el-radio {
- margin-right: 10px;
- }
- .el-radio:last-child {
- margin-right: 20px;
- }
- </style>
|