|
@@ -117,7 +117,7 @@
|
|
|
<div class="row-tit">显示名称</div>
|
|
|
<a-button type="link" class="edit-option-btn" @click="OpenEditStatus">{{isEdit? "取消编辑" : editStatus[type]}}</a-button>
|
|
|
</div>
|
|
|
- <div class="row">
|
|
|
+ <div :class="['row' ,type == 'Line'?'disabled-textarea':'']">
|
|
|
<a-textarea :disabled="type == 'Line' "
|
|
|
placeholder=""
|
|
|
v-model="lengedName"
|
|
@@ -714,6 +714,11 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<style scoped lang="less">
|
|
|
+ .disabled-textarea{
|
|
|
+ /deep/ .ant-input{
|
|
|
+ resize: none;
|
|
|
+ }
|
|
|
+ }
|
|
|
/deep/ .ant-spin-nested-loading {
|
|
|
height: 100% !important;
|
|
|
.ant-spin-container {
|