Commit 3db4785f authored by qzhxx's avatar qzhxx

测试迭代

parent ae2b6d91
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
></el-option> ></el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item label="机构地理位置:" prop="areaName" required> <el-form-item label="机构地理位置:" prop="areaName">
<el-input <el-input
v-model="formItem.areaName" v-model="formItem.areaName"
disabled disabled
...@@ -78,6 +78,9 @@ export default { ...@@ -78,6 +78,9 @@ export default {
permanent: [ permanent: [
{ required: true, message: "请选择账号有效期", trigger: "change" }, { required: true, message: "请选择账号有效期", trigger: "change" },
], ],
areaName:[
{ required: true, message: "请选择机构地理位置", trigger: "change" },
]
}, },
}; };
}, },
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
</el-form> </el-form>
<div class="page-tip"> <div class="page-tip">
<span class="page-tip-title">页面说明:</span> <span class="page-tip-title">页面说明:</span>
<span class="page-tips">可查看视频待审核的所有内容,可根据审核类别进行筛选</span> <span class="page-tips">可查看学习内容待审核的所有内容,可根据审核类别进行筛选</span>
</div> </div>
</div> </div>
<div class="table-content"> <div class="table-content">
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
</el-form> </el-form>
<div class="page-tip"> <div class="page-tip">
<span class="page-tip-title">页面说明:</span> <span class="page-tip-title">页面说明:</span>
<span class="page-tips">可查看学习内容待审核的所有内容,可根据审核类别进行筛选</span> <span class="page-tips">可查看视频待审核的所有内容,可根据审核类别进行筛选</span>
</div> </div>
</div> </div>
<div class="table-content"> <div class="table-content">
...@@ -555,10 +555,10 @@ export default { ...@@ -555,10 +555,10 @@ export default {
url: `/aa/group1/M00/00/54/wKhuVWCBObuAUSIQA6Mwb1hO1jk035.mp4`, url: `/aa/group1/M00/00/54/wKhuVWCBObuAUSIQA6Mwb1hO1jk035.mp4`,
responseType: "blob", responseType: "blob",
}).then(res => { }).then(res => {
debugger; // debugger;
var blob = res.data; var blob = res.data;
console.log(window.URL.createObjectURL(blob), '加密的视频地址') console.log(window.URL.createObjectURL(blob), '加密的视频地址')
_this.videoSrc = window.URL.createObjectURL(blob) // _this.videoSrc = window.URL.createObjectURL(blob)
// video.onload = function(e) { // video.onload = function(e) {
// window.URL.revokeObjectURL(video.src); // window.URL.revokeObjectURL(video.src);
// }; // };
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
end-placeholder="结束日期" end-placeholder="结束日期"
></el-date-picker> ></el-date-picker>
</el-form-item> </el-form-item>
<el-form-item class="selectH100" label="请选择预设视频分类" prop="videoContentCatIdList"> <el-form-item label="请选择预设视频分类" prop="videoContentCatIdList">
<el-select <el-select
placeholder="请选择预设视频分类" placeholder="请选择预设视频分类"
@focus="getAssetTypeData" @focus="getAssetTypeData"
......
...@@ -298,10 +298,7 @@ export default { ...@@ -298,10 +298,7 @@ export default {
_this.$qs.stringify({isPublish:isPublish})) _this.$qs.stringify({isPublish:isPublish}))
.then( .then(
res => { res => {
// _this.msgInfo = {
// type: "wait",
// des: `申请已提交,待审核…`,
// };
if(res.data.resultCode === "200"){ if(res.data.resultCode === "200"){
if(_isPublish){ if(_isPublish){
......
...@@ -317,6 +317,7 @@ export default { ...@@ -317,6 +317,7 @@ export default {
// 上下架 // 上下架
handlePublish(row, isPublish) { handlePublish(row, isPublish) {
let _this = this; let _this = this;
let _isPublish = isPublish
_this _this
.$https( .$https(
{ {
...@@ -328,13 +329,20 @@ export default { ...@@ -328,13 +329,20 @@ export default {
) )
.then( .then(
(res) => { (res) => {
// this.$message({ type: "success", message: "删除成功!" });
// alert("已提交审核!") if(res.data.resultCode === "200"){
this.msgInfo = {
type: "wait",
des: `申请已提交,待审核…`, if(_isPublish === 'True'){
}; this.$message({ type: "success", message: "启用申请已提交,待审核!" });
_this.Search();
}else{
this.$message({ type: "success", message: "禁用申请已提交,待审核!" });
}
_this.onSearch();
}else{
this.$message({ type: "error", message: res.data.message });
}
}, },
(error) => { (error) => {
this.$message({ this.$message({
......
...@@ -125,13 +125,13 @@ ...@@ -125,13 +125,13 @@
v-show="type === 'add'" v-show="type === 'add'"
class="btn_form_search" class="btn_form_search"
@click="submitForm('ruleForm')" @click="submitForm('ruleForm')"
>确定</el-button> >提交审核</el-button>
<el-button <el-button
type="primary" type="primary"
v-show="type === 'Update'" v-show="type === 'Update'"
class="btn_form_search" class="btn_form_search"
@click="updateForm('ruleForm')" @click="updateForm('ruleForm')"
>确定</el-button> >提交审核</el-button>
<el-button @click="resetForm('ruleForm')">取消</el-button> <el-button @click="resetForm('ruleForm')">取消</el-button>
</div> </div>
</div> </div>
......
...@@ -196,9 +196,15 @@ ...@@ -196,9 +196,15 @@
color: @party-btn-color; color: @party-btn-color;
} }
} }
// 多选选择下拉选中放左侧
.el-select-dropdown.is-multiple .el-select-dropdown__item.selected::after {
right: 263px!important;
}
// 系统form 表单样式 // 系统form 表单样式
.party-form { .party-form {
.el-input__icon { .el-input__icon {
width: 40px; width: 40px;
font-size: 20px; font-size: 20px;
...@@ -219,6 +225,7 @@ ...@@ -219,6 +225,7 @@
border: 1px solid @party-border-color; border: 1px solid @party-border-color;
} }
} }
.el-textarea .el-textarea__inner { .el-textarea .el-textarea__inner {
background-color: @party-bg-gray; background-color: @party-bg-gray;
...@@ -265,6 +272,7 @@ ...@@ -265,6 +272,7 @@
} }
} }
.el-checkbox-group { .el-checkbox-group {
.el-checkbox { .el-checkbox {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment