|
@@ -6,6 +6,7 @@
|
6
|
6
|
</view>
|
7
|
7
|
<view class="changeSpeNum__article">
|
8
|
8
|
<view class="tips" v-html="content" v-if="content"></view>
|
|
9
|
+ <view class="tips-l" v-if="modifyReason">修改原因:{{modifyReason}}</view>
|
9
|
10
|
<view class="uni-list-cell">
|
10
|
11
|
<view class="uni-list-cell-left">
|
11
|
12
|
标本数量:
|
|
@@ -14,7 +15,7 @@
|
14
|
15
|
<uni-number-box v-model="speNum" :max="9999"></uni-number-box>
|
15
|
16
|
</view>
|
16
|
17
|
</view>
|
17
|
|
- <view class="uni-list-cell" v-if="speNum != num">
|
|
18
|
+ <view class="uni-list-cell" v-if="isFirstShowReason || (!isFirstShowReason && speNum != num)">
|
18
|
19
|
<view class="uni-list-cell-left">
|
19
|
20
|
修改原因:
|
20
|
21
|
</view>
|
|
@@ -27,8 +28,8 @@
|
27
|
28
|
上传图片:
|
28
|
29
|
</view>
|
29
|
30
|
<view class="uni-list-cell-db">
|
30
|
|
- <uni-file-picker :auto-upload="false" :limit="3" title="最多选择3张图片" v-model="imageValue" fileMediatype="image" mode="grid"
|
31
|
|
- @select="selectFile" @delete="deleteFile"></uni-file-picker>
|
|
31
|
+ <uni-file-picker :auto-upload="false" :limit="3" title="最多选择3张图片" v-model="imageValue" fileMediatype="image"
|
|
32
|
+ mode="grid" @select="selectFile" @delete="deleteFile"></uni-file-picker>
|
32
|
33
|
</view>
|
33
|
34
|
</view>
|
34
|
35
|
</view>
|
|
@@ -107,7 +108,15 @@
|
107
|
108
|
num: {
|
108
|
109
|
type: Number,
|
109
|
110
|
default: 0
|
110
|
|
- }
|
|
111
|
+ },
|
|
112
|
+ modifyReason: {
|
|
113
|
+ type: String,
|
|
114
|
+ default: ''
|
|
115
|
+ },
|
|
116
|
+ isFirstShowReason: {
|
|
117
|
+ type: Boolean,
|
|
118
|
+ default: true
|
|
119
|
+ },
|
111
|
120
|
},
|
112
|
121
|
methods: {
|
113
|
122
|
// 获取上传状态
|
|
@@ -119,7 +128,7 @@
|
119
|
128
|
// 移除
|
120
|
129
|
deleteFile(e) {
|
121
|
130
|
console.log('移除:', e);
|
122
|
|
- this.imageValue = this.imageValue.filter(v=>v.uuid != e.tempFile.uuid);
|
|
131
|
+ this.imageValue = this.imageValue.filter(v => v.uuid != e.tempFile.uuid);
|
123
|
132
|
},
|
124
|
133
|
// 确定
|
125
|
134
|
ok() {
|
|
@@ -154,8 +163,15 @@
|
154
|
163
|
bottom: 0;
|
155
|
164
|
background-color: rgba(0, 0, 0, 0.2);
|
156
|
165
|
z-index: 999;
|
157
|
|
-
|
158
|
|
- .tips{}
|
|
166
|
+
|
|
167
|
+ .tips {
|
|
168
|
+ text-align: center;
|
|
169
|
+ }
|
|
170
|
+
|
|
171
|
+ .tips-l {
|
|
172
|
+ text-align: left;
|
|
173
|
+ color: #000;
|
|
174
|
+ }
|
159
|
175
|
|
160
|
176
|
.uni-list-cell {
|
161
|
177
|
width: 94%;
|
|
@@ -297,6 +313,7 @@
|
297
|
313
|
height: 87rpx;
|
298
|
314
|
background-color: rgb(229, 233, 237);
|
299
|
315
|
}
|
|
316
|
+
|
300
|
317
|
&:first-of-type::before {
|
301
|
318
|
display: none;
|
302
|
319
|
}
|