|
@@ -121,18 +121,18 @@ onMounted(async () => {
|
|
|
|
|
|
<template>
|
|
|
<van-tabs v-model:active="active" type="card" class="top-tabs">
|
|
|
- <van-tab title="上报">
|
|
|
+ <van-tab title="问题上报">
|
|
|
<view class="tab-container">
|
|
|
<uni-forms ref="questionReportFormRef" :modelValue="formData" :rules="rules" label-align="right" label-width="80">
|
|
|
- <uni-forms-item label="类型" required name="questionType">
|
|
|
+ <uni-forms-item label="问题类型" required name="questionType">
|
|
|
<uni-data-select v-model="formData.questionType" :localdata="range"></uni-data-select>
|
|
|
</uni-forms-item>
|
|
|
<!-- 问题标题 -->
|
|
|
- <uni-forms-item label="标题" required name="questionTitle">
|
|
|
+ <uni-forms-item label="问题标题" required name="questionTitle">
|
|
|
<uni-easyinput v-model="formData.questionTitle" placeholder="请输入标题"></uni-easyinput>
|
|
|
</uni-forms-item>
|
|
|
<!-- 问题内容 -->
|
|
|
- <uni-forms-item label="内容" required name="questionContent">
|
|
|
+ <uni-forms-item label="问题内容" required name="questionContent">
|
|
|
<uni-easyinput v-model="formData.questionContent" :maxlength="-1" type="textarea" placeholder="请输入内容"></uni-easyinput>
|
|
|
</uni-forms-item>
|
|
|
<!-- 问题所在地 -->
|
|
@@ -148,7 +148,7 @@ onMounted(async () => {
|
|
|
<van-button class="w-full mb-3" type="primary" @click="submit">提交</van-button>
|
|
|
</view>
|
|
|
</van-tab>
|
|
|
- <van-tab title="已上报">
|
|
|
+ <van-tab title="事件上报(已回复)">
|
|
|
<view class="tab-container">
|
|
|
<van-list v-model:loading="loading" :finished="finished" finished-text="没有更多了" @load="questList">
|
|
|
<view v-for="item in list" :key="item.uuid" class="list-item-style">
|