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/handleProblem.vue | 184 ++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 184 insertions(+), 0 deletions(-)
diff --git a/admin/src/views/workorder/components/handleProblem.vue b/admin/src/views/workorder/components/handleProblem.vue
new file mode 100644
index 0000000..47a1896
--- /dev/null
+++ b/admin/src/views/workorder/components/handleProblem.vue
@@ -0,0 +1,184 @@
+<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>
+ <el-form :model="form" :rules="rules" ref="ruleForm" label-width="100px" class="demo-ruleForm">
+ <el-form-item label="澶勭悊鏂瑰紡" prop="resource">
+ <el-radio-group v-model="form.resource">
+ <el-radio :label="0">杞伐鍗�</el-radio>
+ <el-radio :label="1">鍏抽棴闂</el-radio>
+ </el-radio-group>
+ </el-form-item>
+ <div style="display: flex; align-items: center;">
+ <el-form-item label="浣嶇疆绫诲瀷" prop="region">
+ <el-select v-model="form.resource" placeholder="璇烽�夋嫨浣嶇疆绫诲瀷">
+ <el-option label="鍖哄煙涓�" value="shanghai"></el-option>
+ <el-option label="鍖哄煙浜�" value="beijing"></el-option>
+ </el-select>
+ </el-form-item>
+ <el-form-item label="鎶ヤ慨鍖哄煙" prop="resource">
+ <el-select v-model="form.resource" placeholder="璇烽�夋嫨鎶ヤ慨鍖哄煙">
+ <el-option label="鍖哄煙涓�" value="shanghai"></el-option>
+ <el-option label="鍖哄煙浜�" value="beijing"></el-option>
+ </el-select>
+ </el-form-item>
+ </div>
+ <div style="display: flex; align-items: center;">
+ <el-form-item label="宸ュ崟鍒嗙被" prop="resource">
+ <el-select v-model="form.resource" placeholder="璇烽�夋嫨宸ュ崟鍒嗙被">
+ <el-option label="鍖哄煙涓�" value="shanghai"></el-option>
+ <el-option label="鍖哄煙浜�" value="beijing"></el-option>
+ </el-select>
+ </el-form-item>
+ <el-form-item label="涓婇棬鏃堕棿" prop="resource">
+ <el-date-picker v-model="form.resource" type="date" placeholder="閫夋嫨涓婇棬鏃堕棿"></el-date-picker>
+ </el-form-item>
+ </div>
+ <el-form-item label="鎻忚堪" prop="resource">
+ <el-input
+ type="textarea"
+ :rows="5"
+ placeholder="璇疯緭鍏ユ弿杩�"
+ v-model="form.resource">
+ </el-input>
+ </el-form-item>
+ <el-form-item label="闂鍥剧墖" prop="resource">
+ <el-upload
+ action="https://jsonplaceholder.typicode.com/posts/"
+ list-type="picture-card">
+ <i class="el-icon-plus"></i>
+ </el-upload>
+ </el-form-item>
+ <el-form-item label="鍏抽棴闂" prop="resource">
+ <el-input
+ type="textarea"
+ :rows="5"
+ placeholder="璇疯緭鍏ュ叧闂棶棰�"
+ v-model="form.resource">
+ </el-input>
+ </el-form-item>
+ </el-form>
+ </div>
+ </GlobalWindow>
+</template>
+
+<script>
+ import BaseOpera from '@/components/base/BaseOpera'
+ import GlobalWindow from '@/components/common/GlobalWindow'
+ export default {
+ name: "handleProblem",
+ extends: BaseOpera,
+ components: { GlobalWindow },
+ data() {
+ return {
+ info: {},
+ form: {
+ resource: 0
+ },
+ rules: {
+ resource: [
+ { required: true, message: '璇烽�夋嫨', trigger: 'change' }
+ ]
+ }
+ }
+ },
+ 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