|
@@ -38,53 +38,64 @@
|
|
|
</div>
|
|
|
<div class="bottomPartRight bottomPartRightTemplate">
|
|
|
<p class="poolTitle">模板内容:</p>
|
|
|
- <el-form
|
|
|
- class="subTemplate"
|
|
|
- ref="groups"
|
|
|
- :model="form"
|
|
|
- >
|
|
|
- <el-form-item
|
|
|
- label="选择归属:"
|
|
|
- prop="region"
|
|
|
- size="mini"
|
|
|
- >
|
|
|
- <el-select
|
|
|
- v-model="form.region"
|
|
|
- placeholder="请选择模板归属"
|
|
|
+ <div class="arrowWrap" style="float:right;marginRight:10px" v-if="type != 1 && type != 2">
|
|
|
+ <i class="el-icon-arrow-left arrowWrapPub" @click="moveTag(0)"></i>
|
|
|
+ <i class="el-icon-arrow-right arrowWrapPub" @click="moveTag(1)"></i>
|
|
|
+ </div>
|
|
|
+ <div class="formWrap" v-if="type == 1 || type == 2">
|
|
|
+ <el-form
|
|
|
+ class="subTemplate"
|
|
|
+ :model="form"
|
|
|
>
|
|
|
- <el-option
|
|
|
- v-for="item in Adscriptions"
|
|
|
- :label="item.name"
|
|
|
- :value="item.val"
|
|
|
- :key="item.id"
|
|
|
- ></el-option>
|
|
|
- </el-select>
|
|
|
- <el-button size="mini">添加</el-button>
|
|
|
- <el-button size="mini">删除子模板</el-button>
|
|
|
- <el-button size="mini">插入输入栏</el-button>
|
|
|
-
|
|
|
- <el-button icon="el-icon-arrow-left" class="changeOrder changeOrderPub"></el-button>
|
|
|
- <el-button icon="el-icon-arrow-right" class="changeOrderPub"></el-button>
|
|
|
- </el-form-item>
|
|
|
- </el-form>
|
|
|
+ <el-form-item
|
|
|
+ label="添加子模板:"
|
|
|
+ prop="region"
|
|
|
+ size="mini"
|
|
|
+ >
|
|
|
+ <el-select
|
|
|
+ v-model="form.region"
|
|
|
+ placeholder="请选择子模板"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in Adscriptions"
|
|
|
+ :label="item.name"
|
|
|
+ :value="item.id"
|
|
|
+ :key="item.id"
|
|
|
+ ></el-option>
|
|
|
+ </el-select>
|
|
|
+ <el-button size="mini" @click="addDomTemplate(0,'submitForm')">添加</el-button>
|
|
|
+ <el-button size="mini" @click="delSubTemplate">删除子模板</el-button>
|
|
|
+ <el-button size="mini" @click="addDomTemplate(1)">插入输入栏</el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ <div class="arrowWrap">
|
|
|
+ <i class="el-icon-arrow-left arrowWrapPub" @click="moveTag(0)"></i>
|
|
|
+ <i class="el-icon-arrow-right arrowWrapPub" @click="moveTag(1)"></i>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
<ul class="tagList operationPool templateTagLists">
|
|
|
<li
|
|
|
class="tagItem operationItem"
|
|
|
- v-for="(item) in rightTagsList2"
|
|
|
- :key='item.id'
|
|
|
+ v-for="(item,idx) in rightTagsList"
|
|
|
+ :key='item.name'
|
|
|
+ @click='selectRightTag(item,idx)'
|
|
|
:style="getStyle2(item)?styles:null"
|
|
|
- @click='selectRightTag(item)'
|
|
|
>
|
|
|
- <div class="inputBox">
|
|
|
- <el-input
|
|
|
- v-if="item.type === 'input'"
|
|
|
- placeholder=""
|
|
|
- v-model="item.text"
|
|
|
- >
|
|
|
- </el-input>
|
|
|
+ <div class="inputBox" v-if="item.type === 'input'">
|
|
|
+ <el-input
|
|
|
+ placeholder=""
|
|
|
+ v-model="item.text"
|
|
|
+ @change="updataData"
|
|
|
+ >
|
|
|
+ </el-input>
|
|
|
</div>
|
|
|
<p
|
|
|
- v-if="item.tagName"
|
|
|
+ v-if="item.type === 'sub'"
|
|
|
+ class="tagName ellipsis"
|
|
|
+ :title="'[ '+item.tagName+' ]'"
|
|
|
+ >{{item.tagName}}</p>
|
|
|
+ <p
|
|
|
+ v-if="item.type !== 'input' && item.type !== 'sub'"
|
|
|
class="tagName ellipsis"
|
|
|
:title="'[ '+item.tagName+' ]'"
|
|
|
>{{item.tagName}} </p>
|
|
@@ -107,61 +118,80 @@ export default {
|
|
|
default: '',
|
|
|
type: String
|
|
|
},
|
|
|
- sexType: {
|
|
|
- default: '',
|
|
|
- type: String
|
|
|
- },
|
|
|
options: {
|
|
|
- default: () => [],
|
|
|
- type: Array
|
|
|
+ default: () => {},
|
|
|
+ type: Object
|
|
|
},
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
- Adscriptions: [
|
|
|
- { name: '添加病情变化', val: '1', id: '001' },
|
|
|
- { name: '病程变化', val: '2', id: '002' },
|
|
|
- { name: '添加其他症状', val: '3', id: '003' },
|
|
|
- ],
|
|
|
- form: {
|
|
|
- region: '1', //归属
|
|
|
+ Adscriptions: [], //子模板列表
|
|
|
+ form: {region: ''}, //当前子模板
|
|
|
+ addTag:{
|
|
|
+ text:'', //输入框内容为空
|
|
|
+ id:'', //id可以用index做id
|
|
|
+ type:'input', //sub 子模板
|
|
|
},
|
|
|
+ subTmpList:[], //子模板的id用于去重
|
|
|
leftTagsList: [],
|
|
|
selectLeftTagsList: [],
|
|
|
rightTagsList: [],
|
|
|
- rightTagsList2: [],
|
|
|
selectRightTagsList: [],
|
|
|
+ selectRightTagsListIndex: [],
|
|
|
searchVal: '',
|
|
|
styles: {
|
|
|
background: '#eae7e7'
|
|
|
},
|
|
|
}
|
|
|
},
|
|
|
+ destroyed: function () {
|
|
|
+ this.searchVal = ''
|
|
|
+ },
|
|
|
mounted() {
|
|
|
- this.rightTagsList2 = this.options
|
|
|
- let newArr = []
|
|
|
- for (let i = 0; i < this.rightTagsList2.length; i++) {
|
|
|
- if (this.rightTagsList2[i].tagType == 8) {
|
|
|
- newArr.push({ text: this.rightTagsList2[i].tagName, type: 'input', id: i + ',,,' })
|
|
|
- } else {
|
|
|
- if (i === 0) {
|
|
|
- newArr.push({ text: '', type: 'input', id: i + ',,,' })
|
|
|
- }
|
|
|
- newArr.push(this.rightTagsList2[i])
|
|
|
- if (!this.rightTagsList2[i + 1] || this.rightTagsList2[i + 1] && this.rightTagsList2[i + 1].tagType != 8) {
|
|
|
- newArr.push({ text: '', type: 'input', id: i + ',,,,' })
|
|
|
+ this.$nextTick(()=>{
|
|
|
+ if(this.options.id){
|
|
|
+ if(this.options && this.options.data && this.options.data.length>0){
|
|
|
+ let reviewList = this.options.data
|
|
|
+ let tmpSubTmpList = this.subTmpList.slice(0)
|
|
|
+ for(let m = 0;m < reviewList.length;m++){
|
|
|
+ if(reviewList[m].relationModule != null){ //这是子模板,修改有子模板需要记录去重
|
|
|
+ reviewList[m].id = reviewList[m].relationModule + 'sub'
|
|
|
+ reviewList[m].tagName = reviewList[m].relationModuleName
|
|
|
+ reviewList[m].type = 'sub'
|
|
|
+ tmpSubTmpList.push(reviewList[m].relationModule)
|
|
|
+ this.subTmpList = tmpSubTmpList
|
|
|
+ }else if(reviewList[m].tagType == 8){ //这个是输入框文字
|
|
|
+ reviewList[m].id = m+'1001001001'
|
|
|
+ reviewList[m].type = 'input'
|
|
|
+ reviewList[m].text = reviewList[m].tagName
|
|
|
+ }else{ //这个是标签
|
|
|
+ reviewList[m].id = reviewList[m].questionId
|
|
|
+ }
|
|
|
+ }
|
|
|
+ this.rightTagsList = reviewList
|
|
|
}
|
|
|
+ this.$emit('changeActionData', this.rightTagsList, false);
|
|
|
+ this.getSubTemplate()
|
|
|
+ }else{
|
|
|
+ this.getSubTemplate()
|
|
|
}
|
|
|
- }
|
|
|
- this.rightTagsList2 = newArr
|
|
|
- this.$emit('changeActionData', this.rightTagsList2, false);
|
|
|
- this.searchTagList()
|
|
|
- // this.leftTagsList = this.pool
|
|
|
- // console.log('TAGPOOL', this.pool)
|
|
|
+ this.searchTagList()
|
|
|
+ })
|
|
|
},
|
|
|
watch: {
|
|
|
- pool(newVal, preVal) {
|
|
|
- this.leftTagsList = newVal
|
|
|
+ type(newVal, preVal) {
|
|
|
+ this.searchTagList() //重新获取标签池数据
|
|
|
+ if(newVal != preVal){
|
|
|
+ this.form = {region: ''}
|
|
|
+ this.subTmpList = [] //子模板的id用于去重
|
|
|
+ this.leftTagsList = []
|
|
|
+ this.selectLeftTagsList = []
|
|
|
+ this.rightTagsList = []
|
|
|
+ this.selectRightTagsList = []
|
|
|
+ this.selectRightTagsListIndex = []
|
|
|
+ this.searchVal = ''
|
|
|
+ this.getSubTemplate() //重新获取子模板
|
|
|
+ }
|
|
|
},
|
|
|
searchVal(newVal, preVal) {
|
|
|
if (newVal.trim() == '') {
|
|
@@ -172,6 +202,92 @@ export default {
|
|
|
},
|
|
|
},
|
|
|
methods: {
|
|
|
+ updataData(){
|
|
|
+ this.$emit('changeActionData', this.rightTagsList, false);
|
|
|
+ },
|
|
|
+ addDomTemplate(sign,dom){
|
|
|
+ let tmpArr1 = this.rightTagsList.slice(0);
|
|
|
+ let tmpArr2 = this.selectRightTagsListIndex.slice(0);
|
|
|
+ let tmpArr3 = this.subTmpList.slice(0),tmpRegion = this.form.region;
|
|
|
+ let tmpArr4 = this.Adscriptions.filter(item => item.id == tmpRegion);
|
|
|
+ let tmpTag = Object.assign({},this.addTag); //深度复制obj
|
|
|
+ if(sign == 0){ //添加子模板
|
|
|
+ if(tmpArr4.length == 0){
|
|
|
+ this.$message({
|
|
|
+ message:'请选择子模板',
|
|
|
+ type:'warning'
|
|
|
+ })
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ tmpTag.type = 'sub'
|
|
|
+ tmpArr3.push(tmpRegion)
|
|
|
+ tmpTag.tagName = tmpArr4[0].name
|
|
|
+ tmpTag.id = tmpArr4[0].id + 'sub'
|
|
|
+ this.subTmpList = tmpArr3 //记录子模板id
|
|
|
+ this.form.region = ''
|
|
|
+ this.getSubTemplate()
|
|
|
+ }else{ //添加输入框
|
|
|
+ tmpTag.type = 'input'
|
|
|
+ }
|
|
|
+ tmpArr1.push(tmpTag);
|
|
|
+ for(let i =0; i < tmpArr1.length; i++){ //循环右侧所有数据
|
|
|
+ if(tmpArr1[i].type == 'input'){
|
|
|
+ tmpArr1[i].id = i + '1001001001' //给添加的子模板或者输入框加上id
|
|
|
+ }
|
|
|
+ }
|
|
|
+ this.rightTagsList = tmpArr1;
|
|
|
+ this.$emit('changeActionData', this.rightTagsList, false);
|
|
|
+ },
|
|
|
+ moveTag(dir){
|
|
|
+ let tmpArr1 = this.rightTagsList.slice(0);
|
|
|
+ let tmpArr2 = this.selectRightTagsListIndex.slice(0);
|
|
|
+ let tmpArr3 = this.selectRightTagsList.slice(0);
|
|
|
+ if(dir == 0){ //往左
|
|
|
+ for(let i = 0;i < tmpArr3.length;i++){ //删除选中的元素
|
|
|
+ let tmpId = tmpArr3[i].id
|
|
|
+ tmpArr1 = tmpArr1.filter(item => item.id !== tmpId)
|
|
|
+ }
|
|
|
+ let tmpArr = tmpArr1.slice(0)
|
|
|
+ for(let k = 0;k < tmpArr2.length;k++){ //选中元素的index
|
|
|
+ let tmpIdx = tmpArr2[k]-1
|
|
|
+ tmpArr.splice(tmpIdx,0,tmpArr3[k])
|
|
|
+ if(tmpArr2[k] == 0){
|
|
|
+ return
|
|
|
+ }
|
|
|
+ tmpArr2[k] = (tmpArr2[k]-1)
|
|
|
+ }
|
|
|
+ this.selectRightTagsListIndex = tmpArr2
|
|
|
+ this.rightTagsList = tmpArr
|
|
|
+ }else{ //往右
|
|
|
+ for(let i = 0;i < tmpArr3.length;i++){ //删除选中的元素
|
|
|
+ let tmpId = tmpArr3[i].id
|
|
|
+ tmpArr1 = tmpArr1.filter(item => item.id !== tmpId)
|
|
|
+ }
|
|
|
+ let tmpArr = tmpArr1.slice(0)
|
|
|
+ for(let k = 0;k < tmpArr2.length;k++){ //选中元素的index
|
|
|
+ let tmpIdx = tmpArr2[k]+1
|
|
|
+ tmpArr.splice(tmpIdx,0,tmpArr3[k])
|
|
|
+ if(tmpArr2[k] == tmpArr1.length){
|
|
|
+ return
|
|
|
+ }
|
|
|
+ tmpArr2[k] = (tmpArr2[k]+1)
|
|
|
+ }
|
|
|
+ this.selectRightTagsListIndex = tmpArr2
|
|
|
+ this.rightTagsList = tmpArr
|
|
|
+ }
|
|
|
+ this.$emit('changeActionData', this.rightTagsList, false);
|
|
|
+ },
|
|
|
+ delSubTemplate(){ //删除子模板
|
|
|
+ if (this.selectRightTagsList.length>0 && this.selectRightTagsList[0].type === 'sub') { //删除子模板,输入框或者标签就不变
|
|
|
+ this.rightTagsList = this.rightTagsList.filter(item => item.id !== this.selectRightTagsList[0].id)
|
|
|
+ this.subTmpList = this.subTmpList.filter(item => item.id !== this.selectRightTagsList[0].id) //选中的子模板id去掉
|
|
|
+ }
|
|
|
+ this.selectLeftTagsList = []
|
|
|
+ this.selectRightTagsList = []
|
|
|
+ this.selectRightTagsListIndex = []
|
|
|
+ this.$emit('changeActionData', this.rightTagsList, false);
|
|
|
+ this.getSubTemplate()
|
|
|
+ },
|
|
|
selectLeftTag(tag, index, e) {
|
|
|
const hasTag = this.isHasTag(tag, this.selectLeftTagsList)
|
|
|
if (hasTag) {
|
|
@@ -180,12 +296,19 @@ export default {
|
|
|
this.selectLeftTagsList.push(tag);
|
|
|
}
|
|
|
},
|
|
|
- selectRightTag(tag) {
|
|
|
- const hasTag = this.isHasTag(tag, this.selectRightTagsList)
|
|
|
+ selectRightTag(tag,idx) {
|
|
|
+ const hasTag = this.isHasTag(tag, this.selectRightTagsList);
|
|
|
+ let tmpArr = this.selectRightTagsListIndex;
|
|
|
+ let tmpArr1 = this.selectRightTagsList.slice(0);
|
|
|
if (hasTag) {
|
|
|
- this.selectRightTagsList = this.selectRightTagsList.filter(item => item.id !== tag.id)
|
|
|
+ this.selectRightTagsList = this.selectRightTagsList.filter(item => item.tagName !== tag.name)
|
|
|
+ tmpArr = tmpArr.filter(item => item !== idx)
|
|
|
+ this.selectRightTagsListIndex = tmpArr
|
|
|
} else {
|
|
|
- this.selectRightTagsList.push(tag);
|
|
|
+ tmpArr1[0] = tag;
|
|
|
+ tmpArr[0]=idx;
|
|
|
+ this.selectRightTagsList = tmpArr1;
|
|
|
+ this.selectRightTagsListIndex = tmpArr;
|
|
|
}
|
|
|
},
|
|
|
isHasTag(item, arr) {
|
|
@@ -203,70 +326,58 @@ export default {
|
|
|
return this.isHasTag(item, this.selectRightTagsList)
|
|
|
},
|
|
|
toLeftList() {
|
|
|
- for (let i = 0; i < this.selectRightTagsList.length; i++) {
|
|
|
- this.rightTagsList = this.rightTagsList.filter(item => item.id !== this.selectRightTagsList[i].id)
|
|
|
- }
|
|
|
- for (let i = 0; i < this.selectRightTagsList.length; i++) {//每次往回移时同时删掉下面输入框
|
|
|
- if (this.selectRightTagsList[i].type !== 'input') {
|
|
|
- for (let j = 0; j < this.rightTagsList2.length; j++) {
|
|
|
- if (this.selectRightTagsList[i].id === this.rightTagsList2[j].id) {
|
|
|
- if (this.rightTagsList2.length === 3) {
|
|
|
- this.rightTagsList2 = []
|
|
|
- } else {
|
|
|
- this.rightTagsList2.splice(j, 2)
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
+ if (this.selectRightTagsList.length>0 && this.selectRightTagsList[0].type !== 'sub') { //往左的是子模板不变或者输入框,是输入框或者标签就删除
|
|
|
+ for (let i = 0; i < this.selectRightTagsList.length; i++) {
|
|
|
+ this.rightTagsList = this.rightTagsList.filter(item => item.id !== this.selectRightTagsList[0].id)
|
|
|
}
|
|
|
+ this.searchTagList()
|
|
|
+ this.$emit('changeActionData', this.rightTagsList, false);
|
|
|
}
|
|
|
this.selectLeftTagsList = []
|
|
|
this.selectRightTagsList = []
|
|
|
- this.searchTagList()
|
|
|
- this.$emit('changeActionData', this.rightTagsList2, false);
|
|
|
+ this.selectRightTagsListIndex = []
|
|
|
},
|
|
|
toRightList() {
|
|
|
this.rightTagsList.push(...this.selectLeftTagsList);
|
|
|
- let textItem = { text: '', type: 'input' }
|
|
|
- for (let i = 0; i < this.selectLeftTagsList.length; i++) { //选中标签每个前后加入输入框
|
|
|
- if (this.rightTagsList2.length === 0) {
|
|
|
- let textItem1 = JSON.parse(JSON.stringify(textItem))
|
|
|
- textItem1.id = this.selectLeftTagsList[i].id + ',,'
|
|
|
- this.rightTagsList2.push(textItem1)
|
|
|
- }
|
|
|
- this.rightTagsList2.push(this.selectLeftTagsList[i]);
|
|
|
- let textItem2 = JSON.parse(JSON.stringify(textItem))
|
|
|
- textItem2.id = this.selectLeftTagsList[i].id + ','
|
|
|
- this.rightTagsList2.push(JSON.parse(JSON.stringify(textItem2)))
|
|
|
- }
|
|
|
-
|
|
|
for (let i = 0; i < this.rightTagsList.length; i++) {
|
|
|
this.leftTagsList = this.leftTagsList.filter(item => item.id !== this.rightTagsList[i].id)
|
|
|
}
|
|
|
this.selectLeftTagsList = []
|
|
|
this.selectRightTagsList = []
|
|
|
- this.$emit('changeActionData', this.rightTagsList2, false);
|
|
|
+ this.selectRightTagsListIndex = []
|
|
|
+ this.$emit('changeActionData', this.rightTagsList, false);
|
|
|
},
|
|
|
searchTagList() {
|
|
|
let notIds = []
|
|
|
- for (let i = 0; i < this.rightTagsList.length; i++) {
|
|
|
- if (typeof this.rightTagsList2[i].id === 'number') {
|
|
|
- notIds.push(this.rightTagsList2[i].id)
|
|
|
+ let tmpArr = this.rightTagsList.slice();
|
|
|
+ for (let i = 0; i < tmpArr.length; i++) {
|
|
|
+ if(tmpArr[i].type != 'sub' && tmpArr[i].type != 'input'){
|
|
|
+ notIds.push(tmpArr[i].id)
|
|
|
}
|
|
|
}
|
|
|
let param = {
|
|
|
"tagName": this.searchVal,
|
|
|
- "type": this.type || '',
|
|
|
- "notIds": notIds,
|
|
|
+ "type": this.type == 4?3:1,
|
|
|
+ "noIds": notIds,
|
|
|
}
|
|
|
- api.searchTagList(param).then((res) => {
|
|
|
+ api.getQuestionInfos(param).then((res) => {
|
|
|
if (res.data.code === '0') {
|
|
|
this.leftTagsList = res.data.data
|
|
|
this.selectLeftTagsList = []
|
|
|
this.selectRightTagsList = []
|
|
|
}
|
|
|
})
|
|
|
- }
|
|
|
-
|
|
|
+ },
|
|
|
+ getSubTemplate() {
|
|
|
+ let param = {
|
|
|
+ noIds:this.subTmpList
|
|
|
+ }
|
|
|
+ api.getModuleInfoSub(param).then((res) => {
|
|
|
+ if (res.data.code === '0') {
|
|
|
+ this.Adscriptions = res.data.data
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
@@ -281,6 +392,7 @@ export default {
|
|
|
.poolTitle {
|
|
|
box-sizing: border-box;
|
|
|
margin-bottom: 20px;
|
|
|
+ display: inline-block;
|
|
|
}
|
|
|
.inputBox {
|
|
|
width: 100px;
|
|
@@ -337,15 +449,36 @@ export default {
|
|
|
.bottomPartRight {
|
|
|
float: left;
|
|
|
width: 60%;
|
|
|
- .changeOrder {
|
|
|
- margin-left: 20px;
|
|
|
+ .arrowWrap {
|
|
|
+ float: right;
|
|
|
+ background-color: #fff;
|
|
|
+ padding-top: 1px;
|
|
|
+ margin-right: 10px;
|
|
|
+ .arrowWrapPub[data-v-2db8be7a] {
|
|
|
+ border: 1px solid @adminBase;
|
|
|
+ height: 23px;
|
|
|
+ width: 40px;
|
|
|
+ text-align: center;
|
|
|
+ background: #fff;
|
|
|
+ line-height: 23px;
|
|
|
+ border-radius: 3px;
|
|
|
+ margin-left: 10px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .formWrap {
|
|
|
+ position: relative;
|
|
|
+ height: 30px;
|
|
|
+ .subTemplate {
|
|
|
+ width: 470px;
|
|
|
+ float: left;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
.templateTagList {
|
|
|
height: 450px;
|
|
|
}
|
|
|
.templateTagLists {
|
|
|
- height: 468px;
|
|
|
+ height: 462px;
|
|
|
width: 98%;
|
|
|
}
|
|
|
button {
|
|
@@ -357,6 +490,7 @@ export default {
|
|
|
margin: 0 5px 10px 0;
|
|
|
text-align: center;
|
|
|
float: left;
|
|
|
+ height: 40px;
|
|
|
p {
|
|
|
padding: 5px 0;
|
|
|
}
|
|
@@ -369,13 +503,10 @@ export default {
|
|
|
<style lang="less">
|
|
|
@import "../../less/common.less";
|
|
|
.bottomPartRightTemplate {
|
|
|
- .subTemplate {
|
|
|
- // display: inline-block;
|
|
|
- }
|
|
|
.el-form-item__content {
|
|
|
.el-input__inner {
|
|
|
- height: 30px;
|
|
|
- line-height:30px;
|
|
|
+ height: 28px;
|
|
|
+ line-height:28px;
|
|
|
border-radius:5px;
|
|
|
font-size: 14px;
|
|
|
}
|
|
@@ -385,9 +516,6 @@ export default {
|
|
|
.el-button--mini[data-v-2db8be7a], .el-button--mini.is-round[data-v-2db8be7a] {
|
|
|
padding: 5px 8px 4px;
|
|
|
}
|
|
|
- .el-button--mini[data-v-2db8be7a].changeOrderPub, .el-button--mini.is-round[data-v-2db8be7a].changeOrderPub {
|
|
|
- padding: 5px 12px;
|
|
|
- }
|
|
|
.el-button:hover {
|
|
|
color: @adminBase;
|
|
|
border-color: @adminBase;
|