@zscreate/zhxy-app-component 1.0.310 → 1.0.312
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
|
|
55
55
|
<!-- textarea -->
|
|
56
56
|
<view v-else-if="widget.type === 'textarea'" class="evan-form-item-container"
|
|
57
|
-
:class="'evan-form-item-container--' + labelPosition">
|
|
57
|
+
:class="'evan-form-item-container--' + labelPosition" style="display: block;">
|
|
58
58
|
<view class="evan-form-item-container__label"
|
|
59
59
|
:class="{ showAsteriskRect: hasRequiredAsterisk, isRequired: showRequiredAsterisk }" :style="mLabelStyle">
|
|
60
60
|
{{ widget.name }}
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
</view>
|
|
66
66
|
<textarea v-else maxlength="-1" class="form-input cover-text" v-model="dataModel"
|
|
67
67
|
:style="{ height: (widget.options.height || 100) * 2 + 'px'}"
|
|
68
|
-
placeholder-class="form-input-placeholder"
|
|
68
|
+
placeholder-class="form-input-placeholder form-input-placeholder-textarea"
|
|
69
69
|
:placeholder="widget.options.placeholder" :disabled="widget.options.disabled">
|
|
70
70
|
</textarea>
|
|
71
71
|
</view>
|
|
@@ -1851,10 +1851,11 @@ export default {
|
|
|
1851
1851
|
this.validateInit()
|
|
1852
1852
|
})
|
|
1853
1853
|
var departType = this.widget.options.departType ? this.widget.options.departType : ''
|
|
1854
|
+
var departTypeAFDesign = this.widget.options.departTypeAFDesign ? this.widget.options.departTypeAFDesign : ''
|
|
1854
1855
|
uni.navigateTo({
|
|
1855
1856
|
url: '/pages/picker/depart?sign=' + PubsubSign + '&multiple=' + flag + '&departRela=' +
|
|
1856
1857
|
departRela + '&selectedDepart=' + JSON.stringify(this.dataModel ? this.dataModel : []) + '&departType=' +
|
|
1857
|
-
departType
|
|
1858
|
+
departType + '&departTypeAFDesign=' + departTypeAFDesign
|
|
1858
1859
|
});
|
|
1859
1860
|
},
|
|
1860
1861
|
// 获取EvanForm组件
|
|
@@ -2320,16 +2321,19 @@ checkbox-group label {
|
|
|
2320
2321
|
&--top {
|
|
2321
2322
|
.evan-form-item-container__label {
|
|
2322
2323
|
// padding-bottom: 10upx;
|
|
2323
|
-
color: #000000;
|
|
2324
|
+
color: #000000 !important;
|
|
2324
2325
|
}
|
|
2325
2326
|
}
|
|
2326
2327
|
}
|
|
2327
2328
|
|
|
2328
2329
|
::v-deep .form-input-placeholder {
|
|
2329
2330
|
// line-height: 90upx;
|
|
2330
|
-
color: #555;
|
|
2331
|
+
color: #555 !important;
|
|
2331
2332
|
}
|
|
2332
2333
|
|
|
2334
|
+
::v-deep .form-input-placeholder-textarea {
|
|
2335
|
+
text-align: left !important;
|
|
2336
|
+
}
|
|
2333
2337
|
.form-textarea-placeholder {
|
|
2334
2338
|
padding-top: 28upx;
|
|
2335
2339
|
font-size: 34upx;
|