|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <div>
|
|
|
+ <div class="contractAdd">
|
|
|
<el-form ref="form" :model="form" style="width: 100%;padding: 5px" :rules="rules">
|
|
|
<el-row>
|
|
|
<el-col style="padding-bottom: 10px">
|
|
@@ -299,7 +299,7 @@
|
|
|
<el-button v-if="!isView" size="small" type="primary">点击上传</el-button>
|
|
|
<div slot="file" slot-scope="{file}">
|
|
|
<a :href="file.url">{{ file.name }}</a>
|
|
|
- <span class="el-upload-list__item-actions">
|
|
|
+ <span class="el-upload-list__item-actions" v-show="!isView">
|
|
|
<i class="el-icon-delete" @click="handlePictureRemove(file,contractOriginalList)" />
|
|
|
</span>
|
|
|
</div>
|
|
@@ -320,7 +320,7 @@
|
|
|
<el-button v-if="!isView" size="small" type="primary">点击上传</el-button>
|
|
|
<div slot="file" slot-scope="{file}">
|
|
|
<a :href="file.url">{{ file.name }}</a>
|
|
|
- <span class="el-upload-list__item-actions">
|
|
|
+ <span class="el-upload-list__item-actions" v-show="!isView">
|
|
|
<i class="el-icon-delete" @click="handlePictureRemove(file,contractOtherList)" />
|
|
|
</span>
|
|
|
</div>
|
|
@@ -548,10 +548,16 @@ export default {
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
-<style scoped>
|
|
|
- .ch-input .el-input__inner {
|
|
|
- border-color: #32323A;
|
|
|
- }
|
|
|
+<style lang="scss">
|
|
|
+.contractAdd{
|
|
|
+ .ch-input .el-input__inner {
|
|
|
+ border-color: #32323A;
|
|
|
+ }
|
|
|
+ .el-textarea__inner{
|
|
|
+ padding-right: 75px !important;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
|
|
|
|
|
|
</style>
|