91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue中radio根據動態值綁定checked無效怎么辦

發布時間:2022-03-31 14:46:28 來源:億速云 閱讀:529 作者:小新 欄目:開發技術

這篇文章主要介紹vue中radio根據動態值綁定checked無效怎么辦,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

    1.問題分析

    在vue之前,我們想要獲取某一組(設置相同的name屬性)radio的選中狀態是通過name屬性獲取,判斷input的checked是true還是false,但是當列表中有多組(動態獲取)就顯得很乏力;vue出現后我們可以通過v-model很巧妙的完成。

    2.vue中分析(完成代碼請看后面)

    <input :name="item.COLUMN_CODE" :type="item.COLUMN_TYPE" v-model="item1.ISSELECT" value="true" :checked="item1.ISSELECT" :disabled="isAnswer" class="tui-checkbox">

    我們將name綁定COLUMN_CODE設置為同一組radio或checkbox;v-model綁定返回的值ISSELECT(true/false),value=&lsquo;true&rsquo;表示當ISSELECT的值為true是該radio或checkbox就自動選中,同理,當我們選中某一項時對應的ISSELECT自動切換成true。

    vue官網描述的是無需設置name,但是我在項目中測試過是通不過的,因為還是無法識別是同一組還是不同組,所以建議讀者 加上。

    3.完成代碼(該例子中input是自定義的樣式)

    1)json數據

    {
    	"THEME_STATUE": "1",
    	"back_type": null,
    	"THEME_CODE": "1495077293228",
    	"THEME_NAME": "新款工作服樣式調查問卷",
    	"POLL_TYPE_DESC": "投票問卷(選擇答題)",
    	"POLL_TYPE": "B",
    	"THEME_CONTENT": "關于新款工作服樣式評價的投票通知各位職工朋友:今年,公司工作服已到新一輪采購周期。為提高職工對工作服的滿意度,展示職工良好形象,安全管理部與工會一同對職工的意見反饋進行了收集,并組織職工代表對新款樣衣進行了初評。現請廣大職工朋友根據圖樣展示,評選心目中最佳的春、夏和冬裝棉服款式。我們將根據大家投票結果定款。安全管理部、工會2017年5月15日",
    	"ANSWER_MODE": "",
    	"POLL_MULT_NUM": "",
    	"POLL_SINGLE_NUM": "",
    	"MAX_POLL_NUM": "",
    	"POLL_SINGLE_SCORE": 0,
    	"POLL_MULT_SCORE": 0,
    	"BGIMG": "http://mobile.hbtobacco.cn:8088/emc_service/ImageAttDocument?docType=1&docId=a3d249fa8e3d72b9",
    	"SCORE_STATUS": "",
    	"SCORE_RESULT": "",
    	"CREATE_DATE": "2017-05-31",
    	"END_DATE": "2019-10-30",
    	"ISANSWER": false,
    	"COLUMN_LIST": [{
    		"COLUMN_CODE": "181",
    		"COLUMN_NAME": "1、您所在的工作單位",
    		"COLUMN_TYPE": "radio",
    		"COLUMN_CONTENT": "",
    		"ISSELECT": false,
    		"OPTION_LIST": [{
    			"OPTION_CODE": "191",
    			"OPTION_NAME": "A、廠 ",
    			"OPTION_HREF": "",
    			"OPTION_TYPE": "",
    			"OPTION_CONTENT": "",
    			"EMC_URL": "",
    			"OPTION_ANSWER": "0",
    			"POLLNUM": 0,
    			"ISSELECT": false
    		}, {
    			"OPTION_CODE": "192",
    			"OPTION_NAME": "B、煙廠 ",
    			"OPTION_HREF": "",
    			"OPTION_TYPE": "",
    			"OPTION_CONTENT": "",
    			"EMC_URL": "",
    			"OPTION_ANSWER": "0",
    			"POLLNUM": 0,
    			"ISSELECT": false
    		}, {
    			"OPTION_CODE": "193",
    			"OPTION_NAME": "C、湖北 ",
    			"OPTION_HREF": "",
    			"OPTION_TYPE": "",
    			"OPTION_CONTENT": "",
    			"EMC_URL": "",
    			"OPTION_ANSWER": "0",
    			"POLLNUM": 0,
    			"ISSELECT": false
    		}, {
    			"OPTION_CODE": "194",
    			"OPTION_NAME": "D、中國 ",
    			"OPTION_HREF": "",
    			"OPTION_TYPE": "",
    			"OPTION_CONTENT": "",
    			"EMC_URL": "",
    			"OPTION_ANSWER": "0",
    			"POLLNUM": 0,
    			"ISSELECT": false
    		}, {
    			"OPTION_CODE": "195",
    			"OPTION_NAME": "E、大大 ",
    			"OPTION_HREF": "",
    			"OPTION_TYPE": "",
    			"OPTION_CONTENT": "",
    			"EMC_URL": "",
    			"OPTION_ANSWER": "0",
    			"POLLNUM": 0,
    			"ISSELECT": false
    		}, {
    			"OPTION_CODE": "196",
    			"OPTION_NAME": "F、小小",
    			"OPTION_HREF": "",
    			"OPTION_TYPE": "",
    			"OPTION_CONTENT": "",
    			"EMC_URL": "",
    			"OPTION_ANSWER": "0",
    			"POLLNUM": 0,
    			"ISSELECT": false
    		}, {
    			"OPTION_CODE": "197",
    			"OPTION_NAME": "G、卷煙材料廠 ",
    			"OPTION_HREF": "",
    			"OPTION_TYPE": "",
    			"OPTION_CONTENT": "",
    			"EMC_URL": "",
    			"OPTION_ANSWER": "0",
    			"POLLNUM": 0,
    			"ISSELECT": false
    		}, {
    			"OPTION_CODE": "198",
    			"OPTION_NAME": "H、新業薄片公司 ",
    			"OPTION_HREF": "",
    			"OPTION_TYPE": "",
    			"OPTION_CONTENT": "",
    			"EMC_URL": "",
    			"OPTION_ANSWER": "0",
    			"POLLNUM": 0,
    			"ISSELECT": false
    		}]
    	}, {
    		"COLUMN_CODE": "142",
    		"COLUMN_NAME": "2、您所在的工作區域",
    		"COLUMN_TYPE": "radio",
    		"COLUMN_CONTENT": "",
    		"ISSELECT": false,
    		"OPTION_LIST": [{
    			"OPTION_CODE": "61",
    			"OPTION_NAME": "A、卷包車間 ",
    			"OPTION_HREF": "",
    			"OPTION_TYPE": "radio",
    			"OPTION_CONTENT": "",
    			"EMC_URL": "",
    			"OPTION_ANSWER": "0",
    			"POLLNUM": 0,
    			"ISSELECT": false
    		}, {
    			"OPTION_CODE": "62",
    			"OPTION_NAME": "B、制絲車間 ",
    			"OPTION_HREF": "",
    			"OPTION_TYPE": "radio",
    			"OPTION_CONTENT": "",
    			"EMC_URL": "",
    			"OPTION_ANSWER": "0",
    			"POLLNUM": 0,
    			"ISSELECT": false
    		}, {
    			"OPTION_CODE": "63",
    			"OPTION_NAME": "C、動力車間 ",
    			"OPTION_HREF": "",
    			"OPTION_TYPE": "radio",
    			"OPTION_CONTENT": "",
    			"EMC_URL": "",
    			"OPTION_ANSWER": "0",
    			"POLLNUM": 0,
    			"ISSELECT": false
    		}, {
    			"OPTION_CODE": "64",
    			"OPTION_NAME": "D、倉儲、物流 ",
    			"OPTION_HREF": "",
    			"OPTION_TYPE": "radio",
    			"OPTION_CONTENT": "",
    			"EMC_URL": "",
    			"OPTION_ANSWER": "0",
    			"POLLNUM": 0,
    			"ISSELECT": false
    		}, {
    			"OPTION_CODE": "65",
    			"OPTION_NAME": "E、其他 ",
    			"OPTION_HREF": "",
    			"OPTION_TYPE": "text",
    			"OPTION_CONTENT": "",
    			"EMC_URL": "",
    			"OPTION_ANSWER": "0",
    			"POLLNUM": 0,
    			"ISSELECT": false
    		}]
    	}, {
    		"COLUMN_CODE": "143",
    		"COLUMN_NAME": "3、您所在的工作崗位",
    		"COLUMN_TYPE": "radio",
    		"COLUMN_CONTENT": "",
    		"ISSELECT": false,
    		"OPTION_LIST": [{
    			"OPTION_CODE": "66",
    			"OPTION_NAME": "A、操作工 ",
    			"OPTION_HREF": "",
    			"OPTION_TYPE": "",
    			"OPTION_CONTENT": "",
    			"EMC_URL": "",
    			"OPTION_ANSWER": "0",
    			"POLLNUM": 0,
    			"ISSELECT": false
    		}, {
    			"OPTION_CODE": "67",
    			"OPTION_NAME": "B、維修工 ",
    			"OPTION_HREF": "",
    			"OPTION_TYPE": "",
    			"OPTION_CONTENT": "",
    			"EMC_URL": "",
    			"OPTION_ANSWER": "0",
    			"POLLNUM": 0,
    			"ISSELECT": false
    		}, {
    			"OPTION_CODE": "68",
    			"OPTION_NAME": "C、輔助工 ",
    			"OPTION_HREF": "",
    			"OPTION_TYPE": "",
    			"OPTION_CONTENT": "",
    			"EMC_URL": "",
    			"OPTION_ANSWER": "0",
    			"POLLNUM": 0,
    			"ISSELECT": false
    		}, {
    			"OPTION_CODE": "69",
    			"OPTION_NAME": "D、管理人員 ",
    			"OPTION_HREF": "",
    			"OPTION_TYPE": "",
    			"OPTION_CONTENT": "",
    			"EMC_URL": "",
    			"OPTION_ANSWER": "0",
    			"POLLNUM": 0,
    			"ISSELECT": false
    		}, {
    			"OPTION_CODE": "70",
    			"OPTION_NAME": "E、其他 ",
    			"OPTION_HREF": "",
    			"OPTION_TYPE": "text",
    			"OPTION_CONTENT": "",
    			"EMC_URL": "",
    			"OPTION_ANSWER": "0",
    			"POLLNUM": 0,
    			"ISSELECT": false
    		}]
    	}, {
    		"COLUMN_CODE": "144",
    		"COLUMN_NAME": "4、您心目中最佳的春、夏款式是",
    		"COLUMN_TYPE": "radio",
    		"COLUMN_CONTENT": "",
    		"ISSELECT": false,
    		"OPTION_LIST": [{
    			"OPTION_CODE": "71",
    			"OPTION_NAME": "A、春、夏款款式一 ",
    			"OPTION_HREF": "",
    			"OPTION_TYPE": "imagelist",
    			"OPTION_CONTENT": "",
    			"EMC_URL": "http://mobile.hbtobacco.cn:8088/emc_service/ImageAttDocument?docType=1&docId=8f4e214b53e4cfce",
    			"OPTION_ANSWER": "0",
    			"POLLNUM": 0,
    			"ISSELECT": false
    		}, {
    			"OPTION_CODE": "190",
    			"OPTION_NAME": "B、春、夏款款式二",
    			"OPTION_HREF": "",
    			"OPTION_TYPE": "imagelist",
    			"OPTION_CONTENT": "",
    			"EMC_URL": "http://mobile.hbtobacco.cn:8088/emc_service/ImageAttDocument?docType=1&docId=927308324fa1f0fa",
    			"OPTION_ANSWER": "0",
    			"POLLNUM": 0,
    			"ISSELECT": false
    		}, {
    			"OPTION_CODE": "72",
    			"OPTION_NAME": "C、春、夏款款式三",
    			"OPTION_HREF": "",
    			"OPTION_TYPE": "imagelist",
    			"OPTION_CONTENT": "",
    			"EMC_URL": "http://mobile.hbtobacco.cn:8088/emc_service/ImageAttDocument?docType=1&docId=be74770291a746f3",
    			"OPTION_ANSWER": "0",
    			"POLLNUM": 0,
    			"ISSELECT": false
    		}, {
    			"OPTION_CODE": "73",
    			"OPTION_NAME": "D、春、夏款款式四",
    			"OPTION_HREF": "",
    			"OPTION_TYPE": "imagelist",
    			"OPTION_CONTENT": "",
    			"EMC_URL": "http://mobile.hbtobacco.cn:8088/emc_service/ImageAttDocument?docType=1&docId=8828122cb5818a04",
    			"OPTION_ANSWER": "0",
    			"POLLNUM": 0,
    			"ISSELECT": false
    		}, {
    			"OPTION_CODE": "74",
    			"OPTION_NAME": "E、春、夏款款式五",
    			"OPTION_HREF": "",
    			"OPTION_TYPE": "imagelist",
    			"OPTION_CONTENT": "",
    			"EMC_URL": "http://mobile.hbtobacco.cn:8088/emc_service/ImageAttDocument?docType=1&docId=a746a3bbb7d55e3b",
    			"OPTION_ANSWER": "0",
    			"POLLNUM": 0,
    			"ISSELECT": false
    		}, {
    			"OPTION_CODE": "75",
    			"OPTION_NAME": "F、現發放款式",
    			"OPTION_HREF": "",
    			"OPTION_TYPE": "",
    			"OPTION_CONTENT": "",
    			"EMC_URL": "",
    			"OPTION_ANSWER": "0",
    			"POLLNUM": 0,
    			"ISSELECT": false
    		}]
    	}, {
    		"COLUMN_CODE": "145",
    		"COLUMN_NAME": "5、您心目中最佳的冬裝棉服款式是",
    		"COLUMN_TYPE": "radio",
    		"COLUMN_CONTENT": "",
    		"ISSELECT": false,
    		"OPTION_LIST": [{
    			"OPTION_CODE": "76",
    			"OPTION_NAME": "A、冬裝棉服款式一 ",
    			"OPTION_HREF": "",
    			"OPTION_TYPE": "imagelist",
    			"OPTION_CONTENT": "",
    			"EMC_URL": "http://mobile.hbtobacco.cn:8088/emc_service/ImageAttDocument?docType=1&docId=b39968d6d0b7446e",
    			"OPTION_ANSWER": "0",
    			"POLLNUM": 0,
    			"ISSELECT": false
    		}, {
    			"OPTION_CODE": "77",
    			"OPTION_NAME": "B、冬裝棉服款式二",
    			"OPTION_HREF": "",
    			"OPTION_TYPE": "imagelist",
    			"OPTION_CONTENT": "",
    			"EMC_URL": "http://mobile.hbtobacco.cn:8088/emc_service/ImageAttDocument?docType=1&docId=a55d3e9b0a49ae8d",
    			"OPTION_ANSWER": "0",
    			"POLLNUM": 0,
    			"ISSELECT": false
    		}]
    	}, {
    		"COLUMN_CODE": "146",
    		"COLUMN_NAME": "6、在您選中的款式中,需要改進的細節 ",
    		"COLUMN_TYPE": "radio",
    		"COLUMN_CONTENT": "",
    		"ISSELECT": false,
    		"OPTION_LIST": [{
    			"OPTION_CODE": "78",
    			"OPTION_NAME": "A、工牌懸掛配飾",
    			"OPTION_HREF": "",
    			"OPTION_TYPE": "",
    			"OPTION_CONTENT": "",
    			"EMC_URL": "",
    			"OPTION_ANSWER": "0",
    			"POLLNUM": 0,
    			"ISSELECT": false
    		}, {
    			"OPTION_CODE": "79",
    			"OPTION_NAME": "B、褲裝口袋",
    			"OPTION_HREF": "",
    			"OPTION_TYPE": "",
    			"OPTION_CONTENT": "",
    			"EMC_URL": "",
    			"OPTION_ANSWER": "0",
    			"POLLNUM": 0,
    			"ISSELECT": false
    		}, {
    			"OPTION_CODE": "80",
    			"OPTION_NAME": "C、夾克口袋 ",
    			"OPTION_HREF": "",
    			"OPTION_TYPE": "",
    			"OPTION_CONTENT": "",
    			"EMC_URL": "",
    			"OPTION_ANSWER": "0",
    			"POLLNUM": 0,
    			"ISSELECT": false
    		}, {
    			"OPTION_CODE": "81",
    			"OPTION_NAME": "D、衣扣 ",
    			"OPTION_HREF": "",
    			"OPTION_TYPE": "",
    			"OPTION_CONTENT": "",
    			"EMC_URL": "",
    			"OPTION_ANSWER": "0",
    			"POLLNUM": 0,
    			"ISSELECT": false
    		}]
    	}, {
    		"COLUMN_CODE": "147",
    		"COLUMN_NAME": "7、您對選中樣衣的其他建議",
    		"COLUMN_TYPE": "text",
    		"COLUMN_CONTENT": "",
    		"ISSELECT": false,
    		"OPTION_LIST": []
    	}],
    	"success": "1"
    }

    2)html代碼

    <div class="select-item" v-if="voteType == 'A' || voteType == 'B'" :key="index" v-for="(item, index) in detailList">
        <div class="family select-item-title" :attr="item.COLUMN_CODE" v-if="item.COLUMN_TYPE == 'radio'" v-html="item.COLUMN_NAME + '(單選)'"></div>
         <div class="family select-item-title" :attr="item.COLUMN_CODE" v-else-if="item.COLUMN_TYPE == 'checkbox'" v-html="item.COLUMN_NAME + '(多選)'"></div>
         <div class="family select-item-title" :attr="item.COLUMN_CODE" v-else v-html="item.COLUMN_NAME"></div>
         <div class="option-con" v-if="item.COLUMN_TYPE != 'text'" :key="index1" v-for="(item1, index1) in item.OPTION_LIST">
           <div class="option-con-row" v-if="item1.OPTION_TYPE != 'text'">
             <input :name="item.COLUMN_CODE" :type="item.COLUMN_TYPE" v-model="item1.ISSELECT" value="true" :checked="item1.ISSELECT" :disabled="isAnswer" class="tui-checkbox">
             <div class="family option-desc">{{item1.OPTION_NAME}}</div>
           </div>
           <div class="text-area-con" v-else>
             <div class="option-con-row">
               <input :name="item.COLUMN_CODE" :type="item.COLUMN_TYPE" v-model="item1.ISSELECT" value="true" :checked="item1.ISSELECT" :disabled="isAnswer" class="tui-checkbox">
               <div class="family option-desc">{{item1.OPTION_NAME}}</div>
             </div>
             <textarea class="text-area" rows="3" v-model="item1.OPTION_CONTENT" :readonly="isAnswer"></textarea>
           </div>
           <img class="option-con-img" v-if="item1.EMC_URL" :src="item1.EMC_URL">
         </div>
         <div class="option-con" v-if="item.COLUMN_TYPE == 'text'">
           <div class="text-area-con">
             <textarea class="text-area" rows="3" v-model="item.COLUMN_CONTENT" :readonly="isAnswer"></textarea>
           </div>
         </div>
       </div>

    3)css樣式

    	/*radio或checked的樣式:*/
    	.checkbox-list-con .mint-msgbox-message{
    	  line-height: 20px;
    	}
    	.checkbox-list-con span {
    	  position: relative;
    	  margin-right: 15px;
    	}
    	.checkbox-list-con .Checkbox {
    	  position: absolute;
    	  visibility: hidden;
    	}
    	.checkbox-list-con .Checkbox+label {
    	  position:absolute;
    	  width: 16px;
    	  height: 16px;
    	  border: 1px solid #A6A6A6;
    	  border-radius: 50%;
    	  background-color:#ffffff;
    	}
    	.checkbox-list-con .Checkbox:checked+label:after {
    	  content: "";
    	  position: absolute;
    	  left: 2px;
    	  top:2px;
    	  width: 9px;
    	  height: 4px;
    	  border: 2px solid #00b7ee;
    	  border-top-color: transparent;
    	  border-right-color: transparent;
    	  transform: rotate(-45deg);
    	  -ms-transform: rotate(-60deg);
    	  -moz-transform: rotate(-60deg);
    	  -webkit-transform: rotate(-60deg);
    	}
    	
    	.checkbox-list{
    	  display: flex;
    	  flex-direction: row;
    	  margin-bottom: 5px;
    	  align-items: center;
    	  line-height: 20px;
    	}
    	.checkbox-list-con{
    	  display: flex;
    	  flex-direction: column;
    	  padding: 10px 20px;
    	}
    	/*自定義checkbox*/
    	
    	.tui-checkbox:checked {
    	  background:#1673ff
    	}
    	.tui-checkbox {
    	  width:25px;
    	  height:25px;
    	  background-color:#ffffff;
    	  border:solid 1px #dddddd;
    	  -webkit-border-radius:50%;
    	  border-radius:50%;
    	  font-size:0.8rem;
    	  margin:0;
    	  padding:0;
    	  position:relative;
    	  display:inline-block;
    	  vertical-align:top;
    	  cursor:default;
    	  -webkit-appearance:none;
    	  -webkit-user-select:none;
    	  user-select:none;
    	  -webkit-transition:background-color ease 0.1s;
    	  transition:background-color ease 0.1s;
    	}
    	.tui-checkbox:checked::after {
    	  content:'';
    	  top:5px;
    	  left:5px;
    	  position:absolute;
    	  background:transparent;
    	  border:#fff solid 2px;
    	  border-top:none;
    	  border-right:none;
    	  height:6px;
    	  width:10px;
    	  -moz-transform:rotate(-45deg);
    	  -ms-transform:rotate(-45deg);
    	  -webkit-transform:rotate(-45deg);
    	  transform:rotate(-45deg);
    	}
    	
    	/*其他樣式*/
    	.score-result{
    	   font-size: 16px;
    	   font-weight: 600!important;
    	   color: #2E8B57;
    	   width: calc(100% - 40px);
    	   padding: 10px 20px;
    	   line-height: 20px;
    	   background: #ffffff;
    	 }
    	 .text-area-con{
    	   width: 100%;
    	 }
    	 .text-area{
    	   width: calc(100% - 10px);
    	   /*height: 80px;*/
    	   padding: 5px;
    	   outline: none;
    	   resize: none;
    	   font-size: 15px;
    	   font-weight: 500;
    	   color: #333333;
    	   font-family: "Microsoft YaHei";
    	   border: 1px solid #888888;
    	 }
    	 .appointment-btn {
    	   position: relative!important;
    	   font-size: 18px;
    	   color: #ffffff;
    	   text-align: center;
    	   line-height: 44px;
    	   height: 44px;
    	   border-top: 1px solid #f2f2f2;
    	   background: #366CB3;
    	   width: calc(100% - 32px);
    	   margin: 0px 0px 15px 16px;
    	   border-radius: 3px;
    	   letter-spacing: 4px;
    	 }
    	 .option-desc{
    	   font-size: 15px;
    	   margin-left: 20px;
    	   width: calc(100% - 45px);
    	   text-align: justify;
    	   line-height: 24px;
    	 }
    	 .option-desc1{
    	   font-size: 15px;
    	   margin-left: 20px;
    	   width: calc(100% - 45px);
    	   text-align: justify;
    	   line-height: 24px;
    	   color: #F0686E;
    	 }
    	 .option-con-img{
    	   width: calc(100% - 90px);
    	   height: 140px;
    	   margin-left: 45px;
    	 }
    	 .option-con-row{
    	   display: flex;
    	   align-items: center;
    	   width: 100%;
    	   padding: 10px 0px;
    	 }
    	 .option-con{
    	   display: flex;
    	   flex-direction: column;
    	   align-items: flex-start;
    	   width: calc(100% - 40px);
    	   padding: 10px 20px;
    	   border-top: 1px solid #efefef;
    	 }
    	 .select-item-title{
    	   width: calc(100% - 40px);
    	   padding: 10px 20px;
    	   color: #4682B4;
    	   text-align: justify;
    	   font-size: 15px;
    	   line-height: 24px;
    	 }
    	 .select-item{
    	   display: flex;
    	   flex-direction: column;
    	   margin-bottom: 15px;
    	   background: #ffffff;
    	 }
    	 .bottom-con{
    	   display: flex;
    	   flex-direction: column;
    	   width: 100%;
    	   background: #f2f2f2;
    	 }
    	 .top-four-img{
    	   width: 16px;
    	   height: 16px;
    	 }
    	 .top-four-title{
    	   color: #434343;
    	   font-size: 16px;
    	   margin-right: 5px;
    	 }
    	 .top-four{
    	   display: flex;
    	   justify-content: center;
    	   align-items: center;
    	   background: #ffffff;
    	   width: 100%;
    	   padding: 15px 0px;
    	 }
    	 .top-three-content{
    	   color: #333333;
    	   font-size: 15px;
    	   line-height: 28px;
    	   text-indent:2em;
    	   text-align: justify;
    	 }
    	 .top-three-desc{
    	   color: #4682B4;
    	   font-size: 15px;
    	   line-height: 28px;
    	   text-indent:2em;
    	 }
    	 .top-three{
    	   width: calc(100% - 40px);
    	   padding: 15px 20px 0px 20px;
    	   background: #ffffff;
    	   overflow: hidden;
    	   text-overflow: ellipsis;
    	   display: -webkit-box;
    	   -webkit-line-clamp: 3;
    	   -webkit-box-orient: vertical;
    	 }
    	 .top-three1{
    	   width: calc(100% - 40px);
    	   padding: 15px 20px 15px 20px;
    	   background: #ffffff;
    	 }
    	 .top-two-time{
    	   width: 100%;
    	   text-align: center;
    	   font-size: 13px;
    	   color: #999999;
    	   margin-bottom: 10px;
    	 }
    	 .top-two-title{
    	   font-size: 18px;
    	   color: 	#4682B4;
    	   text-align: center;
    	   width: 100%;
    	   margin-bottom: 10px;
    	   line-height: 24px;
    	 }
    	 .top-one>img{
    	   height: 100%;
    	   width: 100%;
    	 }
    	 .top-two{
    	   width: calc(100% - 40px);
    	   background: #ffffff;
    	   padding:0px 20px;
    	   border-bottom: 1px solid #efefef;
    	 }
    	 .top-one{
    	   height: 100px;
    	   width: 100%;
    	 }
    	 .top-con{
    	   display: flex;
    	   flex-direction: column;
    	   justify-content: center;
    	   align-items: center;
    	   width: 100%;
    	   margin-bottom: 15px;
    	 }
    	 .wrapper {
    	   width: 100%;
    	   height: 100%;
    	   /*height: calc(100% - 70px);*/
    	   overflow: auto;
    	   background: #f2f2f2;
    	   -webkit-overflow-scrolling: touch;
    	 }
    	 .container {
    	   height: 100%;
    	   background-color: #f2f2f2;
    	   display: flex;
    	   flex-direction: column;
    	 }

    4.效果圖

    vue中radio根據動態值綁定checked無效怎么辦

    以上是“vue中radio根據動態值綁定checked無效怎么辦”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

    向AI問一下細節

    免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

    AI

    萍乡市| 开江县| 双柏县| 娄底市| 清丰县| 临安市| 阿尔山市| 平原县| 平阳县| 商都县| 健康| 郎溪县| 玉溪市| 分宜县| 广河县| 郓城县| 文山县| 皮山县| 江源县| 公安县| 麟游县| 布尔津县| 梨树县| 武宁县| 大田县| 黑龙江省| 安乡县| 平原县| 明光市| 祁门县| 永济市| 长武县| 莱阳市| 崇礼县| 九龙城区| 阳朔县| 青浦区| 河东区| 贡嘎县| 济南市| 威信县|