Commit d40f7595599c6b363474830fedaf44dbb2e3eef5
1 parent
2157569a
fix detail styles
Showing
3 changed files
with
30 additions
and
3 deletions
src/css/test.css
| 1 | +[v-cloak]{ | |
| 2 | + display: none; | |
| 3 | +} | |
| 1 | 4 | .diy-reset { |
| 2 | 5 | margin: 0; |
| 3 | 6 | padding: 0 |
| ... | ... | @@ -73,4 +76,27 @@ |
| 73 | 76 | .bg-white { |
| 74 | 77 | background-color: transparent; |
| 75 | 78 | border-color: #B4B4B4; |
| 79 | +} | |
| 80 | +.el-form-item.is-required:not(.is-no-asterisk)>.el-form-item__label-wrap>.el-form-item__label:before, .el-form-item.is-required:not(.is-no-asterisk)>.el-form-item__label:before { | |
| 81 | + color: #FF725C; | |
| 82 | +} | |
| 83 | +.el-input__inner { | |
| 84 | + font-size: 16px; | |
| 85 | + color: #333333; | |
| 86 | +} | |
| 87 | +.el-input__inner:hover { | |
| 88 | + --el-input-focus-border: #4A90E2; | |
| 89 | +} | |
| 90 | +.el-textarea { | |
| 91 | + font-size: 16px; | |
| 92 | + color: #333333; | |
| 93 | +} | |
| 94 | +.el-textarea__inner { | |
| 95 | + resize: none; | |
| 96 | + line-height: 22px; | |
| 97 | +} | |
| 98 | +.el-radio__inner { | |
| 99 | + width: 16px; | |
| 100 | + height: 16px; | |
| 101 | + border: 1px solid #E3E3E3; | |
| 76 | 102 | } |
| 77 | 103 | \ No newline at end of file | ... | ... |
src/html/index.html
| ... | ... | @@ -11,10 +11,11 @@ |
| 11 | 11 | <link rel="shortcut icon" href="/cms.ico" /> |
| 12 | 12 | <link rel="bookmark" href="/cms.ico" /> |
| 13 | 13 | <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/element-plus@1.1.0-beta.12/theme-chalk/index.css"> |
| 14 | + <script src="https://cdn.jsdelivr.net/npm/vue@3.2.11/dist/vue.global.js"></script> | |
| 14 | 15 | </head> |
| 15 | 16 | |
| 16 | 17 | <body id="body" class="diy-reset"> |
| 17 | - <div id="audioPage" class="page-container"> | |
| 18 | + <div id="audioPage" class="page-container" v-cloak> | |
| 18 | 19 | <el-card shadow="never"> |
| 19 | 20 | <template #header> |
| 20 | 21 | <div class="card-header"> |
| ... | ... | @@ -85,7 +86,6 @@ |
| 85 | 86 | </div> |
| 86 | 87 | </el-card> |
| 87 | 88 | </div> |
| 88 | - <script src="https://cdn.jsdelivr.net/npm/vue@3.2.11/dist/vue.global.js"></script> | |
| 89 | 89 | <script src="https://cdn.jsdelivr.net/npm/element-plus@1.1.0-beta.12"></script> |
| 90 | 90 | <script src="https://cdn.jsdelivr.net/npm/axios@0.17.1/dist/axios.min.js"></script> |
| 91 | 91 | <script src="https://cdn.jsdelivr.net/npm/qiniu-js@2.5.5/dist/qiniu.min.js"></script> | ... | ... |
src/js/audios.js
| ... | ... | @@ -144,7 +144,8 @@ const Audio = { |
| 144 | 144 | videoId: null, |
| 145 | 145 | |
| 146 | 146 | multipleCategory: 100005, |
| 147 | - tag: this.getChannelText(this.form.channelId), | |
| 147 | + tag: 'test', | |
| 148 | + // tag: this.getChannelText(this.form.channelId), | |
| 148 | 149 | ts: this.getTs(), |
| 149 | 150 | timestamp: this.getTimeStamp(), |
| 150 | 151 | masterId: all.secretUrls.masterIdMaster, | ... | ... |