|
@@ -6,6 +6,22 @@
|
|
|
<a-input v-model='infoData.Name' style='width: 180px' @change='changeInfoName' />
|
|
|
</div>
|
|
|
<div class='row'>
|
|
|
+ <div class='row-tit'>字号</div>
|
|
|
+ <div class='grid-content'>
|
|
|
+ <a-input-number v-model='infoData.Properties.FontSize' @change='changeInfoProperties' :min='1' :max='100' style='width: 128px' />
|
|
|
+ </div>
|
|
|
+ <div class='color-choice'>
|
|
|
+ <swatches v-model='infoData.Properties.Color' popover-x='left' @close='changeInfoProperties' />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class='row'>
|
|
|
+ <div class='row-tit'>背景色</div>
|
|
|
+ <div class='color-choice '>
|
|
|
+ <swatches v-model='infoData.Properties.Background' :swatches="swatches" popover-x='left' @close='changeInfoProperties' />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <a-divider />
|
|
|
+ <div class='row'>
|
|
|
<div class='row-tit'>信息点Code</div>
|
|
|
<a-input v-model='infoData.Code' style='width: 180px' @change='changeInfoCode' />
|
|
|
</div>
|
|
@@ -44,6 +60,7 @@ export default {
|
|
|
return {
|
|
|
infoData: {},
|
|
|
AttachObjectIds: [], //工程信息化对象 ID 列表
|
|
|
+ swatches: ['#00000000', '#1FBC9C', '#1CA085', '#2ECC70', '#27AF60', '#3398DB', '#2980B9', '#A463BF', '#8E43AD', '#3D556E', '#222F3D'],
|
|
|
}
|
|
|
},
|
|
|
|
|
@@ -83,6 +100,9 @@ export default {
|
|
|
changeInfoCode() {
|
|
|
bus.$emit('changeInfoItemCode', this.infoData.Code)
|
|
|
},
|
|
|
+ changeInfoProperties() {
|
|
|
+ bus.$emit('changeInfoProperties', this.infoData.Properties)
|
|
|
+ },
|
|
|
changeInfoAttachObjectIds(index) {},
|
|
|
},
|
|
|
}
|
|
@@ -108,6 +128,7 @@ export default {
|
|
|
& /deep/ .vue-swatches__trigger {
|
|
|
width: 26px !important;
|
|
|
height: 26px !important;
|
|
|
+ border: 1px solid #aeaeae;
|
|
|
border-radius: 0px !important;
|
|
|
}
|
|
|
}
|