Blame view

机具(管理端)/src/views/xccpgl/Form.vue 12.9 KB
5a92a12b   “wangming”   项目初始化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
  <template>
  	<el-dialog :title="!dataForm.id ? '新建' :  isDetail ? '详情':'编辑'" :close-on-click-modal="false" :visible.sync="visible" class="NCC-dialog NCC-dialog_center" lock-scroll append-to-body width="600px">
  		<el-row :gutter="15" class="" >
  				<el-form ref="elForm" :model="dataForm" size="small" label-width="100px" label-position="right" :disabled="isDetail === true" :rules="rules">
  					<el-col :span="24" v-if="false" >
  						<el-form-item label="宣传编号" prop="id">
  							<el-input v-model="dataForm.id" placeholder="请输入" clearable :style='{"width":"100%"}' >
  							</el-input>
  						</el-form-item>
  					</el-col>
  					<el-col :span="24">
  						<el-form-item label="关联产品" prop="sssb">
  							<el-select v-model="sssbValue" placeholder="请选择关联产品" clearable filterable :style='{"width":"100%"}' @change="handleSssbChange">
  								<el-option v-for="item in cpglOptions" :key="item.id" :label="item.cpmc + ' (' + (item.cpid || item.id) + ')'" :value="item.id" ></el-option>
  							</el-select>
  						</el-form-item>
  					</el-col>
  					<el-col :span="24">
  						<el-form-item label="设备名称" prop="sbmc">
  							<el-input v-model="dataForm.sbmc" placeholder="自动填充" :disabled="true" :style='{"width":"100%"}' >
  							</el-input>
  						</el-form-item>
  					</el-col>
  					<el-col :span="24">
  						<el-form-item label="新闻概要" prop="xwgy">
  							<el-input v-model="dataForm.xwgy" type="textarea" :rows="3" placeholder="请输入新闻概要" clearable :style='{"width":"100%"}' />
  						</el-form-item>
  					</el-col>
  					<el-col :span="24">
  						<el-form-item label="新闻分类" prop="xwfl">
  							<el-select v-model="dataForm.xwfl" placeholder="请选择新闻分类" clearable :style='{"width":"100%"}'>
  								<el-option label="新产品" value="xcp" />
  								<el-option label="产品升级" value="cpsj" />
  								<el-option label="系统升级" value="xtsj" />
  								<el-option label="资料更新" value="zlgx" />
  								<el-option label="市场动态" value="scdt" />
  							</el-select>
  						</el-form-item>
  					</el-col>
  					<el-col :span="24">
d56bd957   “wangming”   修复问题,组建AI
41
42
43
44
45
46
  						<el-form-item label="新闻正文" prop="xwzw">
  							<NCC-Quill v-model="dataForm.xwzw" placeholder="请输入新闻正文内容..." :disabled="isDetail">
  							</NCC-Quill>
  						</el-form-item>
  					</el-col>
  					<el-col :span="24">
5a92a12b   “wangming”   项目初始化
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
  						<el-form-item label="宣传对象" prop="xcdx">
  							<ComSelect v-model="xcdxValue" :multiple="true" placeholder="按公司选择宣传指定对象" style="width:100%" />
  						</el-form-item>
  					</el-col>
  					<el-col :span="24">
  						<el-form-item label="设备编号" prop="sbbh">
  							<el-input v-model="dataForm.sbbh" placeholder="自动填充" :disabled="true" :style='{"width":"100%"}' >
  							</el-input>
  						</el-form-item>
  					</el-col>
  					<el-col :span="24">
  						<el-form-item label="升级亮点" prop="sjld">
  							<NCC-Quill v-model="dataForm.sjld" placeholder="请输入内容..." >
  							</NCC-Quill>
  						</el-form-item>
  					</el-col>
  					<el-col :span="24">
  						<el-form-item label="发布时间" prop="fbsj">
  							<el-date-picker v-model="dataForm.fbsj" placeholder="请选择" clearable :style='{"width":"100%"}' type='date' format="yyyy-MM-dd" value-format="timestamp" >
  							</el-date-picker>
  						</el-form-item>
  					</el-col>
  					<el-col :span="24">
  						<el-form-item label="产品优势" prop="cpys">
  							<NCC-Quill v-model="dataForm.cpys" placeholder="请输入内容..." >
  							</NCC-Quill>
  						</el-form-item>
  					</el-col>
  					<el-col :span="24">
  						<el-form-item label="设备介绍" prop="sbjs">
  							<NCC-Quill v-model="dataForm.sbjs" placeholder="请输入内容..." >
  							</NCC-Quill>
  						</el-form-item>
  					</el-col>
  					<el-col :span="24">
  						<el-form-item label="规格" prop="gg">
  							<el-input v-model="dataForm.gg" placeholder="请输入" clearable :style='{"width":"100%"}' >
  							</el-input>
  						</el-form-item>
  					</el-col>
  					<el-col :span="24">
  						<el-form-item label="设备分类" prop="sbfl">
  							<el-input :value="getFlName(dataForm.sbfl)" placeholder="自动填充" readonly :style='{"width":"100%"}' >
  							</el-input>
  						</el-form-item>
  					</el-col>
  					<el-col :span="24">
  						<el-form-item label="设备出厂编号" prop="sbccbh">
  							<el-input v-model="dataForm.sbccbh" placeholder="请输入" clearable :style='{"width":"100%"}' >
  							</el-input>
  						</el-form-item>
  					</el-col>
  					<el-col :span="24">
  						<el-form-item label="设备出厂日期" prop="sbccrq">
  							<el-date-picker v-model="dataForm.sbccrq" placeholder="请选择" clearable :style='{"width":"100%"}' type='date' format="yyyy-MM-dd" value-format="timestamp" >
  							</el-date-picker>
  						</el-form-item>
  					</el-col>
  					<el-col :span="24">
  						<el-form-item label="相关附件" prop="xgfj">
  							<NCC-UploadFz v-model="dataForm.xgfj" :fileSize="1" sizeUnit="GB" :limit="9" buttonText="点击上传" >
  							</NCC-UploadFz>
  						</el-form-item>
  					</el-col>
  					<el-col :span="24">
  						<el-form-item label="相关图片" prop="xgtp">
  							<NCC-UploadImg v-model="dataForm.xgtp" :fileSize="1" sizeUnit="GB" :limit="9" >
  							</NCC-UploadImg>
  						</el-form-item>
  					</el-col>
  					<el-col :span="24">
  						<el-form-item label="创建用户" prop="creatorUser">
  							<el-input v-model="dataForm.creatorUser" placeholder="系统自动生成" readonly >
  							</el-input>
  						</el-form-item>
  					</el-col>
  					<el-col :span="24">
  						<el-form-item label="创建时间" prop="creatorTime">
  							<el-input :value="dataForm.creatorTime | dateFormat('YYYY-MM-DD HH:mm:ss')" placeholder="系统自动生成" readonly >
  							</el-input>
  						</el-form-item>
  					</el-col>
  				</el-form>
  		</el-row>
  		<span slot="footer" class="dialog-footer">
  			<el-button @click="visible = false">取 消</el-button>
  			<el-button type="primary" @click="dataFormSubmit()" v-if="!isDetail">确 定</el-button>
  		</span>
  	</el-dialog>
  </template>
  <script>
  	import request from '@/utils/request'
  	import { getDictionaryDataSelector } from '@/api/systemData/dictionary'
  	import { previewDataInterface } from '@/api/systemData/dataInterface'
  	import ComSelect from '@/components/Generator/components/ComSelect'
  	export default {
  		components: { ComSelect },
  		props: [],
  		data() {
  			return {
  				loading: false,
  				visible: false,
  				isDetail: false,
  				dataForm: {
  					id:'',
  					id:undefined,
  					sssb:undefined,
  					sbmc:undefined,
  					sbbh:undefined,
  					xwgy: undefined,
  					xwfl: undefined,
d56bd957   “wangming”   修复问题,组建AI
158
  					xwzw: undefined,
5a92a12b   “wangming”   项目初始化
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
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
  					xcdx: undefined,
  					sjld:undefined,
  					fbsj:undefined,
  					cpys:undefined,
  					sbjs:undefined,
  					gg:undefined,
  					sbfl:undefined,
  					sbccbh:undefined,
  					sbccrq:undefined,
  					xgfj:[],
  					xgtp:[],
  					creatorUser:undefined,
  					creatorTime:undefined,
  				},
  				rules: {
  				},
  				cpglOptions: [], // 产品管理选项
  				sssbValue: '', // 关联产品选择值
  				xcdxValue: [], // 宣传对象(公司)多选值,提交时转为逗号分隔
  				flOptions: [], // 设备分类选项
  			}
  		},
  		computed: {},
          watch: {
  			visible(val) {
  				if (!val) {
  					// 对话框关闭时,重置 isDetail 为 false
  					this.isDetail = false
  				}
  			}
  		},
          created() {
  			this.getCpglOptions();
  			this.getflOptions();
  		},
  		mounted() {
          },
  		methods: {
  			getflOptions() {
  				getDictionaryDataSelector('626798132465763589').then(res => {
  					this.flOptions = res.data.list
  				});
  			},
  			getFlName(flId) {
  				if (!flId) return '';
  				const flOption = this.flOptions.find(item => item.id === flId);
  				return flOption ? flOption.fullName : flId;
  			},
  			getCpglOptions() {
  				return request({
  					url: '/api/Extend/Cpgl',
  					method: 'GET',
  					data: { currentPage: 1, pageSize: 1000 }
  				}).then(res => {
  					this.cpglOptions = res.data.list || []
  					return Promise.resolve()
  				}).catch(err => {
  					console.error('获取产品管理列表失败:', err)
  					this.cpglOptions = []
  					return Promise.reject(err)
  				})
  			},
  			handleSssbChange(val) {
  				// 选择关联产品后,自动填充设备名称和设备编号
  				if (val) {
  					const product = this.cpglOptions.find(item => item.id === val);
  					if (product) {
  						this.dataForm.sssb = product.id;
  						this.dataForm.sbmc = product.cpmc || '';
  						this.dataForm.sbbh = product.cpid || product.id || '';
  					}
  				} else {
  					this.dataForm.sssb = '';
  					this.dataForm.sbmc = '';
  					this.dataForm.sbbh = '';
  				}
  			},
  			goBack() {
                  this.$emit('refresh')
              },
  			init(id, isDetail) {
  				// 强制重置 isDetail,确保表单可编辑
  				this.isDetail = false;
  				// 如果明确传入 isDetail 为 true,才设置为详情模式
  				if (isDetail === true) {
  					this.isDetail = true;
  				}
  				this.dataForm.id = id || 0;
  				console.log('Xccpgl Form init - id:', id, 'isDetail:', this.isDetail);
  				this.visible = true;
  				// 初始化选择值
  				this.sssbValue = '';
  				this.$nextTick(() => {
  					this.$refs['elForm'].resetFields();
  					if (this.dataForm.id) {
  						request({
  							url: '/api/Extend/Xccpgl/' + this.dataForm.id,
  							method: 'get'
  						}).then(res =>{
  							this.dataForm = res.data;
  							if(!this.dataForm.xgfj)this.dataForm.xgfj=[];
  							if(!this.dataForm.xgtp)this.dataForm.xgtp=[];
d56bd957   “wangming”   修复问题,组建AI
261
262
  							// 宣传对象:ComSelect/NCC-TreeSelect 需要字符串(逗号分隔),不能传数组
  							this.xcdxValue = (typeof this.dataForm.xcdx === 'string') ? this.dataForm.xcdx : (Array.isArray(this.dataForm.xcdx) ? this.dataForm.xcdx.join(',') : '');
5a92a12b   “wangming”   项目初始化
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
  							// 根据关联产品ID查找对应的产品
  							if (this.dataForm.sssb) {
  								// 如果 cpglOptions 还未加载,等待加载完成
  								if (this.cpglOptions.length === 0) {
  									this.getCpglOptions().then(() => {
  										const product = this.cpglOptions.find(item => item.id === this.dataForm.sssb);
  										if (product) {
  											this.sssbValue = product.id;
  											// 如果设备名称或设备编号为空,自动填充
  											if (!this.dataForm.sbmc) {
  												this.dataForm.sbmc = product.cpmc || '';
  											}
  											if (!this.dataForm.sbbh) {
  												this.dataForm.sbbh = product.cpid || product.id || '';
  											}
  										}
  									});
  								} else {
  									const product = this.cpglOptions.find(item => item.id === this.dataForm.sssb);
  									if (product) {
  										this.sssbValue = product.id;
  										// 如果设备名称或设备编号为空,自动填充
  										if (!this.dataForm.sbmc) {
  											this.dataForm.sbmc = product.cpmc || '';
  										}
  										if (!this.dataForm.sbbh) {
  											this.dataForm.sbbh = product.cpid || product.id || '';
  										}
  									}
  								}
  							}
  						})
  					} else {
  						// 新建时清空字段
  						this.dataForm.sssb = '';
  						this.dataForm.sbmc = '';
  						this.dataForm.sbbh = '';
  						this.dataForm.sbfl = '';
  						this.dataForm.xwgy = '';
  						this.dataForm.xwfl = '';
d56bd957   “wangming”   修复问题,组建AI
303
  						this.dataForm.xwzw = '';
5a92a12b   “wangming”   项目初始化
304
  						this.dataForm.xcdx = '';
d56bd957   “wangming”   修复问题,组建AI
305
  						this.xcdxValue = '';
5a92a12b   “wangming”   项目初始化
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
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
  					}
  				})
  			},
  			dataFormSubmit() {
  				// 宣传对象:数组转逗号分隔
  				this.dataForm.xcdx = Array.isArray(this.xcdxValue) ? this.xcdxValue.join(',') : (this.xcdxValue || '');
  				this.$refs['elForm'].validate((valid) => {
                      if (valid) {
                          if (!this.dataForm.id) {
                              request({
                                  url: `/api/Extend/Xccpgl`,
                                  method: 'post',
                                  data: this.dataForm,
                              }).then((res) => {
                                  this.$message({
                                      message: res.msg,
                                      type: 'success',
                                      duration: 1000,
                                      onClose: () => {
                                          this.visible = false,
                                              this.$emit('refresh', true)
                                      }
                                  })
                              })
                          } else {
                              request({
                                  url: '/api/Extend/Xccpgl/' + this.dataForm.id,
                                  method: 'PUT',
                                  data: this.dataForm
                              }).then((res) => {
                                  this.$message({
                                      message: res.msg,
                                      type: 'success',
                                      duration: 1000,
                                      onClose: () => {
                                          this.visible = false
                                          this.$emit('refresh', true)
                                      }
                                  })
                              })
                          }
                      }
                  })
  			},
  		}
  	}
  </script>