diff --git a/demo/demolist/Demo1304.js b/demo/demolist/Demo1304.js
new file mode 100644
index 0000000..cb6160f
--- /dev/null
+++ b/demo/demolist/Demo1304.js
@@ -0,0 +1,72 @@
+/**
+*
+* @title 表格单选,且选中行填充颜色
+* @parent 表格-单选-radio-行选中
+* @description 表格增加单选、radio 和背景色的示例。
+* Demo1304
+*/
+
+import React, { Component } from "react";
+import {Button,Tooltip,Radio} from "tinper-bee";
+
+import Table from "../../src";
+
+
+
+const data = [
+ { check: "ASVAL_201903280005",a: "ASVAL_201903280005", b: "小张", c: "男", d: "财务二科", key: "1" },
+ { check: "ASVAL_201903200004",a: "ASVAL_201903200004", b: "小明", c: "男", d: "财务一科", key: "2" },
+ { check: "ASVAL_201903120002",a: "ASVAL_201903120002", b: "小红", c: "女", d: "财务一科", key: "3" }
+];
+
+class Demo1304 extends Component {
+
+ constructor(props){
+ super(props);
+ this.state = {
+ data: data,
+ selectedRowIndex: 0,
+ selectedValue:"ASVAL_201903200004"
+ }
+ }
+
+ render() {
+ let {selectedValue} = this.state;
+ let columns = [
+ { title: "单选", dataIndex: "check", key: "check", width: 80,render(text, record, index){
+ return(
+