From cfbf7533b8cfc395a110390da23cf6bb641daff9 Mon Sep 17 00:00:00 2001
From: MrShi <1878285526@qq.com>
Date: 星期三, 08 一月 2025 16:05:17 +0800
Subject: [PATCH] Merge branch '2.0.1' of http://139.186.142.91:10010/r/productDev/funingyunwei into 2.0.1
---
admin/src/views/workorder/components/problemReportingDetails.vue | 139 ++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 139 insertions(+), 0 deletions(-)
diff --git a/admin/src/views/workorder/components/problemReportingDetails.vue b/admin/src/views/workorder/components/problemReportingDetails.vue
new file mode 100644
index 0000000..213c8d9
--- /dev/null
+++ b/admin/src/views/workorder/components/problemReportingDetails.vue
@@ -0,0 +1,139 @@
+<template>
+ <GlobalWindow
+ title="闂涓婃姤璇︽儏"
+ :showConfirm="false"
+ :visible.sync="visible"
+ width="100%">
+ <div class="wt">
+ <div class="wt_head">
+ <div class="wt_head_title">
+ 闂璇︽儏
+ <el-tag style="margin-left: 10px;">杞伐鍗�</el-tag>
+ </div>
+ <el-button>鏌ョ湅宸ュ崟</el-button>
+ </div>
+ <div class="wt_content">
+ <div class="wt_content_row" style="width: 25%;">
+ 浣嶇疆锛�-
+ </div>
+ <div class="wt_content_row" style="width: 25%;">
+ 涓婃姤浜猴細寮犱笁涓�
+ </div>
+ <div class="wt_content_row" style="width: 50%;">
+ 涓婃姤浜虹數璇濓細180553847234
+ </div>
+ <div class="wt_content_row" style="width: 100%; margin-top: 15px;">
+ 涓婃姤鏃堕棿锛�2024-11-21 12:00:23
+ </div>
+ <div class="wt_content_row" style="width: 100%; margin-top: 15px;">
+ 闂鎻忚堪锛氳繖鏄棶棰樻弿杩拌繖鏄棶棰樻弿杩拌繖鏄棶棰樻弿杩拌繖鏄棶棰樻弿杩拌繖鏄棶棰樻弿杩拌繖鏄棶棰樻弿杩拌繖鏄棶棰樻弿杩拌繖鏄棶棰樻弿杩�
+ </div>
+ <div class="wt_content_row" style="width: 100%; margin-top: 15px;">
+ <div class="wt_content_row_label">闂鍥剧墖锛�</div>
+ <div class="wt_content_row_list">
+ <div class="wt_content_row_list_img">
+ <img src="" alt="" />
+ </div>
+ </div>
+ </div>
+ </div>
+ <div class="wt_head">
+ <div class="wt_head_title">
+ 澶勭悊缁撴灉
+ </div>
+ </div>
+ <div class="wt_content">
+ <div class="wt_content_row" style="width: 100%;">
+ 澶勭悊浜猴細寮犱笁-琛屾斂閮�
+ </div>
+ <div class="wt_content_row" style="width: 100%; margin-top: 15px;">
+ 澶勭悊鏃堕棿锛�2024-11-21 12:00:23
+ </div>
+ <div class="wt_content_row" style="width: 100%; margin-top: 15px;">
+ 澶勭悊缁撴灉锛氳浆宸ュ崟
+ </div>
+ <div class="wt_content_row" style="width: 100%; margin-top: 15px;">
+ 鍏抽棴璇存槑锛氳鏄庤鏄庤鏄庤鏄庤鏄庤鏄庤鏄庤鏄庤鏄庤鏄庤鏄庤鏄庤鏄庤鏄庤鏄庤鏄庤鏄�
+ </div>
+ </div>
+ </div>
+ </GlobalWindow>
+</template>
+
+<script>
+ import BaseOpera from '@/components/base/BaseOpera'
+ import GlobalWindow from '@/components/common/GlobalWindow'
+ export default {
+ name: "problemReportingDetails",
+ extends: BaseOpera,
+ components: { GlobalWindow },
+ data() {
+ return {
+ info: {}
+ }
+ },
+ methods: {
+
+ }
+ }
+</script>
+
+<style lang="scss" scoped>
+ .wt {
+ width: 100%;
+ display: flex;
+ flex-direction: column;
+ .wt_head {
+ width: 100%;
+ padding: 20px 0;
+ box-sizing: border-box;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ .wt_head_title {
+ display: flex;
+ align-items: center;
+ font-size: 16px;
+ color: black;
+ margin-right: 10px;
+ }
+ }
+ .wt_content {
+ width: 100%;
+ display: flex;
+ align-items: center;
+ flex-wrap: wrap;
+ .wt_content_row {
+ font-size: 14px;
+ color: rgb(51, 51, 51);
+ display: flex;
+ align-items: self-start;
+ .wt_content_row_label {
+ flex-shrink: 0;
+ font-size: 14px;
+ color: rgb(51, 51, 51);
+ }
+ .wt_content_row_list {
+ flex: 1;
+ display: flex;
+ align-items: center;
+ .wt_content_row_list_img {
+ width: 106px;
+ height: 93px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ overflow-x: hidden;
+ margin-right: 15px;
+ &:last-child {
+ margin: 0 !important;
+ }
+ img {
+ width: 100%;
+ }
+ }
+ }
+ }
+ }
+ }
+</style>
--
Gitblit v1.9.3