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> ></el-input>
</template> </template>
</span> </span>
<span v-else> <span v-else>{{ propsData[item.prop] ? propsData[item.prop] + "" : propsData[item.prop] }}</span>
{{ propsData[item.prop] ? propsData[item.prop] + "" : propsData[item.prop] }}
</span>
</el-descriptions-item> </el-descriptions-item>
</template> </template>
<el-descriptions-item <el-descriptions-item

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

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

Loading…
Cancel
Save