路由-样式修改

prod
吕天方 1 year ago
parent 7620456586
commit 632d12efa7

@ -5,7 +5,7 @@ VUE_APP_TITLE = 金鸡湖现代服务业品牌管理系统
ENV = 'development' ENV = 'development'
# 金鸡湖现代服务业品牌管理系统/开发环境 # 金鸡湖现代服务业品牌管理系统/开发环境
VUE_APP_BASE_API = 'http://192.168.0.107:9040' VUE_APP_BASE_API = 'http://192.168.0.109:9040'
# VUE_APP_BASE_API = 'http://39.101.188.84:9040' # VUE_APP_BASE_API = 'http://39.101.188.84:9040'
# 路由懒加载 # 路由懒加载

@ -1132,6 +1132,11 @@
</el-row> </el-row>
</div> </div>
</el-form> </el-form>
<div class="operate_btn">
<el-button @click="goBack"></el-button>
<el-button @click="submitForm" >暂存</el-button>
<el-button type="success" @click="submitForm" class="btn">提交</el-button>
</div>
</div> </div>
<div class="right_content"> <div class="right_content">
<div class="left_main"> <div class="left_main">
@ -1159,11 +1164,11 @@
</div> </div>
</div> </div>
</div> </div>
<div class="operate_btn"> <!-- <div class="operate_btn">
<el-button @click="goBack"></el-button> <el-button @click="goBack"></el-button>
<el-button @click="submitForm" >暂存</el-button> <el-button @click="submitForm" >暂存</el-button>
<el-button type="success" @click="submitForm" class="btn">提交</el-button> <el-button type="success" @click="submitForm" class="btn">提交</el-button>
</div> </div> -->
</div> </div>
</template> </template>
@ -1792,8 +1797,13 @@ export default {
form.append('file', file) form.append('file', file)
uploadFile(form).then(response => { uploadFile(form).then(response => {
// this.fileList = [] // this.fileList = []
// console.log(response,"response");
// console.log(file,"file");
this.fileList.push(file) this.fileList.push(file)
this.uploadList.push(response.data) let data = {};
data.name = response.originalFilename;
data.url = response.url;
this.uploadList.push(data)
this.form.fileList = this.fileList this.form.fileList = this.fileList
console.log('this.fileList: ', this.fileList); console.log('this.fileList: ', this.fileList);
}) })
@ -2122,6 +2132,7 @@ list-style: none; /* 清除列表项前的标记 */
.operate_btn { .operate_btn {
text-align: center; text-align: center;
background-color: #fff; background-color: #fff;
padding-bottom: 20px;
} }
.form { .form {
@ -2172,19 +2183,19 @@ list-style: none; /* 清除列表项前的标记 */
color: #000; color: #000;
} }
/* 悬浮 */ /* 悬浮 */
::v-deep .el-button:hover { // ::v-deep .el-button:hover {
/* background: linear-gradient(#0165eb, #018ff2, #00b7f9) !important; */ // /* background: linear-gradient(#0165eb, #018ff2, #00b7f9) !important; */
background: linear-gradient(100deg, #f1d78c, #f1c19d) !important; // background: linear-gradient(100deg, #f1d78c, #f1c19d) !important;
font-weight: bold; // font-weight: bold;
color: #606266; // color: #606266;
} // }
/*按钮点击*/ /*按钮点击*/
::v-deep .el-button:focus { // ::v-deep .el-button:focus {
background: linear-gradient(100deg, #f1d78c, #f1c19d) !important; // background: linear-gradient(100deg, #f1d78c, #f1c19d) !important;
/* background: linear-gradient(#0165eb, #018ff2, #00b7f9) !important; */ // /* background: linear-gradient(#0165eb, #018ff2, #00b7f9) !important; */
font-weight: bold; // font-weight: bold;
color: #606266; // color: #606266;
} // }
.form_item { .form_item {
position: absolute; position: absolute;
width: 300px; width: 300px;

@ -1578,6 +1578,12 @@
</div> </div>
</div> </div>
</el-form> </el-form>
<div class="operate_btn">
<el-button @click="goBack"></el-button>
<el-button v-if="pageType == 'edit'" @click="submitForm"></el-button>
<el-button v-if="pageType == 'edit'" type="success" @click="submitForm"></el-button>
<el-button v-if="pageType == 'detail'" @click="printOutpdf" class="btn"></el-button>
</div>
</div> </div>
<div class="right_content"> <div class="right_content">
<div class="left_title"> <div class="left_title">
@ -1654,12 +1660,12 @@
</div> </div>
</div> </div>
</div> </div>
<div class="operate_btn"> <!-- <div class="operate_btn">
<el-button @click="goBack"></el-button> <el-button @click="goBack"></el-button>
<el-button v-if="pageType == 'edit'" @click="submitForm"></el-button> <el-button v-if="pageType == 'edit'" @click="submitForm"></el-button>
<el-button v-if="pageType == 'edit'" type="success" @click="submitForm"></el-button> <el-button v-if="pageType == 'edit'" type="success" @click="submitForm"></el-button>
<el-button v-if="pageType == 'detail'" @click="printOutpdf" class="btn"></el-button> <el-button v-if="pageType == 'detail'" @click="printOutpdf" class="btn"></el-button>
</div> </div> -->
</div> </div>
</template> </template>
@ -3100,6 +3106,7 @@ list-style: none; /* 清除列表项前的标记 */
.operate_btn { .operate_btn {
text-align: center; text-align: center;
background-color: #fff; background-color: #fff;
padding-bottom: 20px;
} }
.form { .form {

@ -1144,6 +1144,9 @@
</el-row> </el-row>
</div> </div>
</el-form> </el-form>
<div class="operate_btn">
<el-button type="success" @click="submitForm" class="btn">提交</el-button>
</div>
</div> </div>
<div class="right_content"> <div class="right_content">
<div class="left_main"> <div class="left_main">
@ -2176,6 +2179,7 @@ list-style: none; /* 清除列表项前的标记 */
.operate_btn { .operate_btn {
text-align: center; text-align: center;
background-color: #fff; background-color: #fff;
padding-bottom: 20px;
} }
.form { .form {

Loading…
Cancel
Save