|
@@ -98,16 +98,12 @@ export default {
|
|
|
search: true,
|
|
|
type: "select",
|
|
|
overHidden: true,
|
|
|
- dicData: [{
|
|
|
- label: '暂存',
|
|
|
- value: 10,
|
|
|
- }, {
|
|
|
- label: '进行中',
|
|
|
- value: 20,
|
|
|
- }, {
|
|
|
- label: '完成',
|
|
|
- value: 30,
|
|
|
- }]
|
|
|
+ dataType:'number',
|
|
|
+ dicData: [],
|
|
|
+ props: {
|
|
|
+ label: "dictValue",
|
|
|
+ value: "dictKey"
|
|
|
+ }
|
|
|
}
|
|
|
]
|
|
|
}
|
|
@@ -115,6 +111,11 @@ export default {
|
|
|
},
|
|
|
async created() {
|
|
|
this.option = await this.getColumnData(this.getColumnName(183), this.optionBack);
|
|
|
+ this.getWorkDicts("task_status").then(res => {
|
|
|
+ this.findObject(this.option.column, "taskStatus").dicData =
|
|
|
+ res.data.data;
|
|
|
+ });
|
|
|
+
|
|
|
},
|
|
|
methods: {
|
|
|
cellStyle() {
|