|
@@ -9195,6 +9195,12 @@ appFormly.config(function config(formlyConfigProvider) {
|
9195
|
9195
|
api_bpm_data.fetchDataList("incident", fildata).then(function (data) {
|
9196
|
9196
|
console.log(data);
|
9197
|
9197
|
if (data) {
|
|
9198
|
+ for (let i = 0; i < data.list.length; i++) {
|
|
9199
|
+ var element = data.list[i];
|
|
9200
|
+ if(element.handleDescription){
|
|
9201
|
+ element.handleDescription = element.handleDescription.replace(/<[^>]+>/g, '');
|
|
9202
|
+ }
|
|
9203
|
+ }
|
9198
|
9204
|
$scope.repeatData = data.list;
|
9199
|
9205
|
}
|
9200
|
9206
|
});
|