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 | .diy-reset { | 4 | .diy-reset { |
| 2 | margin: 0; | 5 | margin: 0; |
| 3 | padding: 0 | 6 | padding: 0 |
| @@ -73,4 +76,27 @@ | @@ -73,4 +76,27 @@ | ||
| 73 | .bg-white { | 76 | .bg-white { |
| 74 | background-color: transparent; | 77 | background-color: transparent; |
| 75 | border-color: #B4B4B4; | 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 | \ No newline at end of file | 103 | \ No newline at end of file |
src/html/index.html
| @@ -11,10 +11,11 @@ | @@ -11,10 +11,11 @@ | ||
| 11 | <link rel="shortcut icon" href="/cms.ico" /> | 11 | <link rel="shortcut icon" href="/cms.ico" /> |
| 12 | <link rel="bookmark" href="/cms.ico" /> | 12 | <link rel="bookmark" href="/cms.ico" /> |
| 13 | <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/element-plus@1.1.0-beta.12/theme-chalk/index.css"> | 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 | </head> | 15 | </head> |
| 15 | 16 | ||
| 16 | <body id="body" class="diy-reset"> | 17 | <body id="body" class="diy-reset"> |
| 17 | - <div id="audioPage" class="page-container"> | 18 | + <div id="audioPage" class="page-container" v-cloak> |
| 18 | <el-card shadow="never"> | 19 | <el-card shadow="never"> |
| 19 | <template #header> | 20 | <template #header> |
| 20 | <div class="card-header"> | 21 | <div class="card-header"> |
| @@ -85,7 +86,6 @@ | @@ -85,7 +86,6 @@ | ||
| 85 | </div> | 86 | </div> |
| 86 | </el-card> | 87 | </el-card> |
| 87 | </div> | 88 | </div> |
| 88 | - <script src="https://cdn.jsdelivr.net/npm/vue@3.2.11/dist/vue.global.js"></script> | ||
| 89 | <script src="https://cdn.jsdelivr.net/npm/element-plus@1.1.0-beta.12"></script> | 89 | <script src="https://cdn.jsdelivr.net/npm/element-plus@1.1.0-beta.12"></script> |
| 90 | <script src="https://cdn.jsdelivr.net/npm/axios@0.17.1/dist/axios.min.js"></script> | 90 | <script src="https://cdn.jsdelivr.net/npm/axios@0.17.1/dist/axios.min.js"></script> |
| 91 | <script src="https://cdn.jsdelivr.net/npm/qiniu-js@2.5.5/dist/qiniu.min.js"></script> | 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,7 +144,8 @@ const Audio = { | ||
| 144 | videoId: null, | 144 | videoId: null, |
| 145 | 145 | ||
| 146 | multipleCategory: 100005, | 146 | multipleCategory: 100005, |
| 147 | - tag: this.getChannelText(this.form.channelId), | 147 | + tag: 'test', |
| 148 | + // tag: this.getChannelText(this.form.channelId), | ||
| 148 | ts: this.getTs(), | 149 | ts: this.getTs(), |
| 149 | timestamp: this.getTimeStamp(), | 150 | timestamp: this.getTimeStamp(), |
| 150 | masterId: all.secretUrls.masterIdMaster, | 151 | masterId: all.secretUrls.masterIdMaster, |