You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
129 lines
3.9 KiB
129 lines
3.9 KiB
<template>
|
|
<div class="app-container">
|
|
<!-- <div class="tab-header webtop">-->
|
|
<!-- <div>价格维护</div>-->
|
|
<!-- <div>-->
|
|
<!-- <el-button type="info" size="small" @click="handleReturn()">关闭</el-button>-->
|
|
<!-- </div>-->
|
|
<!-- </div>-->
|
|
<!-- <div class="listconadd">-->
|
|
<!-- <el-form ref="printForm" :model="temp" label-position="right" class="formadd" :rules="rules">-->
|
|
<!-- <el-row class="tleftb_one">-->
|
|
<!-- <el-col :span="6" class="tleftb">-->
|
|
<!-- <span>车型名称</span>-->
|
|
<!-- </el-col>-->
|
|
<!-- <el-col :span="18">-->
|
|
<!-- <el-form-item>-->
|
|
<!-- <span>{{ temp.modelName }}</span>-->
|
|
<!-- </el-form-item>-->
|
|
<!-- </el-col>-->
|
|
<!-- </el-row>-->
|
|
<!-- <el-row>-->
|
|
<!-- <el-col :span="6" class="tleftb">-->
|
|
<!-- <span>常用配置</span>-->
|
|
<!-- </el-col>-->
|
|
<!-- <el-col :span="18">-->
|
|
<!-- <el-form-item>-->
|
|
<!-- <span>{{ temp.configName }}</span>-->
|
|
<!-- </el-form-item>-->
|
|
<!-- </el-col>-->
|
|
<!-- </el-row>-->
|
|
<!-- <el-row>-->
|
|
<!-- <el-col :span="6" class="tleftb">-->
|
|
<!-- <span>更多配置</span>-->
|
|
<!-- </el-col>-->
|
|
<!-- <el-col :span="18">-->
|
|
<!-- <el-form-item>-->
|
|
<!-- <span>{{ temp.otherConfig }}</span>-->
|
|
<!-- </el-form-item>-->
|
|
<!-- </el-col>-->
|
|
<!-- </el-row>-->
|
|
<!-- <el-row>-->
|
|
<!-- <el-col :span="6" class="tleftb">-->
|
|
<!-- <span>厂家结算价(万元)</span>-->
|
|
<!-- </el-col>-->
|
|
<!-- <el-col :span="6">-->
|
|
<!-- <el-form-item>-->
|
|
<!-- <el-input v-model="temp.manufactorSettlementPrice" maxlength="125" placeholder="请输入" class="addinputw" clearable/>-->
|
|
<!-- </el-form-item>-->
|
|
<!-- </el-col>-->
|
|
<!-- <el-col :span="6" class="tleftb">-->
|
|
<!-- <span>销售指导价(万元)</span>-->
|
|
<!-- </el-col>-->
|
|
<!-- <el-col :span="6">-->
|
|
<!-- <el-form-item>-->
|
|
<!-- <el-input v-model="temp.guidedPrice" maxlength="125" placeholder="请输入" class="addinputw" clearable/>-->
|
|
<!-- </el-form-item>-->
|
|
<!-- </el-col>-->
|
|
<!-- </el-row>-->
|
|
<!-- </el-form>-->
|
|
<!-- <div class="form_btn">-->
|
|
<!-- <el-button type="primary" size="small" @click="handleCreate()">确认</el-button>-->
|
|
<!-- <el-button type="info" size="small" @click="handleReturn()">返回</el-button>-->
|
|
<!-- </div>-->
|
|
<!-- </div>-->
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "printContract",
|
|
data() {
|
|
return {
|
|
temp: {
|
|
|
|
},
|
|
rules: {}
|
|
}
|
|
},
|
|
methods: {
|
|
// showPrint(sid) {
|
|
// this.$nextTick(() => {
|
|
// this.$refs['weihuForm'].clearValidate()
|
|
// })
|
|
// fetchBySid(sid).then(resp => {
|
|
// if (resp.success) {
|
|
// const data = resp.data
|
|
// this.temp = data
|
|
// this.temp.sid = sid
|
|
// }
|
|
// })
|
|
// },
|
|
// 返回
|
|
// handleReturn(isreload) {
|
|
// if (isreload === 'true') this.$emit('reloadlist')
|
|
// this.temp = {}
|
|
// this.$emit('doback')
|
|
// },
|
|
// // 保存修改数据
|
|
// handleCreate() {
|
|
// this.$refs['printForm'].validate(valid => {
|
|
// if (valid) {
|
|
// const temp = {
|
|
//
|
|
// }
|
|
// // update(temp).then(resp => {
|
|
// // if (resp.success) {
|
|
// // const data = resp.data
|
|
// // this.temp = data
|
|
// // this.handleReturn('true')
|
|
// // }
|
|
// // })
|
|
// }
|
|
// })
|
|
// }
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
/*.tleftb_one {*/
|
|
/* border-top: 1px solid #e0e3eb;*/
|
|
/*}*/
|
|
|
|
/*.form_btn {*/
|
|
/* display: flex;*/
|
|
/* justify-content: center;*/
|
|
/*}*/
|
|
</style>
|
|
|