| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888 |
- <script setup>
- import { ref, computed, watch, nextTick, reactive } from "vue";
- import { onLoad } from "@dcloudio/uni-app";
- import { getRuiYingReportDetail } from "@/api/ruiying";
- import { useDataDictStore } from "@/store/modules/dataDict";
- import tpfTimeRange from "@/components/tpf-time-range/tpf-time-range.vue";
- import dayjs from "dayjs";
- import { useDebounceFn } from "@/utils/useDebounceFn.js";
- const props = defineProps({
- type: {
- type: String,
- default: "edit",
- },
- });
- const NON_PROD_FIELDS = [
- { key: "repairTime", label: "设备故障" },
- { key: "selfStopTime", label: "设备保养" },
- { key: "accidentTime", label: "工程质量" },
- { key: "complexityTime", label: "技术受限" },
- { key: "rectificationTime", label: "生产组织" },
- { key: "waitingStopTime", label: "不可抗力" },
- { key: "partyaDesign", label: "甲方设计" },
- { key: "partyaPrepare", label: "甲方准备" },
- { key: "partyaResource", label: "甲方资源" },
- { key: "relocationTime", label: "生产配合" },
- { key: "winterBreakTime", label: "待命" },
- { key: "otherNptTime", label: "其他非生产时间" },
- ];
- const FORM_KEYS = [
- "id",
- "deptId",
- "projectId",
- "taskId",
- "deptName",
- "contractName",
- "taskName",
- "rigStatus",
- "designWellDepth",
- "currentDepth",
- "dailyPowerUsage",
- "dailyFuel",
- "mudDensity",
- "mudViscosity",
- "lateralLength",
- "wellInclination",
- "azimuth",
- "designWellStruct",
- "personnel",
- "drillingWorkingTime",
- "otherProductionTime",
- "lastCurrentDepth",
- "reportDetails",
- "constructionBrief",
- "remark",
- "createTime",
- "opinion",
- "repairTime",
- "selfStopTime",
- "accidentTime",
- "complexityTime",
- "rectificationTime",
- "waitingStopTime",
- "partyaDesign",
- "partyaPrepare",
- "partyaResource",
- "relocationTime",
- "winterBreakTime",
- "otherNptTime",
- "otherNptReason",
- "status",
- "auditStatus",
- ];
- const formType = ref("edit");
- const initFormData = () => {
- const base = {
- drillingWorkingTime: 0,
- otherProductionTime: 0,
- constructionBrief: "",
- reportDetails: [],
- };
- // 初始化所有非生产时间字段为 0
- NON_PROD_FIELDS.forEach(field => {
- base[field.key] = 0;
- });
- return base;
- };
- const form = ref(initFormData());
- const formatT = arr =>
- `${arr[0].toString().padStart(2, "0")}:${arr[1].toString().padStart(2, "0")}`;
- async function loadDetail(id) {
- try {
- const { data } = await getRuiYingReportDetail({ id });
- form.value = initFormData();
- FORM_KEYS.forEach(key => {
- if (
- Object.prototype.hasOwnProperty.call(data, key) &&
- data[key] !== null &&
- data[key] !== undefined
- ) {
- form.value[key] = data[key];
- }
- });
- form.value.reportDetails = form.value.reportDetails.map(item => ({
- reportDate: item.reportDate || form.value.createTime,
- duration: item.duration || 0,
- constructionDetail: item.constructionDetail || "",
- currentDepth: item.currentDepth || 0,
- currentOperation: item.currentOperation || "",
- startTime: formatT(item.startTime),
- endTime: formatT(item.endTime),
- }));
- if (!form.value.reportDetails.length) {
- addReportDetailRow();
- }
- form.value.id = id;
- if (props.type.includes("approval") && data.auditStatus !== 10) {
- formType.value = "readonly";
- }
- if (props.type.includes("edit") && data.status !== 0) {
- formType.value = "readonly";
- }
- if (props.type.includes("detail")) {
- formType.value = "readonly";
- }
- } finally {
- }
- }
- const addReportDetailRow = () => {
- if (!form.value.reportDetails) {
- form.value.reportDetails = [];
- }
- form.value.reportDetails.push({
- reportDate: form.value.createTime ?? dayjs().valueOf(),
- startTime: "08:00",
- endTime: "08:00",
- duration: 0,
- constructionDetail: "",
- currentDepth: 0,
- currentOperation: "",
- });
- };
- const removeReportDetailRow = index => {
- if (index === 0) {
- uni.showToast({ title: "至少填写一条生产动态", icon: "none" });
- return;
- }
- form.value.reportDetails?.splice(index, 1);
- };
- const dictStore = useDataDictStore();
- const nptReasonOptions = ref([]);
- const rigStatusOptions = ref([]);
- const loadOptions = () => {
- nptReasonOptions.value = dictStore.getStrDictOptions("nptReason").map(v => ({
- text: v.label,
- value: v.value,
- }));
- rigStatusOptions.value = dictStore.getStrDictOptions("rigStatus").map(v => ({
- text: v.label,
- value: v.value,
- }));
- };
- onLoad(options => {
- if (dictStore.dataDict.length <= 0) {
- dictStore.loadDataDictList().then(() => {
- loadOptions();
- });
- } else loadOptions();
- loadDetail(options.id);
- });
- const defaultProps = computed(() => ({
- inputBorder: false,
- clearable: false,
- placeholder: "请输入",
- style: {
- "text-align": "right",
- },
- styles: {
- disableColor: "#fff",
- },
- }));
- const disabled = computed(() => field => {
- if (field === "edit")
- return (
- formType.value === "readonly" ||
- props.type.includes("approval") ||
- props.type.includes("detail")
- );
- else return formType.value === "readonly";
- });
- const formRef = ref(null);
- // 辅助函数:计算总时间
- const sumNonProdTimes = () => {
- let sum = 0;
- NON_PROD_FIELDS.forEach(field => {
- sum += Number(form.value[field.key] || 0);
- });
- return sum;
- };
- // 校验函数:总时间必须为 24
- const validateTotalTime = (rule, value, data, callback) => {
- const drillingTime = Number(form.value.drillingWorkingTime || 0);
- const otherTime = Number(form.value.otherProductionTime || 0);
- const nonProdSum = sumNonProdTimes();
- let total = 0;
- let msg = "";
- total = parseFloat((drillingTime + otherTime + nonProdSum).toFixed(2));
- msg = `进尺(${drillingTime})+其他(${otherTime})+非生产(${nonProdSum})=${total}H,必须为24H`;
- if (Math.abs(total - 24) > 0.01) {
- callback(msg);
- }
- return true;
- };
- const validateLastCurrentDepth = (rule, value, data, callback) => {
- if (value && Number(value) < (form.value.lastCurrentDepth ?? 0)) {
- callback(`当前深度需大于等于上一次填报深度${form.value.lastCurrentDepth}m`);
- } else {
- callback();
- }
- };
- // uni-forms 规则定义
- const rules = reactive({
- currentDepth: {
- rules: [
- { required: true, errorMessage: "请输入当前深度" },
- { validateFunction: validateLastCurrentDepth },
- ],
- },
- drillingWorkingTime: {
- rules: [
- { required: true, errorMessage: "请输入进尺工作时间" },
- { validateFunction: validateTotalTime },
- ],
- },
- constructionBrief: {
- rules: [
- {
- required: props.type === "approval",
- errorMessage: `请输入当日施工简报`,
- },
- ],
- },
- });
- const allTimeKeys = [
- "drillingWorkingTime",
- "otherProductionTime",
- ...NON_PROD_FIELDS.map(f => f.key),
- ];
- watch(
- () => allTimeKeys.map(key => form.value[key]),
- () => {
- nextTick(() => {
- formRef.value?.validateField("drillingWorkingTime");
- });
- }
- );
- defineExpose({ formRef, form, loadDetail });
- const orange = computed(() => {
- const drillingTime = Number(form.value.drillingWorkingTime || 0);
- const otherTime = Number(form.value.otherProductionTime || 0);
- const nonProdSum = sumNonProdTimes();
- let total = 0;
- total = parseFloat((drillingTime + otherTime + nonProdSum).toFixed(2));
- if (Math.abs(total - 24) > 0.01) return true;
- return false;
- });
- const reportDetailsTimeRangeRef = ref(null);
- const startTime = ref("00:00");
- const startDefaultTime = ref("08:00");
- const endTime = ref("24:00");
- const endDefaultTime = ref("08:00");
- const reportDetailIndex = ref(0);
- const handleClickTimeRangeItem = index => {
- reportDetailIndex.value = index;
- reportDetailsTimeRangeRef.value.open();
- };
- const calculateDuration = row => {
- if (!row.startTime || !row.endTime) {
- row.duration = 0;
- return;
- }
- const todayStr = dayjs().format("YYYY-MM-DD");
- const start = dayjs(`${todayStr} ${row.startTime}`);
- const end = dayjs(`${todayStr} ${row.endTime}`);
- let diffMinutes = end.diff(start, "minute");
- if (diffMinutes < 0) {
- diffMinutes += 1440;
- }
- row.duration = Number((diffMinutes / 60).toFixed(2));
- };
- const reportDetailsTimeRange = data => {
- form.value.reportDetails[reportDetailIndex.value].startTime = data[0];
- form.value.reportDetails[reportDetailIndex.value].endTime = data[1];
- calculateDuration(form.value.reportDetails[reportDetailIndex.value]);
- inputCurrentDepth();
- };
- const inputCurrentDepth = useDebounceFn(function inputCurrentDepth() {
- const details = form.value.reportDetails;
- if (Array.isArray(details) && details.length > 0) {
- const latestDetail = details.reduce((prev, current) => {
- const currentFullTime = dayjs(current.reportDate)
- .hour(parseInt(current.endTime.split(":")[0]))
- .minute(parseInt(current.endTime.split(":")[1]))
- .valueOf();
- const prevFullTime = dayjs(prev.reportDate)
- .hour(parseInt(prev.endTime.split(":")[0]))
- .minute(parseInt(prev.endTime.split(":")[1]))
- .valueOf();
- return currentFullTime >= prevFullTime ? current : prev;
- });
- form.value.currentDepth = latestDetail.currentDepth;
- }
- }, 300);
- </script>
- <template>
- <view class="content">
- <view class="tip">
- <view class="item">
- <view class="left">
- <span>油量消耗:</span>
- 当日油耗
- </view>
- <span class="right red"> >9000升 红色预警 </span>
- </view>
- <view class="item">
- <view class="left">
- <span>时间平衡:</span>
- 进尺 + 其它生产 + 非生产 = 24H
- </view>
- <span class="right orange"> ≠24H 橙色预警 </span>
- </view>
- </view>
- <view v-if="!type.includes('approval') && form.opinion" class="opinion">
- <span class="left">审批意见:</span>
- <span class="right"> {{ form.opinion }} </span>
- </view>
- <uni-forms
- ref="formRef"
- labelWidth="auto"
- :model="form"
- :rules="rules"
- validateTrigger="submit"
- err-show-type="toast">
- <uni-forms-item label="施工队伍" name="deptName">
- <span class="readOnly">{{ form.deptName }}</span>
- </uni-forms-item>
- <uni-forms-item label="项目" name="contractName">
- <span class="readOnly">{{ form.contractName }}</span>
- </uni-forms-item>
- <uni-forms-item label="任务" name="taskName">
- <span class="readOnly">{{ form.taskName }}</span>
- </uni-forms-item>
- <uni-forms-item label="施工状态" name="rigStatus">
- <uni-data-select
- :clear="true"
- align="right"
- placeholder="请选择"
- :localdata="rigStatusOptions"
- placement="top"
- :disabled="disabled('edit')"
- v-model="form.rigStatus" />
- </uni-forms-item>
- <uni-forms-item label="设计井深(m)" name="designWellDepth">
- <span class="readOnly">{{ form.designWellDepth }}</span>
- </uni-forms-item>
- <uni-forms-item label="当前井深(m)" name="currentDepth" required>
- <uni-easyinput
- type="number"
- v-bind="defaultProps"
- :disabled="disabled('edit')"
- v-model="form.currentDepth" />
- </uni-forms-item>
- <uni-forms-item label="当日用电量(kWh)" name="dailyPowerUsage">
- <uni-easyinput
- type="number"
- v-bind="defaultProps"
- :disabled="disabled('edit')"
- v-model="form.dailyPowerUsage" />
- </uni-forms-item>
- <uni-forms-item label="当日油耗(升)" name="dailyFuel">
- <uni-easyinput
- type="number"
- :class="{ 'red-text': Number(form.dailyFuel) > 9000 }"
- v-bind="defaultProps"
- :disabled="disabled('edit')"
- v-model="form.dailyFuel" />
- </uni-forms-item>
- <uni-forms-item label="泥浆粘度(S)" name="mudViscosity">
- <uni-easyinput
- type="number"
- v-bind="defaultProps"
- :disabled="disabled('edit')"
- v-model="form.mudViscosity" />
- </uni-forms-item>
- <!-- <uni-forms-item label="泥浆粘度(S)" name="mudViscosity">
- <uni-easyinput
- type="number"
- v-bind="defaultProps"
- :disabled="disabled('edit')"
- v-model="form.mudViscosity" />
- </uni-forms-item> -->
- <uni-forms-item label="水平段长度(m)" name="lateralLength">
- <uni-easyinput
- type="number"
- v-bind="defaultProps"
- :disabled="disabled('edit')"
- v-model="form.lateralLength" />
- </uni-forms-item>
- <uni-forms-item label="井斜(°)" name="wellInclination">
- <uni-easyinput
- type="number"
- v-bind="defaultProps"
- :disabled="disabled('edit')"
- v-model="form.wellInclination" />
- </uni-forms-item>
- <uni-forms-item label="方位(°)" name="azimuth">
- <uni-easyinput
- type="number"
- v-bind="defaultProps"
- :disabled="disabled('edit')"
- v-model="form.azimuth" />
- </uni-forms-item>
- <uni-forms-item label="设计井身结构" name="designWellStruct">
- <uni-easyinput
- type="textarea"
- autoHeight
- v-bind="defaultProps"
- :disabled="disabled('edit')"
- v-model="form.designWellStruct"
- :maxlength="1000" />
- </uni-forms-item>
- <uni-forms-item label="人员情况" name="personnel">
- <uni-easyinput
- type="textarea"
- autoHeight
- v-bind="defaultProps"
- :disabled="disabled('edit')"
- v-model="form.personnel"
- :maxlength="1000" />
- </uni-forms-item>
- <!-- <uni-forms-item label="生产动态" name="productionStatus" required>
- <uni-easyinput
- type="textarea"
- autoHeight
- v-bind="defaultProps"
- v-model="form.productionStatus"
- :disabled="disabled('edit')"
- :maxlength="1000" />
- </uni-forms-item> -->
- <uni-forms-item
- label="当日施工简报"
- :required="type === 'approval'"
- name="constructionBrief">
- <uni-easyinput
- type="textarea"
- autoHeight
- v-bind="defaultProps"
- :disabled="type !== 'approval'"
- v-model="form.constructionBrief"
- :maxlength="2000" />
- </uni-forms-item>
- <uni-forms-item label="备注" name="remark">
- <uni-easyinput
- type="textarea"
- autoHeight
- v-bind="defaultProps"
- :disabled="disabled('edit')"
- v-model="form.remark"
- :maxlength="1000" />
- </uni-forms-item>
- <uv-divider text="生产动态" textPosition="left"></uv-divider>
- <uni-forms-item v-if="!disabled('edit')">
- <button
- type="primary"
- size="mini"
- class="detail-btn"
- @click="addReportDetailRow()">
- 添加一行
- </button>
- </uni-forms-item>
- <template v-for="(item, index) in form.reportDetails" :key="index">
- <uv-divider v-if="index !== 0" class="divider"></uv-divider>
- <uni-forms-item
- label="日期"
- required
- :name="['reportDetails', index, 'reportDate']"
- :rules="[{ required: true, errorMessage: '请选择日期' }]">
- <uni-datetime-picker
- class="datetime-picker"
- type="date"
- returnType="timestamp"
- v-model="item.reportDate"
- :border="false"
- :disabled="disabled('edit')"
- @change="inputCurrentDepth()" />
- </uni-forms-item>
- <uni-forms-item :label="`${$t('ruiDu.timeNode')}:`" required>
- <view
- class="item-content"
- @click="disabled('edit') ? '' : handleClickTimeRangeItem(index)">
- <view class="time-range-item" v-if="item.startTime && item.endTime">
- {{ item.startTime }} 至 {{ item.endTime }}
- </view>
- <view class="time-range-item" v-else> '请选择' </view>
- </view>
- </uni-forms-item>
- <uni-forms-item label="时长(H)">
- <span class="readOnly">{{ item.duration }}</span>
- </uni-forms-item>
- <uni-forms-item
- label="工况"
- required
- :name="['reportDetails', index, 'currentOperation']"
- :rules="[{ required: true, errorMessage: '请输入工况' }]">
- <uni-easyinput
- type="textarea"
- autoHeight
- v-bind="defaultProps"
- :disabled="disabled('edit')"
- v-model="item.currentOperation"
- :maxlength="2000" />
- </uni-forms-item>
- <uni-forms-item
- label="结束井深(m)"
- required
- :name="['reportDetails', index, 'currentDepth']"
- :rules="[
- { required: true, errorMessage: '请输入结束深度' },
- { validateFunction: validateLastCurrentDepth },
- ]">
- <uni-easyinput
- type="number"
- v-bind="defaultProps"
- :disabled="disabled('edit')"
- v-model.number="item.currentDepth"
- @input="val => inputCurrentDepth(val, index)" />
- </uni-forms-item>
- <uni-forms-item
- label="详情"
- required
- :name="['reportDetails', index, 'constructionDetail']"
- :rules="[{ required: true, errorMessage: '请输入详情' }]">
- <uni-easyinput
- type="textarea"
- autoHeight
- v-bind="defaultProps"
- :disabled="disabled('edit')"
- v-model="item.constructionDetail"
- :maxlength="2000" />
- </uni-forms-item>
- <uni-forms-item v-if="!disabled('edit')" label="操作">
- <button
- type="warn"
- size="mini"
- class="detail-btn"
- @click="removeReportDetailRow(index)">
- 删除
- </button>
- </uni-forms-item>
- </template>
- <uv-divider text="生产时间" textPosition="left"></uv-divider>
- <uni-forms-item
- label="进尺工作时间(H)"
- name="drillingWorkingTime"
- required>
- <uni-easyinput
- type="number"
- v-bind="defaultProps"
- :class="{ 'orange-text': orange }"
- :disabled="disabled('edit')"
- v-model="form.drillingWorkingTime" />
- </uni-forms-item>
- <uni-forms-item
- label="其它生产时间(H)"
- name="otherProductionTime"
- required>
- <uni-easyinput
- type="number"
- v-bind="defaultProps"
- :class="{ 'orange-text': orange }"
- :disabled="disabled('edit')"
- v-model="form.otherProductionTime" />
- </uni-forms-item>
- <uv-divider text="非生产时间" textPosition="left"></uv-divider>
- <uni-forms-item
- v-for="field in NON_PROD_FIELDS"
- :key="field.key"
- :label="field.label + '(H)'"
- :name="field.key">
- <uni-easyinput
- type="number"
- :class="{ 'orange-text': orange }"
- v-bind="defaultProps"
- :disabled="disabled('edit')"
- v-model="form[field.key]" />
- </uni-forms-item>
- <uni-forms-item label="其他非生产原因" name="otherNptReason">
- <uni-easyinput
- type="textarea"
- autoHeight
- v-bind="defaultProps"
- v-model="form.otherNptReason"
- :disabled="disabled('edit')"
- :maxlength="1000" />
- </uni-forms-item>
- <uni-forms-item
- v-if="type.includes('approval')"
- label="审批意见"
- name="opinion">
- <uni-easyinput
- type="textarea"
- autoHeight
- v-bind="defaultProps"
- :disabled="disabled('approval')"
- v-model="form.opinion"
- :maxlength="1000" />
- </uni-forms-item>
- </uni-forms>
- </view>
- <tpf-time-range
- ref="reportDetailsTimeRangeRef"
- :startTime="startTime"
- :startDefaultTime="startDefaultTime"
- :endTime="endTime"
- :endDefaultTime="endDefaultTime"
- @timeRange="reportDetailsTimeRange"></tpf-time-range>
- </template>
- <style lang="scss" scoped>
- .content {
- background-color: white;
- padding: 16px 16px;
- border-radius: 8px;
- box-sizing: border-box;
- }
- .uni-forms {
- margin-top: 10px;
- height: 100%;
- .uni-form {
- height: 100%;
- }
- .uni-forms-item {
- display: flex;
- align-items: center;
- flex: 1;
- margin-bottom: 6px;
- border-bottom: 1px dashed #cacccf;
- }
- :deep(.uni-forms-item__content) {
- text-align: right;
- .readOnly {
- padding-right: 10px;
- }
- }
- :deep(.uni-forms-item__label) {
- height: 44px;
- font-weight: 500;
- font-size: 14px;
- color: #333333 !important;
- width: max-content !important;
- }
- :deep(.uni-select) {
- border: none;
- text-align: right;
- padding-right: 0;
- .uniui-bottom:before {
- content: "\e6b5" !important;
- font-size: 16px !important;
- }
- }
- :deep(.uni-easyinput__content-textarea) {
- min-height: inherit;
- margin: 10px;
- }
- :deep(.is-disabled) {
- color: #333333 !important;
- }
- :deep(.red-text > .is-disabled) {
- color: rgb(220 38 38 / 0.8) !important;
- }
- :deep(.orange-text > .is-disabled) {
- color: rgb(234 88 12 / 0.8) !important;
- }
- :deep(.uni-select--disabled) {
- background-color: #fff;
- }
- }
- .red-text {
- color: rgb(220 38 38 / 0.8) !important;
- }
- .orange-text {
- color: rgb(234 88 12 / 0.8) !important;
- }
- .red {
- border: 1px solid rgb(254 226 226);
- color: rgb(220 38 38 / 0.8);
- background-color: rgb(254 226 226);
- }
- .orange {
- border: 1px solid rgb(254 215 170);
- color: rgb(234 88 12 / 0.8);
- background-color: rgb(254 215 170);
- }
- .tip {
- border-radius: 8px;
- border: 1px solid #e5e5e5;
- background-color: rgba(239, 246, 255, 0.8);
- box-sizing: border-box;
- padding: 10px;
- display: flex;
- flex-direction: column;
- gap: 6px;
- .item {
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-size: 12px;
- .left {
- color: rgb(75 85 99);
- span {
- color: rgb(31 41 55);
- font-weight: 600;
- }
- }
- .right {
- display: inline-flex;
- align-items: center;
- border-radius: 4px;
- padding: 2px 4px;
- font-weight: 500;
- }
- }
- }
- .opinion {
- border-radius: 8px;
- border: 1px solid rgb(254 240 138);
- background-color: rgb(254 252 232);
- box-sizing: border-box;
- padding: 10px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-size: 12px;
- margin-top: 10px;
- .left {
- font-weight: 600;
- color: rgb(133 77 14);
- }
- .right {
- font-weight: 500;
- color: rgb(75 85 99);
- }
- }
- :deep(.uv-divider__text) {
- color: #333 !important;
- }
- .detail-btn {
- margin: 0;
- margin-left: auto;
- float: right;
- }
- .time-range-item {
- margin: 10px;
- }
- .item-content {
- display: flex;
- align-items: center;
- justify-content: end;
- }
- .divider {
- margin: 0;
- transform: translateY(-7px);
- :deep(.uv-line) {
- border-width: 2px !important;
- border-color: rgb(41, 121, 255) !important;
- }
- }
- :deep(.datetime-picker) {
- .uniui-calendar {
- &::before {
- display: none;
- }
- }
- .uni-date-editor--x__disabled {
- opacity: 1 !important;
- }
- .uni-date__x-input {
- color: #333 !important;
- }
- }
- </style>
|