diff --git a/src/views/fee-settings/SysParmSet.vue b/src/views/fee-settings/SysParmSet.vue
index a6c1eef..e322a18 100644
--- a/src/views/fee-settings/SysParmSet.vue
+++ b/src/views/fee-settings/SysParmSet.vue
@@ -15,6 +15,10 @@
+
+
+
+
保存
@@ -69,6 +73,8 @@ export default {
organizationId: '00000000-0000-0000-0000-000000000000',
sysParmTypeId: '',
sysParms: [], //系统参数列表
+ color16:'#409EFF',
+ color10:1089274,
};
},
@@ -84,6 +90,15 @@ export default {
...mapState(["window", "dict"]),
},
methods: {
+ chooseColor(v){
+ this.color10 = eval(v.replace('#','0x'));
+ },
+ inputColor(v){
+ this.color10 = Number(v);
+ let temp = '000000' + this.color10.toString(16);
+ this.color16 = '#' + temp.substring(temp.length - 6,temp.length);
+ },
+
//获取组织体检中心数据
getOraniztion() {
getapi("/api/app/organization-units/organization-unit-by-is-peis").then(