123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306 |
- <template>
- <div class="single-container">
- <el-form>
- <div class="operation-row">
- <el-checkbox-group size="small" v-for="(it,i) in rows" v-if="type!=2&&(focusOn==i||(focusOn==-1&&i==0))" :key="1+i" v-model="rows[i].defaultSelect" @change="emitValues(i,'hasDefault',rows[i].defaultSelect)">
- <el-checkbox-button v-if=" !(ascription == 5 && type == 1 || type == 2 || type == 11) " :label="i" :disabled="hasNone==i||hasBan==i|| hasError==i || (hasDefault!=-1&&hasDefault!=i)||focusOn==-1">默认选中</el-checkbox-button>
- </el-checkbox-group>
- <el-checkbox-group size="small" v-for="(it,i) in rows" v-if="type!=1&&(focusOn==i||(focusOn==-1&&i==0))" :key="2+i" v-model="rows[i].isNone" @change="emitValues(i,'hasNone',rows[i].isNone)">
- <el-checkbox-button v-if=" !(ascription == 5 && type == 1 || type == 11)" :label="i" :disabled="rows[i].isBan || hasError==i ||focusOn==-1">同“无”类型</el-checkbox-button>
- </el-checkbox-group>
- <el-checkbox-group size="small" v-for="(it,i) in rows" v-if="type!=1&&(focusOn==i||(focusOn==-1&&i==0))" :key="3+i" v-model="rows[i].isBan" @change="emitValues(i,'hasBan',rows[i].isBan)">
- <el-checkbox-button v-if=" !(ascription == 5 && type == 1 || type == 11)" :label="i" :disabled="rows[i].isNone || hasError==i||focusOn==-1">同“伴”类型</el-checkbox-button>
- </el-checkbox-group>
- <el-checkbox-group size="small" v-for="(it,i) in rows" v-if="focusOn==i||(focusOn==-1&&i==0)" :key="4+i" v-model="rows[i].isError" @change="emitValues(i,'hasError',rows[i].isError)">
- <el-checkbox-button v-if="ascription==5 && (type == 1 || type != 11)" :label="i" :disabled="hasDefault==i||hasBan==i ||hasNone==i ||focusOn==-1">标记异常选项</el-checkbox-button>
- </el-checkbox-group>
- <span v-if="type == 11" class="tip">可输入中文全角括号"()", 当作可输入内容的占位符</span>
- <el-button type="danger" size="small" class="del" @click="delRow">删除</el-button>
-
- </div>
- <div class="main-area">
- <div class="buttonBox">
-
- <div class="bottomPartMid bottomPartMidss fl">
- <p><span class="el-icon-arrow-up" @click="toggleTopDownList(1)"></span></p>
- <p><span class="el-icon-arrow-down" @click="toggleTopDownList(2)"></span></p>
- </div>
- </div>
- <el-col v-for="(it,i) in rows" :key="i">
- <el-input v-model="rows[i].name"
- v-bind:class="{select:focusOn==i}"
- @focus="selectRow(i)"
- ref = "inputName"
- @input="HandleInputName(i, rows[i].name)"
- @blur="emitValues"></el-input>
- <el-tag type="info" size="mini" v-if="showTag(it)">{{showTag(it)}}</el-tag>
- </el-col>
- <el-button @click="addRow">+</el-button>
- </div>
-
-
- </el-form>
- </div>
- </template>
- <style lang="less">
- @import "../../less/common.less";
- .el-checkbox-button--small .el-checkbox-button__inner{
- font-size: 14px;
- }
- .el-checkbox-button.is-disabled:first-child .el-checkbox-button__inner{
- border-color: @disableColor;
- border-left-color: @disableColor;
- color: @disableColor;
- }
- .el-checkbox-button:last-child .el-checkbox-button__inner{
- border-radius: 3px;
- border-color: @adminBase;
- color: @adminBase;
- margin-right: 15px;
- }
- .el-checkbox-button.is-checked:first-child .el-checkbox-button__inner{
- background-color:@adminBase;
- border-left-color:@adminBase;
- color:#fff;
- }
- .el-checkbox-group{
- display: inline-block;
- }
- .operation-row{
- margin-left:150px;
- .del{
- margin-left: 150px;
- }
- .tip {
- color: #22ccc8;
- }
- }
- .main-area{
- width: 290px;
- margin:20px 150px;
- .el-tag{
- margin-left: 10px;
- }
- .el-col .el-input {
- width: 200px;
- display: inline-block;
- &.select{
- input{
- border-color: @adminBase;
- }
- }
- }
- .buttonBox {
- width: 10%;
- position: absolute;
- right: 170px;
- margin-top: 20px;
- }
- .bottomPartMid {
- width: 8%;
- p {
- width: 100%;
- text-align: center;
- span {
- cursor: pointer;
- display: inline-block;
- width: 30px;
- height: 40px;
- line-height: 40px;
- margin: 0 auto;
- border: 1px solid @icssBorder;
- margin-bottom: 15px;
- font-size: 18px;
- }
- }
- }
-
- .el-button{
- width: 200px;
- }
- }
- </style>
- <script>
- import utils from '@api/utils.js';
- import Vue from 'vue';
- export default {
- props:['type','options','ascription','sexType','isEditOrCopy'],
- data(){
- return {
- maps:{isBan:'同“伴”',isNone:'同“无”',defaultSelect:'默认选中',isError:'异常选项'},
- rows:[{name:'',defaultSelect:'',isBan:'',isNone:'',isError:''},{name:'',defaultSelect:'',isBan:'',isNone:'',isError:''},{name:'',defaultSelect:'',isBan:'',isNone:'',isError:''},{name:'',defaultSelect:'',isBan:'',isNone:'',isError:''}],
- focusOn:-1
- }
- },
- mounted(){
- const {options} = this.$props;
- if(options){
- const arr = options.map((it)=>{
- return {name:it.name,defaultSelect:it.defaultSelect=='1'?true:false,isBan:it.code==1?true:'',isNone:it.code==2?true:'',isError:it.abnormal==1?true:''};
- });
- const arrLen = arr.length;
- if(arrLen < 4) {
- for (let i = 0; i < 4 - arrLen; i++) {
- arr.push({name:'',defaultSelect:'',isBan:'',isNone:'',isError:''})
- }
- }
- this.rows = arr;
- const items = utils.simpleOptionData(this.rows);
- this.$emit('pushValues',items);
- }
- },
- computed:{
- showTag:function(){
- return function(it){
- let name = Object.keys(this.maps).find((item)=>{
- return it[item];
- });
- return this.maps[name];
- }
- },
- hasDefault:function(){ //是否有选项默认选中
- let index =this.rows.findIndex((it)=>{
- return it.defaultSelect;
- });
- return index;
- },
- hasNone:function(){ //是否有选项同无
- let index =this.rows.findIndex((it)=>{
- return it.isNone;
- });
- return index;
- },
- hasBan:function(){ //是否有选项同伴
- let index =this.rows.findIndex((it)=>{
- return it.isBan;
- });
- return index;
- },
- hasError:function(){ //是否为正确选项
- let index =this.rows.findIndex((it)=>{
- return it.isError;
- });
- return index;
- }
- },
- watch: {
- ascription(newVal, preVal) {
- if (newVal != preVal) {
- if (JSON.stringify(newVal) != JSON.stringify(preVal)) {
- this.rows = [{name:'',defaultSelect:'',isBan:'',isNone:'',isError:''},{name:'',defaultSelect:'',isBan:'',isNone:'',isError:''},{name:'',defaultSelect:'',isBan:'',isNone:'',isError:''},{name:'',defaultSelect:'',isBan:'',isNone:'',isError:''}];
- }
- }
- },
- type(newVal, preVal) {
- if (newVal != preVal) {
- if (JSON.stringify(newVal) != JSON.stringify(preVal)) {
- if(this.isEditOrCopy) {
- for(let i = 0, len = this.rows.length; i < len; i++) {
- this.rows[i].defaultSelect = ''
- this.rows[i].isBan = ''
- this.rows[i].isNone = ''
- this.rows[i].isError = ''
- }
- } else {
- this.rows = [{name:'',defaultSelect:'',isBan:'',isNone:'',isError:''},{name:'',defaultSelect:'',isBan:'',isNone:'',isError:''},{name:'',defaultSelect:'',isBan:'',isNone:'',isError:''},{name:'',defaultSelect:'',isBan:'',isNone:'',isError:''}];
- }
- }
- }
- },
- sexType(newVal, preVal) {
- if (newVal != preVal) {
- if (JSON.stringify(newVal) != JSON.stringify(preVal)) {
- this.rows = [{name:'',defaultSelect:'',isBan:'',isNone:'',isError:''},{name:'',defaultSelect:'',isBan:'',isNone:'',isError:''},{name:'',defaultSelect:'',isBan:'',isNone:'',isError:''},{name:'',defaultSelect:'',isBan:'',isNone:'',isError:''}];
- }
- }
- },
- },
- methods:{
- addRow(){
- this.rows.push({name:'',defaultSelect:'',isBan:'',isNone:'',isError:''});
- },
- selectRow(index){
- this.focusOn = index;
- },
- emitValues(i,type,flag){
- if(typeof i =='number'&&this.focusOn == -1){
- this.$message({
- message: '请先选择要操作的行',
- type: 'warning',
- showClose: true,
- });
- return;
- }
- const items = utils.simpleOptionData(this.rows);
- this.$emit('pushValues',items);
- },
- HandleInputName(i, name) {
- if(name.length > 30) {
- Vue.set(this.rows[i], 'name', this.rows[i].name.slice(0, 30))
- this.$refs.inputName[i].currentValue = this.rows[i].name
- this.$message({
- message: '最多输入30个字',
- type: 'warning',
- showClose: true,
- });
- return
- }
-
- },
- toggleTopDownList(type){
- if(this.focusOn == '-1') {
- return
- }
- const rows = JSON.parse(JSON.stringify(this.rows))
- if(type == '1') {
- if(this.focusOn == '0') {
- return
- } else {
- let i = this.focusOn
- let tmp1 = rows[i]
- let tmp2 = rows[i-1]
- rows.splice(i-1,1,tmp1)
- rows.splice(i,1,tmp2)
- this.rows = [...rows]
- this.focusOn = i-1
- }
- } else if(type == '2') {
- if(this.focusOn == this.rows.length) {
- return
- } else {
- let i = this.focusOn
- let tmp1 = rows[i]
- let tmp2 = rows[i+1]
- rows.splice(i,1,tmp2)
- rows.splice(i+1,1,tmp1)
- this.rows = [...rows]
- this.focusOn = i+1
- }
- }
- const items = utils.simpleOptionData(this.rows);
- this.$emit('pushValues',items);
- },
- delRow(){
- if(this.focusOn==-1){
- this.$message({
- message: '请先选择要删除的行',
- type: 'warning',
- showClose: true,
- });
- return;
- }
- this.$alert('确定要删除该行吗?', '提示', {
- confirmButtonText: '确定',
- type: 'warning'
- }).then(() => {
- this.rows.splice(this.focusOn,1);
- this.focusOn = -1;
- this.emitValues();
- }).catch(() => {});
- }
- }
- }
- </script>
|