centaline-data-driven 1.3.55 → 1.3.56

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "centaline-data-driven",
3
- "version": "1.3.55",
3
+ "version": "1.3.56",
4
4
  "description": "ccai",
5
5
  "author": "hjc <3226136347@qq.com>",
6
6
  "private": false,
package/src/Form.vue CHANGED
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <div id="form-app" class="data-driven" style="width:100%;height:100%;overflow:auto">
3
3
  <!-- <ct-form :source="formdata.content" :apiParam="apiParam"></ct-form> -->
4
- <ct-form :api="'/Worklist/getLayoutOfAudit'" :apiParam="apiParam" :topHeight="topHeight"></ct-form>
4
+ <ct-form :api="'/PropertyRealLook/getLayoutOfNew'" :apiParam="apiParam" :topHeight="topHeight"></ct-form>
5
5
  <ct-dialog-list></ct-dialog-list>
6
6
  </div>
7
7
  </template>
@@ -12,7 +12,7 @@
12
12
  data() {
13
13
  return {
14
14
  apiParam:{
15
- worklistID: "1562596656002764800", actionType: 2
15
+ chanceID: "1526015051042000896", actionType: 2
16
16
  },
17
17
  topHeight:10,
18
18
  }
@@ -100,11 +100,12 @@ export default {
100
100
  methods: {
101
101
  load(data) {
102
102
  this.model = data;
103
- this.classifyClickHandle()
103
+ this.classifyClickHandle()
104
104
  },
105
105
  handleExceed() {
106
106
  this.validMessage = "附件数量最多" + this.model.max + "张";
107
107
  this.valid = false;
108
+ this.$message.error(this.validMessage);
108
109
  },
109
110
  //删除
110
111
  handleRemove(file) {
@@ -199,7 +200,6 @@ export default {
199
200
  return "";
200
201
  },
201
202
  handleDownload(file) {
202
- console.log(file);
203
203
  },
204
204
  handleChange(file, fileList) {
205
205
  this.changeHandler(this.model.value);
@@ -312,15 +312,14 @@ export default {
312
312
  });
313
313
  },
314
314
  classifySelectedClickHandle: function (classify) {
315
- classify.file.mediaLabelName =
316
- classify.option[this.model.optionModel.optionAttrs.label];
317
- classify.file.mediaLabelID =
318
- classify.option[this.model.optionModel.optionAttrs.value];
315
+ classify.file.mediaLabelName = classify.option[this.model.optionModel.optionAttrs.label];
316
+ classify.file.mediaLabelID = classify.option[this.model.optionModel.optionAttrs.value];
319
317
  this.model.setClassify(classify);
320
318
  if (!this.validFileClass()) {
321
319
  this.validMessage = "请选择附件分类";
322
320
  this.valid = false;
323
- } else {
321
+ }
322
+ else {
324
323
  this.valid = true;
325
324
  }
326
325
  },
@@ -332,7 +331,8 @@ export default {
332
331
  if (!this.validFileClass()) {
333
332
  this.validMessage = "请选择附件分类";
334
333
  this.valid = false;
335
- } else {
334
+ }
335
+ else {
336
336
  this.valid = true;
337
337
  }
338
338
  },