Blame view

pages-sub/daily/patrol-manage/add-patrol-record.vue 9.64 KB
a2702f6d   刘淇   巡查计划
1
  <template>
37c26bd3   刘淇   巡查计划
2
    <view class="u-page">
420cb443   刘淇   快速工单列表
3
4
5
6
7
8
9
      <!-- 核心:将所有 up-form-item 包裹在同一个 up-form 内 -->
      <view class="inspect-form-content commonPageLRpadding">
        <up-form
            label-position="left"
            :model="inspectForm"
            ref="inspectFormRef"
            labelWidth="140rpx"
a2702f6d   刘淇   巡查计划
10
        >
420cb443   刘淇   快速工单列表
11
12
          <!-- 1. 巡查描述(文本域) -->
          <up-form-item
dacff5e3   刘淇   养护员退回
13
              label="巡查描述"
420cb443   刘淇   快速工单列表
14
15
              prop="content"
              class="form-item"
fa775c6b   刘淇   养护计划调整
16
              required
420cb443   刘淇   快速工单列表
17
18
          >
            <up-textarea
fa775c6b   刘淇   养护计划调整
19
                v-model.trim="inspectForm.content"
420cb443   刘淇   快速工单列表
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
                placeholder="请输入巡查描述"
                maxlength="200"
                count
            ></up-textarea>
          </up-form-item>
  
          <!-- 2. 上传图片 -->
          <up-form-item
              label="上传图片"
              prop="images"
              required
              border-bottom
              class="form-item"
          >
            <up-upload
                :file-list="imagesList"
                @after-read="(event) => uploadImgs(event)"
                @delete="(event) => deleteImg(event)"
                @on-exceed="handleExceed"
                multiple
                :max-count="3"
                upload-text="选择图片"
                del-color="#ff4d4f"
                class="upload-wrap"
            ></up-upload>
b0e2f1a9   刘淇   快速工单和巡查计划样式优化
45
            <!--          <view class="tips">(最少1张,最多3张)</view>-->
420cb443   刘淇   快速工单列表
46
47
48
49
50
51
52
53
          </up-form-item>
  
          <!-- 3. 转为工单(单选框) -->
          <up-form-item
              label="转为工单"
              prop="isWorkOrder"
              required
              class="form-item"
37c26bd3   刘淇   巡查计划
54
          >
420cb443   刘淇   快速工单列表
55
56
57
58
59
            <up-radio-group
                v-model="inspectForm.isWorkOrder"
                active-color="#1989fa"
                direction="row"
                class="radio-group"
37c26bd3   刘淇   巡查计划
60
            >
420cb443   刘淇   快速工单列表
61
62
63
64
65
66
67
68
69
70
71
72
73
74
              <up-radio
                  :custom-style="{marginRight: '40rpx'}"
                  v-for="(item, index) in radioList"
                  :key="index"
                  :label="item.label"
                  :name="item.value"
              >
                {{ item.label }}
              </up-radio>
            </up-radio-group>
          </up-form-item>
  
        </up-form>
      </view>
a2702f6d   刘淇   巡查计划
75
76
  
      <!-- 底部提交按钮 -->
993d98fa   刘淇   工作台
77
      <view class="fixed-bottom-btn-wrap">
37c26bd3   刘淇   巡查计划
78
        <up-button
a2702f6d   刘淇   巡查计划
79
            type="primary"
420cb443   刘淇   快速工单列表
80
81
            text="提交"
            @click="submitInspect"
a2702f6d   刘淇   巡查计划
82
            :style="{ width: '100%', height: '88rpx', fontSize: '32rpx', borderRadius: 0 }"
420cb443   刘淇   快速工单列表
83
        ></up-button>
a2702f6d   刘淇   巡查计划
84
85
86
87
      </view>
    </view>
  </template>
  
420cb443   刘淇   快速工单列表
88
89
90
91
92
93
94
95
96
  <script setup lang="ts">
  import { ref } from 'vue'
  import type { UniFormRef } from '@/uni_modules/uview-plus/types'
  // 定义ref供选项式API使用
  const inspectFormRef = ref<UniFormRef>(null)
  </script>
  
  <script lang="ts">
  import { uploadImages } from '@/common/utils/upload';
5cb33b90   刘淇   完成巡查计划 详情
97
98
  import { inspectionCreate } from  "@/api/patrol-manage/patrol-plan";
  
420cb443   刘淇   快速工单列表
99
100
101
102
103
104
105
106
  
  export default {
    data() {
      return {
        // 图片列表
        imagesList: [],
        // 单选列表
        radioList: [
fa775c6b   刘淇   养护计划调整
107
108
          { label: '否', value: '1' },
          { label: '是', value: '2' }
420cb443   刘淇   快速工单列表
109
110
111
112
        ],
        // 巡查表单数据
        inspectForm: {
          content: '',        // 巡查描述
fa775c6b   刘淇   养护计划调整
113
          isWorkOrder: '1'    // 是否转为工单 1:否(默认) 2:是
a2702f6d   刘淇   巡查计划
114
        },
5cb33b90   刘淇   完成巡查计划 详情
115
        paramsOptins:{},//接受参数
420cb443   刘淇   快速工单列表
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
        // 表单校验规则
        inspectFormRules: {
          images: [
            {
              required: true,
              message: '请上传图片',
              trigger: 'change',
              validator: (rule, value, callback) => {
                // 自定义校验规则:检查是否有成功上传的图片
                const hasSuccessImg = this.imagesList.some(item => item.status === 'success')
                const imgCount = this.imagesList.filter(item => item.status === 'success').length
  
                if (!hasSuccessImg || imgCount < 1) {
                  callback(new Error('最少需要上传1张图片'))
                } else if (imgCount > 3) {
                  callback(new Error('最多只能上传3张图片'))
                } else {
                  callback()
                }
              }
            }
          ],
fa775c6b   刘淇   养护计划调整
138
139
140
141
  
          content: [
            { type: 'string', required: true, message: '请输入工单描述', trigger: ['change'] }
          ],
420cb443   刘淇   快速工单列表
142
143
144
145
          isWorkOrder: [
            { type: 'string', required: true, message: '请选择是否转为工单', trigger: ['change'] }
          ]
        }
a2702f6d   刘淇   巡查计划
146
      }
420cb443   刘淇   快速工单列表
147
    },
5cb33b90   刘淇   完成巡查计划 详情
148
149
150
151
    onLoad(option){
      console.log(option)
      this.paramsOptins = option
    },
420cb443   刘淇   快速工单列表
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
    onReady() {
      // 兼容微信小程序,通过setRules设置校验规则
      this.$refs.inspectFormRef.setRules(this.inspectFormRules)
      console.log('巡查表单规则初始化完成')
    },
    methods: {
      /**
       * 删除图片
       */
      deleteImg(event) {
        console.log('删除图片事件:', event)
        this.imagesList.splice(event.index, 1)
        // 删除图片后重新校验图片字段
        this.$refs.inspectFormRef.validateField('images')
        uni.showToast({ title: '图片删除成功', icon: 'success' })
      },
a2702f6d   刘淇   巡查计划
168
  
420cb443   刘淇   快速工单列表
169
170
171
172
173
174
175
      /**
       * 上传图片
       */
      async uploadImgs(event) {
        console.log('上传图片事件:', event)
        const fileList = Array.isArray(event.file) ? event.file : [event.file]
        const targetImgList = this.imagesList
a2702f6d   刘淇   巡查计划
176
  
420cb443   刘淇   快速工单列表
177
178
179
180
181
182
183
184
        const filePaths = fileList.map(item => item.url)
        const tempItems = fileList.map(item => ({
          ...item,
          status: 'uploading',
          message: '上传中'
        }))
        const startIndex = targetImgList.length
        targetImgList.push(...tempItems)
a2702f6d   刘淇   巡查计划
185
  
420cb443   刘淇   快速工单列表
186
187
188
189
190
191
        try {
          const uploadResultUrls = await uploadImages({
            filePaths: filePaths,
            ignoreError: true
          })
          console.log('上传成功的URL列表:', uploadResultUrls)
a2702f6d   刘淇   巡查计划
192
  
420cb443   刘淇   快速工单列表
193
194
195
196
197
198
199
200
201
202
          uploadResultUrls.forEach((url, index) => {
            if (targetImgList[startIndex + index]) {
              targetImgList.splice(startIndex + index, 1, {
                ...fileList[index],
                status: 'success',
                message: '',
                url: url
              })
            }
          })
a2702f6d   刘淇   巡查计划
203
  
420cb443   刘淇   快速工单列表
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
          if (uploadResultUrls.length < fileList.length) {
            const failCount = fileList.length - uploadResultUrls.length
            for (let i = uploadResultUrls.length; i < fileList.length; i++) {
              if (targetImgList[startIndex + i]) {
                targetImgList.splice(startIndex + i, 1, {
                  ...fileList[i],
                  status: 'failed',
                  message: '上传失败'
                })
              }
            }
            uni.showToast({ title: `成功上传${uploadResultUrls.length}张,失败${failCount}张`, icon: 'none' })
          } else {
            uni.showToast({ title: `成功上传${fileList.length}张图片`, icon: 'success' })
          }
a2702f6d   刘淇   巡查计划
219
  
420cb443   刘淇   快速工单列表
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
          // 上传完成后重新校验图片字段
          this.$refs.inspectFormRef.validateField('images')
        } catch (err) {
          console.error('图片上传失败:', err)
          for (let i = 0; i < fileList.length; i++) {
            if (targetImgList[startIndex + i]) {
              targetImgList.splice(startIndex + i, 1, {
                ...fileList[i],
                status: 'failed',
                message: '上传失败'
              })
            }
          }
          uni.showToast({ title: '图片上传失败,请重试', icon: 'none' })
  
          // 上传失败后重新校验图片字段
          this.$refs.inspectFormRef.validateField('images')
        }
      },
  
      /**
       * 处理图片超出数量限制
       */
      handleExceed() {
        uni.showToast({ title: '最多只能上传3张图片', icon: 'none' })
      },
  
      /**
       * 提取图片URL数组
       */
      getImgUrlList(imgList) {
        return imgList.filter(item => item.status === 'success').map(item => item.url)
      },
  
      /**
       * 提交巡查表单
       */
      async submitInspect() {
        console.log('当前选择是否转为工单:', this.inspectForm.isWorkOrder)
        try {
          // 先执行表单校验
          await this.$refs.inspectFormRef.validate()
5cb33b90   刘淇   完成巡查计划 详情
262
          console.log(this.imagesList)
420cb443   刘淇   快速工单列表
263
264
          // 构造提交数据
          const submitData = {
5cb33b90   刘淇   完成巡查计划 详情
265
266
267
268
269
270
271
272
273
274
275
276
            // content: this.inspectForm.content,
            // images: this.getImgUrlList(this.imagesList),
            // isWorkOrder: this.inspectForm.isWorkOrder // 1=否,2=是
  
  
            "batchNo": this.paramsOptins.batchNo,
            "planNo":this.paramsOptins.planNo,
            "imgHost": "1",
            "imgList": this.getImgUrlList(this.imagesList),
            "inspectionState": this.inspectForm.isWorkOrder,
            "transState": this.inspectForm.isWorkOrder==1?'1':'2',
            "transWorkNo": "default'",
fa775c6b   刘淇   养护计划调整
277
            "remark": this.inspectForm.content.trim()
420cb443   刘淇   快速工单列表
278
279
280
281
282
          }
  
          // 显示加载中
          uni.showLoading({ title: '提交中...' })
  
5cb33b90   刘淇   完成巡查计划 详情
283
          await inspectionCreate(submitData)
a2702f6d   刘淇   巡查计划
284
  
420cb443   刘淇   快速工单列表
285
286
287
288
          uni.hideLoading()
          uni.showToast({
            title: '提交成功',
            icon: 'success',
5cb33b90   刘淇   完成巡查计划 详情
289
            duration: 1000
420cb443   刘淇   快速工单列表
290
          })
a2702f6d   刘淇   巡查计划
291
  
5cb33b90   刘淇   完成巡查计划 详情
292
          // // 延迟跳转(等待提示框显示完成)
420cb443   刘淇   快速工单列表
293
          setTimeout(() => {
4fa8cf12   刘淇   巡查员结束工单
294
            uni.reLaunch({
b0e2f1a9   刘淇   快速工单和巡查计划样式优化
295
              url: '/pages-sub/daily/patrol-manage/index'
5cb33b90   刘淇   完成巡查计划 详情
296
297
            })
          }, 1000)
37c26bd3   刘淇   巡查计划
298
  
420cb443   刘淇   快速工单列表
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
        } catch (error) {
          // 隐藏加载框
          uni.hideLoading()
  
          // 区分是表单校验失败还是接口调用失败
          if (Array.isArray(error)) {
            // 表单校验失败 - 静默处理(uView会自动提示)
          } else {
            // 接口调用失败
            console.error('巡查表单提交失败:', error)
            uni.showToast({
              title: '提交失败,请重试',
              icon: 'none',
              duration: 2000
            })
          }
        }
      }
    }
  }
  </script>
  
  <style lang="scss" scoped>
  // 全局页面样式
  .u-page {
  }
  
  // 巡查表单内容容器
  .inspect-form-content {
    background: #fff;
    padding: 20rpx;
  }
37c26bd3   刘淇   巡查计划
331
  
a2702f6d   刘淇   巡查计划
332
  </style>