diff --git a/public/index.html b/public/index.html index f449c2f..6f52be6 100644 --- a/public/index.html +++ b/public/index.html @@ -39,8 +39,8 @@ <% if (process.env.VUE_APP_NODE_ENV === 'dev') { %> <% } %> diff --git a/src/components/360View/index1.vue b/src/components/360View/index1.vue index cb8be0a..278fcf0 100644 --- a/src/components/360View/index1.vue +++ b/src/components/360View/index1.vue @@ -37,16 +37,16 @@ - + - + - + - + - + @@ -294,6 +294,15 @@ export default { dataForm: {} } }, + computed: { + readOnly() { + if (this.$route.query.onlyRead) { + return JSON.parse(this.$route.query.onlyRead) + } else { + return this.onlyRead + } + } + }, watch: { display(val) { if (val) { diff --git a/src/page-subspecialty/views/modules/formList/laserSurgery.vue b/src/page-subspecialty/views/modules/formList/laserSurgery.vue index 9820a80..b77b0d2 100644 --- a/src/page-subspecialty/views/modules/formList/laserSurgery.vue +++ b/src/page-subspecialty/views/modules/formList/laserSurgery.vue @@ -131,7 +131,11 @@
操作人:
- +
+ + +
+
操作时间:
@@ -216,6 +220,16 @@ export default { } } }, + computed: { + guardianSign2: { + get() { + return this.$store.getters.guardianSign2 + }, + set(val) { + + } + } + }, watch: { caseId(val) { if (val) { @@ -234,6 +248,10 @@ export default { this.getConfirmDetail() }, methods: { + signClick(index) { + console.log(index) + this.$store.commit('beginSign', index) + }, editImg() { this.$refs.imgEditorRef.init() },