|
@@ -13,9 +13,9 @@
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="item in typeList"
|
|
|
- :key="item.dictValue"
|
|
|
- :label="item.dictLabel"
|
|
|
- :value="item.dictLabel"
|
|
|
+ :key="item"
|
|
|
+ :label="item"
|
|
|
+ :value="item"
|
|
|
></el-option>
|
|
|
</el-select>
|
|
|
</div>
|
|
@@ -143,7 +143,7 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import { listUserOperationLog} from "@/api/his/userOperationLog";
|
|
|
+import { listUserOperationLog,getOperationType} from "@/api/his/userOperationLog";
|
|
|
|
|
|
export default {
|
|
|
data() {
|
|
@@ -163,7 +163,7 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
created() {
|
|
|
- this.getDicts("fs_user_operation_type").then(response => {
|
|
|
+ getOperationType().then(response => {
|
|
|
this.typeList = response.data;
|
|
|
});
|
|
|
},
|