Browse Source

解决复制时候后面有空格的问题

dev_web_online
安虹睿 2 years ago
parent
commit
c6d2a6b39d
  1. 4
      fe/PC/src/components/currenDescriptions/index.vue
  2. 4
      fe/PC/src/components/umyTable/index.vue

4
fe/PC/src/components/currenDescriptions/index.vue

@ -52,9 +52,7 @@
></el-input>
</template>
</span>
<span v-else>
{{ propsData[item.prop] ? propsData[item.prop] + "" : propsData[item.prop] }}
</span>
<span v-else>{{ propsData[item.prop] ? propsData[item.prop] + "" : propsData[item.prop] }}</span>
</el-descriptions-item>
</template>
<el-descriptions-item

4
fe/PC/src/components/umyTable/index.vue

@ -310,9 +310,7 @@
v-if="item.type == 'name' || !item.type"
@click="item.type == 'name' && inlineDialog(scope.row)"
:class="{ spamHover: item.type == 'name' }"
>
{{ scope.row[item.prop] ? scope.row[item.prop] + "" : scope.row[item.prop] }}
</span>
>{{ scope.row[item.prop] ? scope.row[item.prop] + "" : scope.row[item.prop] }}</span>
</el-form>
</template>
</u-table-column>

Loading…
Cancel
Save