| | |
| | | <template> |
| | | <div class="app-container"> |
| | | <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch"> |
| | | <el-form-item label="关键词" prop="keyword"> |
| | | <div style=" padding: 0 20px;"> |
| | | <el-row type="flex" justify="left" v-if="this.$store.state.user.roles.some(role => ['admin', 'zg_city', 'city_leader'].includes(role))"> |
| | | <el-col :span="24" style="position: relative"> |
| | | <el-menu :default-active="activeIndex" class="el-menu" mode="horizontal"> |
| | | <el-menu-item index="0" @click="changeUnit(null, '全部')"> |
| | | 全部单位({{ totalWorkOrders }}) |
| | | </el-menu-item> |
| | | <el-menu-item :index="index + 1 +''" v-for="(item, index) in unitList" :key="index" @click="changeUnit(item.id, item.value)"> |
| | | {{ item.unitName }}({{ item.workOrderCount }}) |
| | | </el-menu-item> |
| | | </el-menu> |
| | | </el-col> |
| | | </el-row> |
| | | |
| | | <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" style="margin-top: 10px;"> |
| | | <el-form-item label="关键字" prop="keyword"> |
| | | <el-input |
| | | v-model="queryParams.keyword" |
| | | placeholder="工单号/点位名称搜索" |
| | |
| | | @keyup.enter.native="handleQuery" |
| | | /> |
| | | </el-form-item> |
| | | <el-form-item label="故障类型" prop="errorTypeList"> |
| | | <el-select v-model="queryParams.errorTypeList" multiple @change="handleQuery" placeholder="故障类型" clearable @clear="handleQuery"> |
| | | <el-option v-for="dict in dict.type.error_type" :value="dict.value" :key="dict.value" :label="dict.label" /> |
| | | </el-select> |
| | | <el-form-item label="故障类型" prop="errorType"> |
| | | <!-- <el-select v-model="queryParams.errorTypeList" multiple @change="handleQuery" placeholder="故障类型" clearable>--> |
| | | <!-- <el-option v-for="dict in dict.type.error_type" :value="dict.value" :key="dict.value" :label="dict.label" />--> |
| | | <!-- </el-select>--> |
| | | <el-cascader |
| | | v-model="queryParams.errorType" |
| | | :options="errorTypeList" |
| | | :props="{ expandTrigger: 'hover',emitPath: false }" |
| | | :show-all-levels="false" |
| | | @change="handleQuery" |
| | | placeholder="故障类型" |
| | | clearable |
| | | ></el-cascader> |
| | | </el-form-item> |
| | | <el-form-item label="工单状态" prop="status"> |
| | | <el-select v-model="queryParams.status" placeholder="工单状态" @change="handleQuery"> |
| | | <el-select v-model="queryParams.status" placeholder="工单状态" @change="handleQuery" clearable> |
| | | <el-option label="全部" value=""></el-option> |
| | | <el-option label="待处理" value="DISTRIBUTED"></el-option> |
| | | <el-option label="待审核" value="YW_HANDLE"></el-option> |
| | |
| | | <el-option label="审核未通过" value="AUDITING_FAIL"></el-option> |
| | | </el-select> |
| | | </el-form-item> |
| | | <el-form-item label="时间范围" prop="timeRange"> |
| | | <el-form-item label="时间范围" prop="timeRange" > |
| | | <el-date-picker |
| | | v-model="queryParams.timeRange" |
| | | v-model="timeRange" |
| | | type="daterange" |
| | | range-separator="至" |
| | | value-format="yyyy-MM-dd" |
| | | start-placeholder="开始日期" |
| | | end-placeholder="结束日期"> |
| | | end-placeholder="结束日期" |
| | | @change="handleQuery" |
| | | clearable |
| | | > |
| | | </el-date-picker> |
| | | </el-form-item> |
| | | <el-form-item> |
| | |
| | | <el-button icon="el-icon-refresh" size="small" @click="resetQuery">重置</el-button> |
| | | </el-form-item> |
| | | </el-form> |
| | | |
| | | <el-row :gutter="10" class="mb8"> |
| | | <el-col :span="1.5"> |
| | | <el-button |
| | | type="primary" |
| | | plain |
| | | size="mini" |
| | | @click="handleExport" |
| | | v-hasPermi="['work:order:export']" |
| | | >导出 |
| | | </el-button> |
| | | <el-button |
| | | :type="isSelectAll ? 'danger' : 'primary'" |
| | | plain |
| | | size="mini" |
| | | @click="toggleSelectAll" |
| | | v-hasPermi="['work:order:audit']" |
| | | > |
| | | {{ isSelectAll ? '取消全选' : '全选' }} |
| | | </el-button> |
| | | <el-button |
| | | type="primary" |
| | | plain |
| | |
| | | >批量审核 |
| | | </el-button> |
| | | <el-button |
| | | type="primary" |
| | | type="danger" |
| | | plain |
| | | size="mini" |
| | | @click="handleExport" |
| | | v-hasPermi="['work:order:audit']" |
| | | >导出 |
| | | @click="batchDelete" |
| | | v-hasPermi="['work:order:delete']" |
| | | >删除 |
| | | </el-button> |
| | | <el-button size="mini" plain type="info" @click="selectedDistribute" class="op">批量上报</el-button> |
| | | </el-col> |
| | | </el-row> |
| | | |
| | |
| | | <el-col :xl="6" :lg="8" :md="12" :sm="24" v-for="item in workOrderList" :key="item.id"> |
| | | <div class="my-col"> |
| | | <div style="padding-left: 10px; padding-top: 8px"> |
| | | <el-row> |
| | | <el-tag style="margin-right: 5px;height:24px;overflow:auto" effect="dark" v-for="(error, index) in item.errorTypeList" :key="index" size="small" type="warning">{{ error }}</el-tag> |
| | | </el-row> |
| | | <!-- <el-row>--> |
| | | <!-- <el-tag style="margin-right: 5px;height:24px;overflow:auto" effect="dark" v-for="(error, index) in item.errorTypeList" :key="index" size="small" type="warning">{{ error }}</el-tag>--> |
| | | <!-- </el-row>--> |
| | | <div> |
| | | <el-row style="display: flex;"> |
| | | <el-checkbox v-if="$store.state.user.roles.includes('admin')" |
| | | v-model="isItemSelected[item.workOrderNo]" |
| | | @change="toggleSelection(item)" |
| | | style="margin-right: 10px; "></el-checkbox> |
| | | <el-tooltip |
| | | effect="dark" |
| | | :content="allErrorTypesMessage(item.errorTypeList)" |
| | | placement="top" |
| | | > |
| | | <el-row> |
| | | <el-tag |
| | | style="margin-right: 5px;height:24px;overflow:auto" effect="dark" |
| | | v-for="(error, errorIndex) in displayedErrors(item.errorTypeList)" :key="errorIndex" size="small" |
| | | :type="error === '图像异常' |
| | | || error === '点位信息错误' |
| | | || error === '时钟偏差' |
| | | || error === 'OSD异常' |
| | | ? 'danger' : 'warning'"> |
| | | {{ error }} |
| | | </el-tag> |
| | | </el-row> |
| | | </el-tooltip> |
| | | </el-row> |
| | | </div> |
| | | </div> |
| | | <svg v-if="item.status === 'DISTRIBUTED'" t="1721617809410" class="icon work-order-status" width="72" height="72" viewBox="0 0 1669 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6020"><path d="M429.450929 719.145278L62.111562 621.044163c-18.20892-5.253429-31.164411-25.844201-25.888722-44.030861l20.613032-74.883628c-12.91097 2.626715-25.866461 2.626715-38.799691 2.626715l-15.582206 61.972658c-10.306516 38.755171 12.955491 77.532603 49.128468 87.816858l305.277668 82.763772c20.835635-2.604454 51.955525-7.857884 72.568557-18.164399zM525.281493 744.989479c-15.582206 5.253429-31.164411 10.306516-44.075381 7.679801-10.306516-2.626715-18.20892-12.91097-20.635293-25.844201l-25.866461-7.679801-23.262007 31.09763 367.56197 98.123375c12.91097-7.679801 28.493176-18.18666 44.075381-25.844201l-297.798209-77.532603zM62.111562 486.569729L175.928444 62.822778c5.253429-18.18666 25.866461-31.09763 44.075381-25.844201L1389.715478 349.691183c-7.679801-12.91097-7.679801-31.07537-7.679801-38.755171L274.16312 13.761091c7.702062 10.284256 18.20892 20.590772 28.515436 28.470916-20.613032-5.253429-57.008612-20.813375-80.248359-41.404147-36.195238-5.231169-72.390475 15.359603-80.270619 51.688402L28.342696 473.658759c10.306516 5.253429 20.813375 7.679801 33.768866 12.91097zM1467.1813 982.818457c-7.679801 5.253429-18.20892 7.679801-28.493175 5.253429l-444.983272-119.114832c-41.448667-7.679801-106.13708-15.559945-173.474468-10.306516l610.755678 162.722747c5.253429 2.626715 12.933231 2.626715 18.18666 2.626715 2.448632-10.284256 10.328776-23.217486 18.008577-41.181543zM1555.109461 706.234307s10.328776 7.657541 25.888721 15.537685l69.941843-266.07729c10.328776-38.777432-12.91097-77.532603-49.128468-87.816859l-209.647446-56.941831c23.262007 12.91097 69.964103 36.128457 121.719286 41.404146-12.933231 5.231169-36.195238 10.284256-57.008613 12.910971l134.630257 36.128456c18.20892 5.253429 31.142151 25.821941 25.888721 44.008601l-132.003541 493.622013c5.231169 20.590772 7.657541 46.434973 2.604454 69.852801 10.306516-10.306516 20.635292-23.217486 25.888722-38.777431l56.986352-211.962517c-18.364742-10.506859-15.738028-51.888745-15.738028-51.888745z" fill="#d81e06" p-id="6021"></path><path d="M359.08614 281.864068l9.505146-35.126743 80.671304 21.815088 11.931518-44.030861 39.623322 10.707201-11.931517 44.008601 85.101103 22.816801-9.505146 35.126743-85.101103-22.816801-11.130146 40.981201 102.708995 27.669545-9.505146 35.126743-241.991652-65.423003 9.10446-33.702085a328.628716 328.628716 0 0 1-41.248325 35.928115l-49.729496 184.537834-36.595923-9.705488 37.619897-139.104575c-15.18152 9.505145-30.140438 18.587345-45.099355 27.068517 0-4.229456-0.222603-11.130147-0.801371-20.590772-1.224316-10.707201-1.825344-18.787688-1.424659-24.041117 41.626749-22.193513 79.847674-51.265456 114.640513-86.815145l26.667832 29.294546-2.22603 2.604455 75.217533 20.190086 20.613032 27.869888 2.448632-21.592485 11.107887-40.981201-80.671305-21.815088z m-125.748399 17.964057a443.35827 443.35827 0 0 0-6.255142-40.95894 420.808592 420.808592 0 0 0 105.513792-70.47609l26.289407 30.674685c-41.626749 33.724345-83.476101 60.570259-125.548057 80.760345z m69.7415 125.570317l9.10446-33.702085 146.584034 39.556542 7.056514-26.445229 39.623322 10.684941-7.056513 26.46749 51.332238 13.734601-9.0822 33.702084-51.354498-13.71234-48.126755 20.590771 39.42298 11.308229-10.306516 38.354486c-7.479459 31.498316-28.493176 43.18497-62.863069 34.926401-17.585632-4.652401-35.59421-9.705488-54.181555-14.535971 0.601028-6.0548 1.402399-15.359603 2.626715-27.469203 0.400685-5.231169 0.400685-9.282542 0.200342-12.510285 13.356176 4.652401 28.493176 9.282542 45.077095 13.734601 19.010291 7.256856 29.917835 1.803084 32.744892-16.361316l15.782548-58.544572-146.584034-39.779145z m45.099355 95.296317a773.83459 773.83459 0 0 1-15.582205-29.272286 1399.393364 1399.393364 0 0 0-18.787688-34.926401l32.344207-14.936657c0.601028 1.202056 1.825344 3.0274 3.227742 5.654115 13.356176 20.390429 24.864748 39.779145 34.570236 57.943544l-35.772292 15.537685zM953.858928 718.343907c-54.982925-13.734601-96.609675-26.645572-124.924769-38.354486-47.102781-15.760288-81.87336-42.005174-104.534339-78.356234-17.585632 10.907544-49.929839 25.866461-97.03262 44.631889-1.825344-4.630141-4.452059-10.684941-7.679801-17.763714-3.851031-9.482885-6.455485-16.361316-8.503433-21.1918 37.820239-11.708914 70.164446-26.645572 97.054881-44.631889-2.448632-7.457198 30.31852-29.873314 28.493176-37.731197-1.402399-6.277403-37.397293 2.003426-38.198664-4.251717a277.229698 277.229698 0 0 1-1.825344-55.316829c-2.827057 2.426372-7.078773 6.455485-12.732888 12.309942-13.356176 14.335629-23.863035 24.441802-31.943522 30.696945a583.019352 583.019352 0 0 0-4.652401-46.835658c43.674696-41.604489 81.272332-93.270631 112.614826-155.065206l37.998321 16.561659c-3.628428 5.253429-8.280829 12.91097-14.157547 22.816801a1843.775607 1843.775607 0 0 1-17.785974 31.297973l93.804877 25.220912-9.505145 35.149004c-25.265433 62.373343-56.607927 108.808316-94.205563 139.483 16.583919 31.698658 45.099355 54.53772 85.323706 68.450404 41.626749 16.561659 86.325419 29.472629 134.029228 39.178117-6.878431 10.083913-14.157547 21.1918-21.637005 33.702084z m-142.911086-291.320463l-67.537731-18.1644a50.75347 50.75347 0 0 1-9.505145 11.508572c-5.053087 45.811684-3.0274 84.989801 5.876717 117.690173 27.892148-24.842488 51.55484-61.772315 71.166159-111.034345z m159.294662 143.534373c-5.053087-8.681515-12.933231-22.193513-23.440089-40.95894-10.729462-18.587345-19.010291-32.321946-25.087351-41.203804l-41.426407 153.640547-39.623323-10.684941 15.960631-58.767175 40.847639 5.854457-31.142151-42.606202 50.130181-185.539548 39.623323 10.707201-28.092491 103.955572 14.958918-8.458912a2097.89912 2097.89912 0 0 1 64.488071 92.669603l-37.174691 21.392142zM1135.814568 470.609099l9.905831-36.506882 114.41791 30.875027-9.883571 36.551403-38.220924-10.306516-23.239747 86.41446 36.595923 9.88357-9.505145 35.126744-36.595923-9.883571-24.041117 89.219257 40.424693 1.424659a534.024446 534.024446 0 0 0-8.904117 38.354486c-5.253429-0.400685-13.356176-1.001713-24.664406-2.003426-39.623323-4.452059-71.366502-7.279116-95.229536-8.503432l4.051373-38.154144 45.900726 4.452059 16.984604-62.774028 43.051408-13.957205-34.369893-18.364742-36.595923-9.88357 9.505145-35.126744 36.595923 9.883571 23.239747-86.41446-39.40072-10.284256z m70.787734 238.852951l8.681515-32.299686 87.92816 23.595911 9.905831-36.506882-83.476102-22.416115 49.106208-181.510435 203.792989 54.916144-43.051408 158.693634-26.890435 17.140426-62.885329-16.940083-9.905831 36.529142 87.92816 23.618171-8.681515 32.121604-87.92816-23.640432-10.907544 41.404147 101.061734 27.246599-8.280829 30.674685-244.818711-66.001771 8.28083-30.696945 106.938451 28.871601 11.130147-40.95894-87.928161-23.840775z m79.847674-132.226145l-11.530832 42.3836 46.902439 12.710627 11.508571-42.383599-46.880178-12.732888z m20.012004-74.705545l-11.931517 44.0086 46.902438 12.710628 11.931518-44.008601-46.902439-12.710627z m63.464097 97.099401l-11.508572 42.405859 46.902439 12.710628 11.508572-42.383599-46.902439-12.732888z m67.137046-61.972658l-46.902439-12.732888-11.931517 44.030861 46.902439 12.710628 11.931517-44.008601z" fill="#d81e06" p-id="6022"></path></svg> |
| | | <svg v-else-if="item.status === 'YW_HANDLE'" t="1721620267234" class="icon work-order-status" width="68" height="64" viewBox="0 0 1584 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="15573"><path d="M263.685546 647.190344v4.060662c0 4.060662 3.961622 4.060662 8.101517 0v-4.060662zM425.874342 127.940576c4.060662 8.121325 12.162179 12.162179 24.344166 8.121324-8.121325-4.060662-16.222841-8.121325-24.344166-8.121324z m-3.961621 0c-3.961622-3.961622-8.101517-8.101517-20.283504-3.961622 12.181987 3.961622 16.242649 12.181987 20.283504 3.961622z m-8.121325 567.938099c8.101517 3.961622 12.162179 3.961622 20.283503 8.121325-3.961622-12.181987-12.181987-16.242649-20.283503-8.121325-4.060662-8.121325-16.242649-12.162179-24.344166-12.162179-12.181987 0-24.344166-12.181987-36.506345-3.961621l36.506345 12.162179c8.101517 0 16.222841 0 24.344166 4.060662zM16.222841 582.279171l-3.961622 4.060662c4.060662 4.060662 8.121325 4.060662 16.24265 4.060662 0-4.060662-4.060662-12.162179-12.181987-8.121324z m48.688332 52.748994c-12.162179-8.101517-24.344166-24.344166-44.627669-20.283504-4.060662-4.060662-8.121325-12.162179-16.222842-4.060662a3.961622 3.961622 0 0 1-3.961621 4.060662c4.060662 8.101517 12.162179 4.060662 16.222841 8.101517 12.181987 4.08047 12.181987 24.344166 24.344166 28.404828 4.060662 4.060662 0 12.162179 4.060662 12.162179 8.121325 0 3.961622-8.101517 8.121325-16.222841 3.961622-3.961622 20.263695-3.961622 12.162179-12.162179z m385.386568 68.971835h8.121324c8.101517 3.961622 12.162179 3.961622 20.263696 8.101517-3.961622-8.101517-8.101517-12.162179-16.222841-12.162179-3.961622 0-3.961622-3.961622-8.101517-3.961622s-8.121325-8.121325-8.121325 0c-4.060662 8.121325 0 8.121325 4.060663 8.121325z m60.85051 16.222841c-4.060662-4.060662-12.181987-8.121325-24.344166-8.121324 12.162179 8.121325 16.222841 8.121325 24.344166 8.121324z" p-id="15574" fill="#1296db"></path><path d="M474.641907 144.163417c-8.121325-3.961622-16.222841-8.101517-28.404829-8.101517 8.121325 8.101517 20.283504 8.101517 28.404829 8.101517z m121.681213 36.506345v-8.042093c-8.101517 0-12.162179-8.121325-24.324358-8.121324-3.961622-4.060662-8.121325-4.060662-16.242649-4.060663-3.961622-3.961622-12.162179-8.101517-20.263696 0 8.101517 4.060662 16.222841 4.060662 20.263696 8.121325 4.08047 0 8.121325 3.961622 16.242649 3.961622 12.162179 3.961622 20.283504 8.101517 24.324358 8.101516z m8.121324 0c8.121325 8.121325 16.222841 8.121325 28.404829 3.961621-12.181987-3.961622-16.222841-8.101517-28.404829-3.961621z m-60.85051 547.654596c8.121325 3.961622 16.242649 3.961622 24.344166 3.961622-8.101517-3.961622-16.222841-3.961622-24.344166-8.101517-8.101517 0-16.222841-8.121325-28.38502-4.060662 12.162179 8.101517 20.283504 12.162179 28.38502 8.101516z m-255.524606-73.01269c4.060662 8.101517 12.162179 8.101517 20.283504 4.060663-8.121325-4.060662-12.181987-8.121325-20.283504-4.060663zM640.970597 192.851749c8.101517 0 12.162179 4.060662 16.222842 4.060662-3.961622-8.121325-8.121325-12.181987-16.222842-4.060662z m60.830703 16.222841c-3.961622-8.121325-12.162179-12.162179-20.283504-4.060662 4.060662 4.060662 12.181987 4.060662 20.283504 4.060662zM36.506345 557.954813c20.283504 8.101517 20.283504-8.121325 20.283503-20.283504 3.961622-28.404828 16.222841-56.809656 20.283504-89.255339 4.060662-24.344166 16.242649-52.729186 24.344166-77.073352-4.060662 0-12.181987 4.060662-16.222841 4.060663-20.283504-8.121325-24.344166 3.961622-24.344166 20.283503l-36.506345 133.863201c-8.121325 16.222841-3.961622 28.404828 12.162179 28.404828z m182.551532 77.073352c-8.101517 0-16.222841-8.101517-24.344166-4.060663a43.815537 43.815537 0 0 0 28.404828 12.181987c3.961622 0 8.101517 0 8.101517 3.961622 0-12.162179-8.101517-12.162179-12.162179-12.162179zM109.538842 606.623336c3.961622 8.121325 8.101517 8.121325 16.222842 8.121325-8.121325-8.121325-12.181987-12.162179-16.222842-8.121325z" p-id="15575" fill="#1296db"></path><path d="M81.213247 338.877128c-4.060662 12.181987 0 12.181987 12.181987 16.242649s16.222841-3.961622 20.263695-16.242649C137.923863 241.520272 166.388115 144.163417 190.672857 50.867224c3.961622-12.181987 8.101517-16.222841 20.283503-12.181987 20.263695 8.121325 44.607861 12.181987 64.911173 20.283503q6.061281 6.081089 12.162179 0c24.344166 8.121325 48.668524 16.222841 73.01269 16.222842 8.121325 8.121325 24.344166-8.101517 28.404828 3.961621s12.162179 12.261219 20.283504 12.26122c12.162179 4.060662 20.283504 4.060662 32.445682 8.101516 60.949551 24.363974 121.701021 32.485299 182.551532 52.768803 8.121325 0 8.121325-8.121325 16.242649 0 12.162179 12.162179 40.547199 20.283504 60.830703 16.222841 8.121325-3.961622 12.181987-3.961622 16.242649 3.961622s12.162179 8.101517 20.263696 12.162178c24.344166 8.121325 48.688332 16.222841 73.032497 20.283504 16.222841 4.060662 28.404828 8.121325 44.62767 8.121325 20.283504 16.222841 48.668524 16.222841 73.012689 24.344166l8.121325-32.465491-44.627669-12.162179c-8.121325-3.961622-16.222841-8.121325-24.344166 0-3.961622-3.961622-8.101517-3.961622-12.162179-8.121325-4.060662-8.042092-16.222841-8.042092-24.344166-12.003714-64.911173-20.283504-129.822346-32.465491-194.713711-52.729186-32.465491-8.121325-60.850511-16.242649-89.255339-24.344165-12.162179-4.060662-28.404828-8.121325-36.506345 8.101516 4.060662-16.203033-4.060662-20.342928-16.222841-24.40359-44.627669-12.162179-85.174868-24.324358-129.822346-36.506345-8.121325-4.060662-24.344166-8.101517-32.445682 20.283504 3.961622-24.344166-8.121325-32.445682-24.344166-32.445683-4.060662 0-8.121325-3.961622-8.121325-3.961622-8.101517-4.060662-16.222841-8.121325-24.324358-8.121324h-16.242649c-20.283504-12.261219-40.567007-8.200557-60.850511-16.222841C174.430207-5.922625 170.349737 10.300217 166.388115 22.462396c-12.181987 40.567007-20.283504 81.213247-32.445682 121.701021-20.362736 64.911173-40.626431 125.761684-52.729186 194.713711zM146.045187 618.805323c3.961622 8.121325 12.162179 8.121325 24.344166 8.121325-8.121325-8.121325-16.242649-12.181987-24.344166-8.121325z m576.039616 194.713711c-8.101517-8.121325-20.283504-8.121325-32.445682-8.121324-4.060662-3.961622-12.162179 0-16.222841 0-12.181987-8.101517-28.404828-16.222841-44.62767-8.101517a55.839059 55.839059 0 0 0-16.222841-12.162179c-36.506345-8.121325-73.032498-20.303312-105.47818-28.404828-8.121325-4.060662-16.222841 8.101517-20.283504 4.060662-16.222841-20.283504-40.567007-20.283504-60.85051-12.181987-3.961622-12.162179-20.283504 0-28.404828-8.101516 0-12.181987-3.961622-16.222841-16.222842-16.222841-24.344166-8.121325-48.668524-12.181987-68.952027-16.24265s-44.627669-12.162179-64.911173 4.060663v-12.162179c8.101517-12.181987-4.060662-12.181987-8.121325-16.222842-3.961622 0-8.121325-3.961622-12.162179 0-3.961622 8.101517 8.121325 3.961622 12.162179 8.101517v4.060662c-3.961622 12.162179-20.283504 0-24.344166 12.162179 12.181987 0 20.303312 4.060662 28.404829 4.060663 20.283504 12.181987 48.688332 12.181987 68.971835 20.283503 16.222841 4.060662 32.445682 16.222841 48.668524 12.181987 3.961622 0 8.121325 0 8.121324 3.961622 16.222841 12.181987 44.627669 12.181987 56.789849 0 16.222841 4.060662 28.404828 16.222841 48.688332 16.222841l3.961621 3.961622c12.181987 24.344166 36.526153 20.283504 52.748994 24.344166 3.961622 0 3.961622 0 3.961622-4.060663 3.961622-12.162179 8.101517-12.162179 20.263696-12.162178 8.121325 4.060662 16.242649 4.060662 8.121324 16.222841-3.961622 4.060662 4.060662 8.121325 8.121325 8.121324 8.101517 0 12.162179 3.961622 16.222841 3.961622 12.181987 0 28.404828 20.303312 40.567007-3.961622 12.181987 0 0 24.344166 16.222842 16.222842 8.121325 3.961622 16.222841 0 24.344165 0 4.060662 3.961622 8.121325 12.162179 16.222842 12.162179 28.404828 8.121325 52.729186 16.222841 81.213246 20.283503l8.121325-32.445682c-16.222841 3.961622-32.445682-4.060662-52.748994-4.060663zM925.038688 269.925101v-8.160941c-4.08047 0-4.08047-4.060662-8.121325 0-4.060662-4.060662-8.121325-8.101517-16.222841 0 8.101517 3.961622 16.222841 8.121325 24.344166 8.121324z" p-id="15576" fill="#1296db"></path><path d="M324.536057 103.59641c8.121325 4.060662 16.222841 12.162179 28.404828 4.060662-8.121325-4.060662-20.283504-8.121325-28.404828-4.060662-4.060662-8.101517-16.222841-8.101517-24.344166-8.101517l-24.324358-12.181987c-8.121325 0-16.242649-8.121325-28.404828 0 12.162179 4.139895 20.283504 8.101517 28.404828 8.101517 8.101517 4.060662 16.222841 4.060662 24.324358 8.101516 8.121325 0 12.181987 3.961622 24.344166 3.961622zM162.268028 659.372331c3.961622 3.961622 12.162179 8.101517 12.162179 16.222841-4.08047 4.120087-8.042092 4.120087-12.162179 4.120086-12.162179-20.283504-32.445682-8.121325-48.688331-12.181987-3.961622-8.101517 20.303312-24.324358-3.961622-24.324357-8.121325-4.060662-16.222841-4.060662-20.303312-8.121325-3.961622 0-12.162179-4.060662-16.222841-4.060662 0 4.060662 3.961622 12.181987 8.121325 16.222841 8.101517 0 8.101517 20.283504 20.283503 8.121325h3.961622c3.961622 4.060662 0 12.162179 3.961622 20.283503 16.222841 12.162179 32.445682 24.344166 52.729186 12.162179 16.222841 12.181987 32.445682 12.181987 56.789848-16.222841-12.162179-4.060662-24.344166-4.060662-36.506345-8.121325-3.961622-3.961622-8.121325-8.101517-20.283503-3.961622z m85.174869-576.059425c-24.344166-16.222841-24.344166-16.222841-28.404828 12.181987-8.101517 20.263695-12.162179 40.567007-16.222842 60.830703-8.121325 12.181987-8.121325 28.404828-12.162178 40.586815 0 8.101517-8.121325 12.162179-4.060663 20.283504-3.961622 8.101517-8.121325 16.222841-8.121324 24.324357L166.388115 290.208604c0 8.101517-8.121325 12.181987 0 24.344166 8.101517-8.121325 8.101517-16.242649 8.101517-24.344166 8.121325-16.222841 12.181987-32.465491 12.181987-44.627669 4.060662-8.101517 4.060662-16.222841 8.101516-20.283504 3.961622-8.101517 3.961622-12.162179 3.961622-20.283503 4.060662-12.162179 8.121325-24.344166 12.181987-40.567008l16.222841-60.85051c0-24.344166 3.961622-24.344166 20.283504-20.283504z m-85.174869 231.239864c-8.121325 12.162179-16.222841 24.324358-12.162178 44.627669 8.101517-16.242649 8.101517-28.404828 12.162178-44.627669zM369.163726 115.758589c12.162179 4.08047 16.222841 8.121325 28.385021 12.181987-3.961622-16.222841-12.162179-16.222841-28.385021-12.181987z m-251.562983 348.880223c-8.101517 8.121325-8.101517 16.222841-3.961622 24.344165 3.961622-8.121325 12.181987-16.222841 3.961622-24.344165z m-40.527391 194.733519l-3.961622 3.961621c0 8.121325 8.121325 8.121325 16.222841 8.121325q0-18.243268-12.162179-12.162179z m48.688332-219.057877c-4.060662 3.961622-12.181987 8.101517-4.060663 20.283503 8.121325-3.961622 8.121325-12.181987 4.060663-20.283503z m20.283503-60.850511c-8.121325 8.101517-16.222841 16.222841-8.121324 32.445683 4.060662-16.222841 4.060662-24.344166 8.121324-32.445683z m478.682761 373.204581c8.121325 0 16.242649 4.060662 24.344166 4.060662-4.060662-8.121325-12.162179-8.121325-24.344166-4.060662z m125.761684-531.411947c12.162179 12.162179 20.283504 8.101517 28.38502 8.101516-3.961622-8.101517-12.162179-8.101517-28.38502-8.101516z m20.283503 571.978954c-4.060662-4.060662-12.162179-12.162179-20.283503-8.101517 8.121325 8.101517 12.162179 8.101517 20.283503 8.101517z m97.356856-539.533272c8.121325 0 12.162179 8.101517 20.283503 3.961622-8.121325-3.961622-12.162179-8.101517-20.283503-3.961622z m-52.729186-16.222841c-8.121325-3.961622-12.181987-12.181987-24.344166-3.961622 8.121325 3.961622 16.222841 8.101517 24.344166 3.961622z m-231.239864 498.966264c3.961622 8.121325 8.121325 8.121325 16.242649 8.121325-4.08047-8.121325-8.121325-8.121325-16.242649-8.121325zM673.475704 768.851749c3.961622 0 3.961622 4.060662 8.101517 0v-3.961622H673.475704z m186.612194-519.249768c3.961622-3.961622-8.121325-3.961622-12.181987-8.121325h-3.961621c-8.101517 0-12.162179-8.101517-24.324358-3.961622 8.101517 8.101517 16.222841 12.162179 28.38502 12.162179 4.060662 0 8.121325 8.101517 12.181987 0z m-166.388115 519.249768c4.060662 4.060662 8.101517 8.121325 20.283504 8.121324-8.121325-8.121325-12.181987-12.181987-20.283504-8.121324zM478.682761 148.224079c8.121325 8.101517 16.242649 3.961622 24.344166 8.101517-8.101517-12.162179-8.101517-12.162179-24.344166-8.101517z m640.970597 133.8632c8.101517 8.121325 16.222841 12.181987 28.404828 16.222842 20.263695 12.181987 20.263695-3.961622 24.324358-12.162179s0-12.162179-8.101516-16.222841c-20.303312-8.121325-32.465491 0-40.567008 12.162178-3.961622-8.101517-3.961622-8.101517-16.242649 0 0 4.060662 8.121325 0 12.181987 0z m56.789848 56.789849c0-3.961622-3.961622-3.961622-3.961621-8.101517-3.961622 0-3.961622 0-8.101517 3.961622l3.961622 3.961622c3.961622 3.961622 8.121325 8.121325 8.121325 0z m-190.672856 511.187867c0 3.961622 8.121325 3.961622 16.242649 3.961622-4.060662-3.961622-4.060662-3.961622-8.121325-3.961622-4.060662-4.060662-8.121325-8.101517-8.121324 0z m-12.162179 0c-8.101517-8.101517-12.162179-16.222841-24.344166-8.101516 8.121325 3.961622 16.242649 3.961622 24.344166 8.101516z m40.567007-592.262457c24.344166 12.181987 48.668524 12.181987 77.073352 20.303312-8.101517-12.181987 0-20.303312 8.121325-32.465491-40.567007-12.162179-77.073352-20.283504-113.599505-32.445682-12.162179-3.961622-28.38502-8.121325-40.567007-12.181987l-8.101517 32.46549c24.344166 8.101517 48.668524 16.222841 77.073352 24.324358z m-32.445682 24.344166c-4.060662-3.961622-12.181987-8.101517-20.283504-3.961622-4.060662-8.121325-16.242649-8.121325-24.344166-8.121325-3.961622 0-8.121325-4.060662-16.242649-4.060662v8.121325c4.08047 4.060662 12.181987 4.060662 20.303311 4.060662s12.162179 0 20.283504 3.961622c4.060662 4.060662 12.162179 4.060662 16.222841 8.121324 8.101517 3.961622 12.162179 8.101517 24.344166 3.961622-8.121325-12.181987-12.181987-12.181987-20.283503-12.181987z m-166.388116 580.120086c0-12.181987 12.162179-28.404828-12.181987-28.404828-8.101517 0-12.162179-4.060662-16.222841-4.060662h-12.162179l-8.121324 32.46549c8.121325 4.060662 20.283504 4.060662 28.404828 4.060663 8.101517 3.961622 12.162179 12.162179 20.283503 8.101516 4.060662 4.060662 12.162179 8.121325 16.222842 0 0-12.162179-12.162179-3.961622-16.222842-12.162179z m628.848035-279.987619a44.152275 44.152275 0 0 0-4.139895 20.303311h4.060663c3.961622-8.121325 3.961622-12.181987 8.101516-20.303311z m12.162179-40.547199c-8.101517 8.101517-8.101517 20.283504-12.162179 32.445682 12.162179-12.162179 16.222841-20.283504 12.162179-32.445682zM1440.04952 614.744661h-3.961622c0 8.101517-3.961622 12.181987-8.101516 16.222841H1436.087898c0-3.961622 0-12.162179 3.961622-16.222841zM1196.72671 906.815227v8.121325h8.121325v-8.121325a5.645311 5.645311 0 0 0-8.121325 0z m292.090374-478.662952c3.961622-12.162179-8.121325-8.101517-12.181987-12.162179-8.101517-3.961622-16.222841-8.121325-24.344165-3.961622-8.101517-4.060662-12.162179-8.121325-20.263696-4.060662 8.101517 8.121325 16.222841 8.121325 24.324358 8.121324 8.121325 4.060662 12.181987 4.060662 20.283503 4.060663a8.715568 8.715568 0 0 1 8.121325 8.101516c0 8.121325-8.121325 12.181987 0 24.344166 3.961622-8.121325 8.101517-16.222841 3.961622-24.344166z m-113.599504-32.445683c4.060662 8.101517 12.162179 3.961622 24.344166 8.101517-8.101517-12.162179-16.222841-16.222841-24.344166-8.101517z m-60.850511 543.494894c8.121325 12.162179 20.283504 8.101517 32.465491 8.101516-12.181987-3.961622-20.283504-8.101517-32.465491-8.101516z m56.789848-547.654596c-8.101517-4.060662-12.162179-12.162179-24.324357 0 8.101517-4.060662 16.222841 4.060662 24.324357 0z m56.809657 247.541937c-8.121325 8.101517-8.121325 16.222841-8.121325 24.324358-3.961622 8.121325-3.961622 16.242649-3.961622 24.344166 8.121325-8.101517 8.121325-16.222841 12.181987-28.38502 0-4.060662 4.060662-8.121325 0-20.283504z m-141.984525 296.151037c-12.181987-4.060662-16.242649-12.162179-28.404828-8.101517 8.121325 0 16.222841 8.101517 28.404828 8.101517z m194.713711-478.682761c-3.961622 12.162179-8.101517 16.222841-8.101517 24.324358 8.101517-8.101517 12.162179-12.162179 8.101517-24.324358z m-81.213247 304.252553c4.060662-8.121325 8.121325-16.222841 4.060662-32.46549-4.060662 12.181987-12.162179 20.283504-4.060662 32.46549zM1521.262767 521.448468c-8.121325-8.121325-16.222841-4.060662-16.222841 8.101517-20.283504 73.032498-40.567007 150.10585-60.850511 223.118539 0 8.121325-8.121325 16.222841 3.961622 16.222841 8.101517 0 24.344166 16.242649 28.38502-8.101517 16.222841-64.911173 36.506345-133.8632 56.809656-198.774373 3.961622-16.242649-16.242649-24.344166-12.181987-40.567007z" p-id="15577" fill="#1296db"></path><path d="M1545.606933 476.820799c0-3.961622 8.101517-3.961622 4.060662-12.181987 0-8.101517 3.961622-16.222841-4.060662-20.283504-3.961622-8.101517 4.060662-8.101517 8.101516-8.101517 16.222841 12.162179 16.222841-4.060662 20.303312-12.181987 3.961622-3.961622 3.961622-12.162179 3.961622-16.222841 4.060662-24.344166-12.162179-40.567007-36.506345-36.506345-3.961622 0-3.961622 4.060662-8.101516 0-12.181987-16.222841-28.404828-12.162179-44.62767-16.222841-3.961622-3.961622-8.121325-8.121325-16.222841-3.961622-8.121325-4.060662-16.242649-4.060662-24.344166-8.121324s-20.283504 8.121325-28.404828 0c-20.283504-20.283504-44.627669-20.283504-68.971836-28.38502-3.961622-4.060662-12.162179-8.121325-16.222841-4.060663l-3.961622 4.060663-3.961621-4.060663c-4.060662-8.101517-12.181987-12.181987-24.344166-8.101516-3.961622 0-8.121325 0-12.162179-4.080471-8.121325-3.961622-16.242649-8.101517-24.344166 0-20.303312-12.162179-44.627669-20.263695-68.971835-20.263695 16.222841 0 16.222841 20.263695 28.404828 28.38502-3.961622 3.961622-12.181987 12.181987 3.961622 12.181987l48.688331 12.162179c3.961622 3.961622 8.121325 3.961622 12.181987 3.961622h3.961622c16.222841 0 32.465491 12.162179 48.688332 8.101516a197.268957 197.268957 0 0 0 28.38502 12.181987c16.222841 0 32.465491 12.162179 52.748994 8.101517 12.162179 0 32.445682 16.242649 48.688332 16.242649 3.961622 3.961622 12.162179 3.961622 16.222841 8.101517 16.222841 4.060662 32.445682 4.060662 44.62767 12.162179 16.222841 12.181987-3.961622 28.404828-3.961622 44.627669v12.181987l-8.121325 12.162179c-8.121325 12.162179 0 20.283504 8.121325 28.404828a3.961622 3.961622 0 0 1-4.060663 4.060662c4.060662 3.961622 0 16.222841 8.121325 16.222842s8.101517-4.060662 8.101517-12.181987c3.961622-3.961622 8.121325-8.101517 3.961622-12.162179 4.060662-8.101517 0-12.181987 0-16.222841z m-121.701022 413.771587a12.380068 12.380068 0 0 0-16.222841 0c-3.961622 4.060662-8.121325 8.121325-8.121324 12.181987s-3.961622 8.121325 0 3.961622c4.060662 0 4.060662 0 8.121324-3.961622 0 8.121325 3.961622 16.222841-3.961622 20.283504s-4.060662 8.101517 3.961622 8.101516c3.961622 0 16.222841 16.222841 16.222841 0 3.961622-12.162179 8.121325-32.445682-12.181987-36.506344 3.961622-4.060662 16.242649 4.060662 12.181987-4.060663z m24.344166-101.417518c-16.222841-16.222841-20.283504-3.961622-20.283503 8.121325-3.961622 20.283504-3.961622 40.567007-12.181987 60.850511-3.961622 16.222841 0 16.222841 12.181987 20.283503s16.222841-4.060662 20.283503-12.162179c8.101517-24.344166 12.162179-52.748994 20.283504-77.09316-8.121325-3.961622-12.181987 4.060662-20.283504 0z m-32.46549-97.356855c-3.961622 0-8.101517-4.060662-12.162179-4.060662s-4.060662-3.961622-8.121325 0l3.961622 4.060662q6.100898 12.181987 0 36.506345c24.344166-28.38502 24.344166-28.38502 16.222841-36.506345z m-8.101517 296.131229c-3.961622 0-12.181987 0-12.181987-12.162179h20.283504c-8.101517-8.101517-20.283504-24.344166-28.404828-16.222841s-12.162179 24.344166-12.162179 36.506344c0 16.222841 16.242649 4.060662 24.344166 12.181987 4.060662 3.961622 8.121325 0 8.121324-8.121324 3.961622-4.060662 8.101517-12.181987 0-12.181987z m-77.09316-3.961622c0 3.961622 0 3.961622 3.961622 8.121325 4.060662 0 4.060662 0 8.121325-4.080471l-3.961622-3.961622c-4.060662-8.121325-4.060662-4.060662-8.121325 0z m24.284742 20.204271c4.060662 8.101517 4.060662 12.162179 8.121324 16.222841h3.961622c0-8.121325 0-12.162179-12.181987-16.222841z m-235.221294-117.640359c8.101517 8.101517 16.222841 8.101517 28.404828 8.101517-8.121325-8.101517-16.242649-12.162179-28.404828-8.101517zM912.75766 829.741876c4.060662 4.060662 4.060662 4.060662 8.101517 4.060662 4.08047 3.961622 8.121325 3.961622 8.121324-4.060662-3.961622-3.961622-8.121325-3.961622-16.222841 0z m373.224389-466.520582c-12.181987-3.961622-20.283504-3.961622-28.404828-8.101517 8.121325 8.101517 12.162179 16.222841 28.404828 8.101517zM1095.388425 882.49087c8.121325 0 12.162179 8.101517 20.283503 0-8.121325-8.121325-16.222841-8.121325-24.344166-8.121325-12.162179-8.101517-24.324358-8.101517-44.627669-8.101517 16.222841 12.162179 32.465491 12.162179 48.688332 16.222842z m186.612194 101.417517c12.162179-16.222841 0-20.283504-12.181987-20.283503a76.320644 76.320644 0 0 0-32.445682-8.121325c-16.222841-4.060662-40.567007-4.060662-52.729186-12.162179-24.344166-12.181987-52.748994-16.222841-77.09316-24.344166h-3.961622c-8.121325 20.283504-16.242649 0-16.24265 0 0-8.101517-8.101517-8.101517-16.222841-12.181987-3.961622-3.961622-8.121325-3.961622-12.162179-3.961621-12.181987 8.121325-16.222841 16.222841-12.181987 32.445682 3.961622-4.060662 3.961622-8.101517 8.121325-12.162179 8.101517 8.101517 3.961622 20.283504 20.283504 20.283504s-8.101517-16.222841 3.961621-16.222841a31.692974 31.692974 0 0 1 16.222842 16.222841 58.948932 58.948932 0 0 0 12.162178 8.101516c12.181987-16.222841 8.121325 0 16.24265 4.060663 3.961622 3.961622 12.162179 3.961622 16.222841 3.961621 24.344166 8.121325 48.668524 8.121325 73.01269 20.283504s52.748994 12.181987 77.09316 20.283504c3.961622-8.101517-12.181987-8.101517-8.121325-16.222842z" p-id="15578" fill="#1296db"></path><path d="M1306.265552 371.342618c3.961622 4.060662 8.101517 8.121325 20.283504 8.121325-8.121325-3.961622-12.181987-12.181987-20.283504-8.121325z m0 0c-4.060662-3.961622-8.121325-8.121325-20.283503-3.961621 8.101517 3.961622 12.162179 8.121325 20.283503 3.961621z m-105.47818-24.40359c0-4.060662 0-4.060662-4.060662-8.121325a12.578149 12.578149 0 0 0-8.121325 3.961622 3.961622 3.961622 0 0 0 4.060663 4.060663c3.961622 0 8.121325 4.060662 8.121324 0zM1010.213556 890.592386c-24.344166-3.961622-44.607861-12.162179-68.952027-16.222841-24.344166-8.101517-48.688332-12.162179-73.032498-20.283504q-18.342309-6.001857-24.40359 12.181987c-3.961622 16.222841 8.121325 16.222841 16.242649 16.222842 12.162179 4.060662 28.38502 4.060662 36.506345 8.101516 16.222841 12.181987 36.506345-3.961622 48.668524 12.181987 20.303312 16.222841 48.688332 8.121325 73.032498 20.283504 4.060662-8.121325 16.222841-8.121325 12.162178-20.283504-3.961622-4.060662-8.101517-12.181987-20.283503-12.181987z m28.404828-592.262457c-12.162179-3.961622-20.283504-3.961622-32.46549-8.101517 8.121325 8.101517 16.242649 8.101517 32.46549 8.101517zM375.680594 322.416589a351.455277 351.455277 0 0 1-51.144537 50.272981l-51.501083 193.307335-26.424018-7.051687 43.181678-161.911482a488.844321 488.844321 0 0 1-56.472919 28.820798l-0.990405-28.563293q76.459301-34.545342 122.612194-92.345404z m10.854844-91.414422q-46.648097 56.45311-128.614051 88.700711l-0.891365-28.939647q68.872795-29.177344 108.449396-77.687403zM358.526772 412.939647l148.144847 39.616218 7.447849-27.949242 28.325595 7.566698-7.447849 27.929434 44.389973 11.884865-6.932839 25.493036-44.40978-11.884865-27.354998 102.586196q-9.270195 34.822656-46.034045 25.03745l-55.046735-14.717425 0.930981-28.048283q29.335809 9.904054 51.164345 15.688023 17.985763 4.81337 22.680285-12.796039l25.413804-95.31662-148.125039-39.517177z m29.930053 52.2736q26.978644 44.924791 37.793871 71.982668l-25.413803 9.21077q-12.479109-31.692974-37.496751-73.131538z m116.986691-212.758899l27.949242 7.467658-11.132158 41.715877 85.37295 22.759517-6.635717 24.878985-85.372949-22.759517-12.657382 47.539461 101.021356 26.958837-6.952646 26.027855-227.317859-60.711854 6.932839-26.027855 98.367069 26.225936 12.677189-47.539462-84.600433-22.482203 6.635717-24.839369 84.580625 22.561436zM756.669762 614.348499l-84.976788-22.660477-5.942432 22.581244-26.800372-7.150727 49.520273-185.641597 111.777158 29.712164 10.201176-38.289075 27.434231 7.329-10.201176 38.289075 112.906221 30.108325L891.364903 673.158774l-26.800372-7.150727 5.704735-21.432374-86.125657-22.977406-20.719282 77.707211-27.55308-7.348808z m236.904983-199.725163l-17.827298 66.991025-26.800372-7.150727 11.231198-42.11204-265.686165-70.833798-11.746209 44.013618-26.780563-7.091303 18.362117-68.892602L820.174559 368.430826c-1.426184-12.122563-2.911792-22.363355-4.516249-30.722377l30.425255 2.792944q1.327143 11.884865 2.41659 35.496131z m-303.420613 107.676881l-11.746209 44.033426 84.976788 22.660476 11.746208-43.974001z m103.239864-45.855773l-84.976788-22.660476-11.7264 44.033426 84.976787 22.640669z m-2.456206 119.898484l86.145466 22.957598 11.7264-44.013618-86.125657-22.977406z m104.408542-45.558651l11.746209-44.013618-86.125658-22.977406-11.746208 44.033426zM1040.163417 771.862581l-26.404209-6.972454 51.144537-191.762303a468.818323 468.818323 0 0 1-76.023522 92.721758l-3.961622-31.395853q56.096565-47.34138 94.227174-119.601361l-51.679356-13.865677 7.051687-26.404209 52.808418 14.083566L1107.27329 414.286599l26.424017 7.051686-19.907149 74.636955 45.162488 12.04333-7.031878 26.404209-45.182297-12.04333-6.635716 24.878985q18.064995 36.823275 36.803466 86.502012l-21.531414 19.253482q-13.766636-49.975859-23.234912-75.884866z m49.718353 10.379449l-8.596719-27.731352q146.95636-8.359022 247.423089-116.05571l20.085422 18.480965a390.219746 390.219746 0 0 1-88.997833 72.299598q33.039926 49.817394 51.025689 91.513463l-25.195915 14.598576q-15.846487-42.329929-47.539462-93.870628a382.732281 382.732281 0 0 1-148.204271 40.765088z m87.393377-304.688331l95.712782 25.512844a257.861962 257.861962 0 0 0-8.279789-42.785515l29.553698 2.951408a446.692665 446.692665 0 0 1 5.506655 46.984834l84.976787 22.660477-6.635716 24.878985-104.982978-27.96905q-46.766945 47.796967-76.617765 64.435778 48.252553 9.606933 73.666357 14.321263a300.152275 300.152275 0 0 0 37.952337-36.209223l19.035592 17.827298q-88.324358 99.040545-209.866914 110.489632l-8.715568-26.879604q75.825441-5.942433 136.992882-46.291551-50.49087-10.597338-86.878366-18.659238l0.297121-24.106469a46.568864 46.568864 0 0 0 5.942433-0.871557q26.463634-8.537295 79.945528-61.504178L1170.659239 502.432683z" p-id="15579" fill="#1296db"></path></svg> |
| | |
| | | <svg v-if="item.overtime === 2" t="1721640480312" class="icon work-order-overtime" width="36" height="36" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="13285"><path d="M896 0a128 128 0 0 1 128 128v768a128 128 0 0 1-128 128H128a128 128 0 0 1-128-128V128a128 128 0 0 1 128-128h768zM205.568 336.192h-40.768v57.792H99.84v37.632h64.96v57.344H95.808v38.528h79.296v135.744a175.168 175.168 0 0 1-31.36-40.768c2.688-21.056 4.032-43.008 4.928-66.304l-36.288-4.48a581.376 581.376 0 0 1-30.464 171.136l30.912 27.328c8.96-24.192 16.576-49.28 22.4-76.16 17.472 23.744 37.184 40.768 59.584 51.072 29.12 12.544 101.248 19.264 215.936 19.264H485.12l7.168-42.112a1437.44 1437.44 0 0 1-90.944 2.24c-94.976 0-155.456-4.48-181.44-13.44a21.824 21.824 0 0 0-4.928-1.792V620.224h54.208v-38.528h-54.208v-54.208h51.968V488.96h-61.376v-57.344h64.064v-37.632H205.568v-57.792z m685.44 4.032h-43.456v75.264h-149.184v40.768h149.184v232.96c0 11.648-5.376 17.472-16.128 17.472-23.744 0-48.384-0.896-74.368-2.24l9.408 41.216h79.296c30.016 0 45.248-15.232 45.248-45.696V456.256h50.176v-40.768h-50.176V340.224z m-210.112 27.328H544.256v346.304h41.664v-38.528h53.76v27.776h41.216V367.552zM469.888 540.032H293.376v144.256h176.512V540.032z m-38.528 37.184v70.336H331.456V577.216H431.36z m316.736-74.368l-35.392 21.952c25.984 41.216 47.04 78.848 62.72 112l35.392-24.64c-14.336-31.36-35.392-67.648-62.72-109.312z m-108.416 35.84v97.216h-53.76V538.688h53.76z m-163.072-183.68H281.728v39.424h57.344c-4.48 21.056-11.2 38.08-19.264 51.52-10.752 16.576-26.88 31.808-47.488 45.248l27.776 34.944c24.192-17.472 43.008-37.184 55.552-59.584 9.408-17.92 17.024-42.112 22.848-72.128h57.344c-0.448 40.768-2.24 65.856-4.928 75.264-2.688 9.856-8.96 15.232-19.712 15.68-9.408-0.896-21.056-1.792-35.392-3.136l10.304 37.184c13.44 1.344 24.64 2.24 34.048 2.24 20.608 0 34.944-8.064 43.456-23.744 8.064-15.68 12.544-63.168 12.992-142.912z m163.072 51.072v92.736h-53.76V406.08h53.76z" fill="#ED2525" fill-opacity="1" opacity="1" p-id="13286"></path></svg> |
| | | <svg v-else-if="item.overtime === 1 "t="1721902978015" class="icon work-order-overtime" width="36" height="36" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5608"><path d="M512.2 141.8c-203.1 0-367.8 164.7-367.8 367.8s164.7 367.8 367.8 367.8c203.1 0 367.8-164.7 367.8-367.8S715.3 141.8 512.2 141.8z m162.4 494.3c-9.1 12.1-26.5 14.6-38.6 5.5l-143.9-108c-3.6-2.7-6.4-6.2-8.3-10.1-2.3-4-3.7-8.7-3.7-13.6V295.4c0-15.2 12.4-27.6 27.6-27.6 15.2 0 27.6 12.4 27.6 27.6V497L669 597.4c12.3 9.1 14.8 26.5 5.6 38.7zM122.5 277.1l-26.9-26.9c-3.9-3.9-3.9-10.3 0-14.1l129.7-129.7c3.9-3.9 10.3-3.9 14.1 0l26.9 26.9c3.9 3.9 3.9 10.3 0 14.1L136.7 277.1c-3.9 3.9-10.3 3.9-14.2 0zM901.9 277.1l26.9-26.9c3.9-3.9 3.9-10.3 0-14.1L799.1 106.3c-3.9-3.9-10.3-3.9-14.1 0l-27 27c-3.9 3.9-3.9 10.3 0 14.1l129.7 129.7c3.9 3.9 10.3 3.9 14.2 0z" fill="#d81e06" p-id="5609"></path><path d="M201.9 919.2L175 892.3c-3.9-3.9-3.9-10.3 0-14.1l129.7-129.7c3.9-3.9 10.3-3.9 14.1 0l26.9 26.9c3.9 3.9 3.9 10.3 0 14.1L216.1 919.2c-3.9 3.9-10.3 3.9-14.2 0zM821.5 919.2l26.9-26.9c3.9-3.9 3.9-10.3 0-14.1L718.7 748.5c-3.9-3.9-10.3-3.9-14.1 0l-26.9 26.9c-3.9 3.9-3.9 10.3 0 14.1l129.7 129.7c3.8 3.9 10.2 3.9 14.1 0z" fill="#d81e06" p-id="5610"></path></svg> |
| | | |
| | | <el-carousel trigger="click" height="150px" :autoplay="false" indicator-position="none"> |
| | | <el-carousel trigger="click" height="160px" :autoplay="false" indicator-position="none"> |
| | | <el-carousel-item> |
| | | <div class="card"> |
| | | <div class="card-left"> |
| | |
| | | <el-col :span="24" class="time">故障时间:{{ item.createTime }}</el-col> |
| | | </el-row> |
| | | <el-row class="work-order-item"> |
| | | <el-col class="time" :span="24"><div>国标码:{{ item.serialNumber }}</div><div>{{ item.source }}</div></el-col> |
| | | <el-col class="time" :span="24"> |
| | | <div>国标码:{{ item.serialNumber }}</div> |
| | | <el-tooltip effect="dark" :content="item.source" placement="top-start"> |
| | | <div>{{ item.source }}</div> |
| | | </el-tooltip> |
| | | <div>IP:{{ item.ip }}</div> |
| | | </el-col> |
| | | </el-row> |
| | | <el-row style="position: absolute;bottom: 10px"> |
| | | <el-row style="position: absolute"> |
| | | <el-button |
| | | size="mini" |
| | | type="text" |
| | |
| | | size="mini" |
| | | type="text" |
| | | @click="handleDetail(item)" |
| | | v-hasPermi="['system:workorder:detail']" |
| | | v-hasPermi="['work:order:detail']" |
| | | >详情 |
| | | </el-button> |
| | | <el-button |
| | | class="my-button" |
| | | size="mini" |
| | | type="text" |
| | | @click="handleCheck(item)" |
| | | v-show="item.status === 'YW_HANDLE'" |
| | | v-hasPermi="['system:workorder:getImage']" |
| | | >检测 |
| | | </el-button> |
| | | <el-button |
| | | class="my-button" |
| | | size="mini" |
| | | type="text" |
| | | @click="handleDelete(item)" |
| | | v-hasPermi="['work:order:delete']" |
| | | >删除 |
| | | </el-button> |
| | | </el-row> |
| | | </div> |
| | |
| | | <div class="moreInfo"> |
| | | <el-descriptions style="width: 100%" title="" border :column="2" size="medium"> |
| | | <el-descriptions-item label="负责单位">{{ item.unitName }}</el-descriptions-item> |
| | | <el-descriptions-item label="负责人">张一山</el-descriptions-item> |
| | | <el-descriptions-item label="联系电话">15115115142</el-descriptions-item> |
| | | <el-descriptions-item label="负责人">{{ item.unitContact }}</el-descriptions-item> |
| | | <el-descriptions-item label="联系电话">{{ item.unitContactPhone }}</el-descriptions-item> |
| | | </el-descriptions> |
| | | </div> |
| | | </el-carousel-item> |
| | |
| | | </div> |
| | | </el-dialog> |
| | | |
| | | <WorkOrderAuditing :auditingOpen="auditingOpen" :dataForm="auditingForm" :ywConditions="ywConditions" @close="closeAuditing"/> |
| | | <WorkOrderAuditing :auditingOpen="auditingOpen" :dataForm="auditingForm" :ywConditions="ywConditions" @close="closeAuditing" @getList="getList"/> |
| | | <!-- <el-dialog title="工单审核" :visible.sync="auditingOpen" width="1000px" append-to-body>--> |
| | | <!-- <el-row :gutter="20">--> |
| | | <!-- <el-col :span="10">--> |
| | |
| | | <!-- </el-dialog>--> |
| | | |
| | | <el-dialog title="运维情况记录" :visible.sync="ywConditionOpen" width="500px" append-to-body> |
| | | <el-form ref="form" :model="form" :rules="ywConditionRules" label-width="80px"> |
| | | <el-form-item label="工单号" prop="workOrderNo"> |
| | | <el-form ref="ywConditionForm" :model="form" :rules="ywConditionRules" label-width="80px"> |
| | | <el-form-item label="工单号" prop="workOrderNo" v-if="!isConditionList"> |
| | | <el-input v-model="ywConditionForm.workOrderNo" disabled/> |
| | | </el-form-item> |
| | | <el-form-item label="运维单位" prop="unitName"> |
| | | <el-form-item label="运维单位" prop="unitName" v-if="!isConditionList"> |
| | | <el-input v-model="ywConditionForm.unitName" disabled/> |
| | | </el-form-item> |
| | | <el-form-item label="现场情况" prop="ywCondition"> |
| | |
| | | <el-form ref="batchAuditingWorkOrder" :model="batchAuditingWorkOrder" label-width="80px" |
| | | :rules="batchAuditingRules" |
| | | > |
| | | <el-form-item label="故障类型" prop="errorType"> |
| | | <el-select v-model="batchAuditingWorkOrder.errorTypes" multiple placeholder="故障类型"> |
| | | <el-option v-for="dict in dict.type.error_type" :value="dict.value" :key="dict.value" :label="dict.label" /> |
| | | </el-select> |
| | | </el-form-item> |
| | | <el-form-item label="审核说明" prop="auditingRemark"> |
| | | <el-input v-model="batchAuditingWorkOrder.auditingRemark" type="textarea" maxlength="30" show-word-limit/> |
| | | </el-form-item> |
| | |
| | | > |
| | | <div style="padding: 20px;font-size: 14px"> |
| | | <div class="row flow-item-x"> |
| | | <div class="flex1"><p>上报内容:</p></div> |
| | | <div class="flex2"> |
| | | <div class="flex1" style=""><p>上报内容:</p></div> |
| | | <div class="flex2" style="color: black"> |
| | | <div v-html="ywData.content"></div> |
| | | </div> |
| | | </div> |
| | |
| | | </div> |
| | | </el-dialog> |
| | | |
| | | <!-- 工单检测结果 --> |
| | | <el-dialog title="工单检测结果" :visible.sync="checkImageOpen" width="1200px" append-to-body> |
| | | <div style="display: flex;justify-content: center;align-items: center; height: 600px" v-loading="imageLoading"> |
| | | <el-image |
| | | v-if="imageUrl" |
| | | style="width: 100%; height: auto" |
| | | :src="imageUrl" |
| | | :preview-src-list="[imageUrl]" |
| | | > |
| | | </el-image> |
| | | <el-image style="display: flex;justify-content: center;align-items: center; height: 600px" v-else> |
| | | <div slot="error" class="image-slot"> |
| | | <i class="el-icon-picture-outline" style="color: gray;font-size: 14px">未取到图片</i> |
| | | </div> |
| | | </el-image> |
| | | </div> |
| | | </el-dialog> |
| | | </div> |
| | | </template> |
| | | <style scoped> |
| | |
| | | </style> |
| | | <script> |
| | | import { |
| | | ywConditionList, |
| | | listWorkOrder, |
| | | getWorkOrder, |
| | | delWorkOrder, |
| | |
| | | batchAuditing, |
| | | ywCondition, |
| | | getYwCondition, |
| | | checkWorkOrder, |
| | | batchDelWorkOrder, |
| | | errorTypeAll, |
| | | process |
| | | } from '@/api/platform/work-order' |
| | | import {workList} from "@/api/platform/unit"; |
| | | import { addReport } from '@/api/platform/report' |
| | | import WorkOrderAuditing from "@/components/WorkOrder/WorkOrderAuditing"; |
| | | |
| | |
| | | components: {WorkOrderAuditing}, |
| | | data() { |
| | | return { |
| | | isConditionList:false, |
| | | isSelectAll: false, // 全选按钮 |
| | | activeIndex: '0', |
| | | drawer: false, |
| | | empty: false, |
| | | openShowCurrent: null, |
| | | workOrderNumbers: [], // 用于存储选中的项目ID |
| | | errorTypeList: [], // 用于存储选中的项目ID |
| | | errorTypeLabelsMap: {}, // 用于存储 value 到 label 的映射 |
| | | ywConditions: [], |
| | | unitList: [], |
| | | imageUrl: null, |
| | | timeRange : null, |
| | | batchAuditingVisible: false, |
| | | batchAuditingWorkOrder: { |
| | | errorTypes: [], |
| | | workOrderNumbers: [], |
| | | auditingRemark: '', |
| | | auditingResult: '' |
| | | }, |
| | |
| | | }, |
| | | // 过程图 |
| | | flowOpen: false, |
| | | // 工单检测结果 |
| | | checkImageOpen: false, |
| | | flowForm: {}, |
| | | certificateList: [], |
| | | pictureList: [], |
| | | // 遮罩层 |
| | | loading: true, |
| | | imageLoading: false, |
| | | // 选中数组 |
| | | ids: [], |
| | | // 非单个禁用 |
| | |
| | | daterangeYwHandleTime: [], |
| | | // 查询参数 |
| | | queryParams: { |
| | | errorTypeList: [], |
| | | errorType: null, |
| | | pageNum: 1, |
| | | pageSize: 10, |
| | | unitId: null, |
| | | keyword: null, |
| | | status: '' |
| | | }, |
| | | imageQueryParams:{ |
| | | workOrderNo: null, |
| | | serialNumber: null |
| | | }, |
| | | // 表单参数 |
| | | form: {}, |
| | |
| | | }, |
| | | // 批量审核校验 |
| | | batchAuditingRules: { |
| | | errorTypes: [ |
| | | workOrderNumbers: [ |
| | | { required: true, message: '请选择故障类型', trigger: 'change' } |
| | | ] |
| | | }, |
| | |
| | | ywData: { |
| | | content: '', |
| | | fileList: 'process.env.VUE_APP_BASE_API' |
| | | } |
| | | }, |
| | | |
| | | } |
| | | }, |
| | | created() { |
| | | const today = new Date(); |
| | | const start = today.toISOString().split('T')[0]; // 获取日期部分,格式为 yyyy-MM-dd |
| | | const end = start; // 结束日期也是当天 |
| | | this.timeRange = [start, end]; |
| | | this.getErrorList() |
| | | this.getList() |
| | | }, |
| | | methods: { |
| | | selectedDistribute(){ |
| | | this.form = {} |
| | | if (this.workOrderNumbers.length < 1) { |
| | | this.$message.warning("请先选择要下发的工单") |
| | | return |
| | | } |
| | | this.form.workOrderNumbers = this.workOrderNumbers; |
| | | this.ywConditionOpen = true |
| | | this.isConditionList = true |
| | | }, |
| | | |
| | | //全选按钮 |
| | | toggleSelectAll() { |
| | | this.isSelectAll = !this.isSelectAll; |
| | | if (this.isSelectAll) { |
| | | this.workOrderNumbers = this.workOrderList.map(order => order.workOrderNo); |
| | | } else { |
| | | this.workOrderNumbers = []; |
| | | } |
| | | }, |
| | | // 计算每个卡片应该显示的错误类型列表(最多3个) |
| | | displayedErrors(errorTypeList) { |
| | | return errorTypeList.slice(0, 3); |
| | | }, |
| | | // 生成所有错误类型的字符串,用于Tooltip |
| | | allErrorTypesMessage(errorTypeList) { |
| | | return errorTypeList.join(', '); |
| | | }, |
| | | |
| | | closeAuditing() { |
| | | this.auditingOpen = false |
| | | }, |
| | |
| | | this.ywData.fileList = item.ywProofMaterials |
| | | this.drawer = true |
| | | }, |
| | | changeUnit(unitId, unitName) { |
| | | this.unitId = unitId; |
| | | this.queryParams.unitId = unitId; |
| | | this.unitName = unitName; |
| | | this.getList() |
| | | }, |
| | | // 批量审核 |
| | | batchAuditing(result) { |
| | | this.batchAuditingWorkOrder.auditingResult = result |
| | | this.batchAuditingWorkOrder.workOrderNumbers = this.workOrderNumbers |
| | | this.$refs['batchAuditingWorkOrder'].validate(valid => { |
| | | if (valid) { |
| | | batchAuditing(this.batchAuditingWorkOrder).then(res => { |
| | |
| | | this.form = {} |
| | | this.ywConditionForm = row |
| | | this.ywConditionOpen = true |
| | | this.isConditionList = false |
| | | this.form.id = row.id |
| | | }, |
| | | // 运维结果按钮 |
| | |
| | | }, |
| | | // 提交运维情况 |
| | | submitYwCondition() { |
| | | this.$refs['form'].validate(valid => { |
| | | this.$refs['ywConditionForm'].validate(valid => { |
| | | if (valid) { |
| | | ywCondition(this.form).then(res => { |
| | | this.ywConditionOpen = false |
| | | this.$modal.msgSuccess('操作成功') |
| | | this.getList() |
| | | }) |
| | | if(this.isConditionList){ |
| | | ywConditionList(this.form).then(res => { |
| | | this.ywConditionOpen = false |
| | | this.$modal.msgSuccess('操作成功') |
| | | this.getList() |
| | | }) |
| | | }else { |
| | | ywCondition(this.form).then(res => { |
| | | this.ywConditionOpen = false |
| | | this.$modal.msgSuccess('操作成功') |
| | | this.getList() |
| | | }) |
| | | } |
| | | |
| | | } |
| | | }) |
| | | }, |
| | | cancelYwCondition() { |
| | | this.ywConditionForm = {} |
| | | this.ywConditionOpen = false |
| | | this.isConditionList = false |
| | | }, |
| | | // 提交运维结果 |
| | | submitYwResult() { |
| | |
| | | this.checkResultForm = {} |
| | | this.checkResultOpen = false |
| | | }, |
| | | getErrorList() { |
| | | errorTypeAll().then(errorRes => { |
| | | this.errorTypeList = errorRes.data; |
| | | // 在组件创建时构建映射 |
| | | this.errorTypeList.forEach(item => { |
| | | item.children.forEach(child => { |
| | | this.errorTypeLabelsMap[child.value] = child.label; |
| | | }) |
| | | }); |
| | | }) |
| | | }, |
| | | /** 查询运维工单列表 */ |
| | | getList() { |
| | | this.empty = false; |
| | | this.loading = true |
| | | this.queryParams.params = {} |
| | | if (this.queryParams.timeRange && this.queryParams.timeRange.length > 0) { |
| | | this.queryParams.start = this.queryParams.timeRange[0] |
| | | this.queryParams.end = this.queryParams.timeRange[1] |
| | | if (this.timeRange && this.timeRange.length > 0) { |
| | | this.queryParams.start = this.timeRange[0] |
| | | this.queryParams.end = this.timeRange[1] |
| | | }else { |
| | | this.queryParams.start = null |
| | | this.queryParams.end = null |
| | | } |
| | | |
| | | //后端复用一个接口 |
| | | this.queryParams.isNotDistribute = true; |
| | | if(this.queryParams.errorType){ |
| | | this.queryParams.errorTypeLabel = this.errorTypeLabelsMap[this.queryParams.errorType]; |
| | | } |
| | | //重置全选 |
| | | this.workOrderNumbers = [] |
| | | this.isSelectAll = false |
| | | listWorkOrder(this.queryParams).then(response => { |
| | | response.data.forEach(item => { |
| | | if (item.imgList) { |
| | | item.imgList = item.imgList.map(img => { |
| | | return this.$img + img |
| | | }) |
| | | workList(this.queryParams).then(res => { |
| | | this.unitList = res.data; |
| | | response.data.forEach(item => { |
| | | if (item.imgList) { |
| | | item.imgList = item.imgList.map(img => { |
| | | return this.$img + img |
| | | }) |
| | | } |
| | | }) |
| | | this.workOrderList = response.data |
| | | this.total = response.total |
| | | this.loading = false |
| | | if (this.total === 0) { |
| | | this.empty = true |
| | | } |
| | | }) |
| | | this.workOrderList = response.data |
| | | this.total = response.total |
| | | this.loading = false |
| | | if (this.total === 0) { |
| | | this.empty = true |
| | | } |
| | | }) |
| | | // .catch(error => { |
| | | // //避免防重提卡在加载 |
| | | // this.loading = false; |
| | | // }); |
| | | }, |
| | | // 取消按钮 |
| | | cancel() { |
| | |
| | | this.ids = selection.map(item => item.id) |
| | | this.single = selection.length !== 1 |
| | | this.multiple = !selection.length |
| | | }, |
| | | // 多选框选中数据 |
| | | toggleSelection(item) { |
| | | console.log(item.workOrderNo) |
| | | console.log(this.workOrderNumbers) |
| | | const index = this.workOrderNumbers.indexOf(item.workOrderNo); |
| | | if (index > -1) { |
| | | this.workOrderNumbers.splice(index, 1); // 移除选中项 |
| | | } else { |
| | | this.workOrderNumbers.push(item.workOrderNo); // 添加选中项 |
| | | } |
| | | }, |
| | | /** 新增按钮操作 */ |
| | | handleAdd() { |
| | |
| | | /** 删除按钮操作 */ |
| | | handleDelete(row) { |
| | | const ids = row.id || this.ids |
| | | this.$modal.confirm('是否确认删除运维工单编号为"' + ids + '"的数据项?').then(function() { |
| | | this.$modal.confirm('是否确认删除运维工单编号为"' + ids + '"的工单?').then(function() { |
| | | return delWorkOrder(ids) |
| | | }).then(() => { |
| | | this.getList() |
| | | this.$modal.msgSuccess('删除成功') |
| | | }).catch(() => { |
| | | }) |
| | | }, |
| | | batchDelete() { |
| | | this.$modal.confirm('是否确认删除选中的工单?') |
| | | .then(() => { |
| | | return batchDelWorkOrder(this.workOrderNumbers) |
| | | }) |
| | | .then(() => { |
| | | this.getList() |
| | | this.workOrderNumbers = [] |
| | | this.isSelectAll = false |
| | | this.$modal.msgSuccess('删除成功') |
| | | }) |
| | | .catch(() => { |
| | | }) |
| | | }, |
| | | /** 检测按钮操作 */ |
| | | handleCheck(row) { |
| | | this.imageUrl = null |
| | | this.imageLoading = true |
| | | this.checkImageOpen = true |
| | | this.imageQueryParams = {} |
| | | this.imageQueryParams.workOrderNo= row.workOrderNo |
| | | this.imageQueryParams.serialNumber= row.serialNumber |
| | | checkWorkOrder(this.imageQueryParams).then((res) => { |
| | | this.imageUrl = this.$img + res.data |
| | | console.log( "图片地址"+this.imageUrl ) |
| | | this.imageLoading = false |
| | | }).catch(() => { |
| | | this.imageLoading = false |
| | | }) |
| | | }, |
| | | /** 导出按钮操作 */ |
| | |
| | | ...this.queryParams |
| | | }, `work-order_${new Date().getTime()}.xlsx`) |
| | | } |
| | | } |
| | | }, |
| | | computed: { |
| | | totalWorkOrders() { |
| | | return this.unitList.reduce((total, item) => total + item.workOrderCount, 0); |
| | | }, |
| | | isItemSelected() { |
| | | // 创建一个对象,键为workOrderNo,值为是否选中 |
| | | const selected = {}; |
| | | this.workOrderList.forEach(item => { |
| | | selected[item.workOrderNo] = this.workOrderNumbers.includes(item.workOrderNo); |
| | | }); |
| | | return selected; |
| | | } |
| | | }, |
| | | } |
| | | </script> |
| | | |
| | |
| | | display: flex; |
| | | flex-direction: row; |
| | | } |
| | | .card-left { |
| | | flex: 2; |
| | | } |
| | | |
| | | .work-order { |
| | | flex: 3; |
| | | padding-right: 10px; |
| | |
| | | .my-button { |
| | | margin-left: 0px !important; |
| | | margin-right: 15px; |
| | | margin-bottom: -10px; |
| | | } |
| | | .my-col { |
| | | margin-bottom: 20px; box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; position: relative; |
| | |
| | | ::v-deep el-step__description.is-finish { |
| | | color: gray; |
| | | } |
| | | |
| | | </style> |