zydx-plus 1.35.574 → 1.35.576
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.
package/package.json
CHANGED
|
@@ -102,6 +102,7 @@
|
|
|
102
102
|
<Year v-if="tipYear" style="top: 35px;" @cancel="cancelYear" @confirm="confirmYear($event,item)"></Year>
|
|
103
103
|
</div>
|
|
104
104
|
<div v-if="item.type === 'text'" class="text" v-html="item.value"></div>
|
|
105
|
+
<div v-if="item.type === 'text2'" class="input-text2" v-html="item.value"></div>
|
|
105
106
|
<div v-if="item.type === 'code'" class="ph-code">
|
|
106
107
|
<input type="text" v-model="item.value" :maxlength="item.maxlength" :placeholder="item.placeholder"/>
|
|
107
108
|
<button ref="tipID" @click="item.codeTap($refs.tipID[0],inputArr)">{{
|
|
@@ -382,6 +383,11 @@ export default {
|
|
|
382
383
|
:deep(.text) {
|
|
383
384
|
padding:0 10px;
|
|
384
385
|
}
|
|
386
|
+
.input-text2{
|
|
387
|
+
font-size: 16px;
|
|
388
|
+
text-indent: 2em;
|
|
389
|
+
text-align: left;
|
|
390
|
+
}
|
|
385
391
|
.cover-img{
|
|
386
392
|
width: 300px !important;
|
|
387
393
|
height: 260px;
|