diff --git a/manifest.json b/manifest.json index 2f23cab..513a653 100644 --- a/manifest.json +++ b/manifest.json @@ -103,7 +103,7 @@ }, /* 小程序特有相关 */ "mp-weixin" : { - "appid" : "", + "appid" : "wx9ea045523e5cbb02", "setting" : { "urlCheck" : false }, diff --git a/pages/highWay/runData/form.vue b/pages/highWay/runData/form.vue index e09d913..7b5e6c9 100644 --- a/pages/highWay/runData/form.vue +++ b/pages/highWay/runData/form.vue @@ -155,9 +155,10 @@ if (!options.type || options.type == 'add') { let now = new Date(); this.form.statDate = getDateStr(now, -1);//默认前一天 - this.queryStation(); + this.queryStation('add'); } else if (options.item) { - this.form = JSON.parse(options.item) + this.form = JSON.parse(options.item); + this.queryStation(); } this.queryTime();//统计时段 }, @@ -172,30 +173,60 @@ this.stationIndex = index; }, //收费站列表 - queryStation() { + queryStation(type) { this.$request(getApp().globalData.baseUrl + '/api/biz/HighSpeedPermissionsInfo/findList?_t=' + Date.parse( new Date()), {}, 'GET').then(res => { this.highwaySubDataList = res.data; - this.highwaySubDataList.map(item => { - this.form.highwaySubDataList.push({ - "entranceVehicleCount": '', - "entranceVehicleCountMom": 0.0, - "entranceVehicleCountYoy": 0.0, - "exitToll": 0.0, - "exitVehicleCount": '', - "exitVehicleCountMom": 0.0, - "exitVehicleCountYoy": 0.0, - "highwayId": item.highWayLineCode, - "highwayName": item.highWayLineName, - "submitPersonnelContact": this.userInfo.realName+','+this.userInfo.tel, - "tollExemptAmount": 0.0, - "tollExemptVehicleCount": 0, - "tollExemptVehicleCountMom": 0.0, - "tollExemptVehicleCountYoy": 0.0, - "tollStationName": item.stationName, - "remark": '' + if(type == 'add') { + this.highwaySubDataList.map(item => { + this.form.highwaySubDataList.push({ + "entranceVehicleCount": '', + "entranceVehicleCountMom": 0.0, + "entranceVehicleCountYoy": 0.0, + "exitToll": 0.0, + "exitVehicleCount": '', + "exitVehicleCountMom": 0.0, + "exitVehicleCountYoy": 0.0, + "highwayId": item.highWayLineCode, + "highwayName": item.highWayLineName, + "submitPersonnelContact": this.userInfo.realName+','+this.userInfo.tel, + "tollExemptAmount": 0.0, + "tollExemptVehicleCount": 0, + "tollExemptVehicleCountMom": 0.0, + "tollExemptVehicleCountYoy": 0.0, + "tollStationName": item.stationName, + "remark": '' + }) }) - }) + }else{ + this.highwaySubDataList.map(item => { + let idx = this.form.highwaySubDataList.findIndex(item2 => { + return item2.highwayId == item.highWayLineCode && item2.tollStationName == item.stationName; + }) + if(idx > -1){ + this.form.highwaySubDataList.push(this.form.highwaySubDataList[idx]); + }else{ + this.form.highwaySubDataList.push({ + "entranceVehicleCount": '', + "entranceVehicleCountMom": 0.0, + "entranceVehicleCountYoy": 0.0, + "exitToll": 0.0, + "exitVehicleCount": '', + "exitVehicleCountMom": 0.0, + "exitVehicleCountYoy": 0.0, + "highwayId": item.highWayLineCode, + "highwayName": item.highWayLineName, + "submitPersonnelContact": this.userInfo.realName+','+this.userInfo.tel, + "tollExemptAmount": 0.0, + "tollExemptVehicleCount": 0, + "tollExemptVehicleCountMom": 0.0, + "tollExemptVehicleCountYoy": 0.0, + "tollStationName": item.stationName, + "remark": '' + }) + } + }) + } }) }, //取消 diff --git a/pages/highWay/runData/list.vue b/pages/highWay/runData/list.vue index 0359b23..315e1a8 100644 --- a/pages/highWay/runData/list.vue +++ b/pages/highWay/runData/list.vue @@ -117,7 +117,7 @@ }, timeRange: [], //查询起止日期 array: [], //时段选择列表 - index: -1, //时段选择 + index: '', //时段选择 } }, onLoad() { diff --git a/pages/highWay/runStatusData/detail.vue b/pages/highWay/runStatusData/detail.vue index ab909b2..1f70632 100644 --- a/pages/highWay/runStatusData/detail.vue +++ b/pages/highWay/runStatusData/detail.vue @@ -14,6 +14,18 @@ 高速开闭情况: {{ roadData.isOpen == 1 ? '开放' : '关闭' }} + + 已处理事故数量: + + {{roadData.count1}} + + + + 正在处理事故数量: + + {{roadData.count2}} + + 事故数量: diff --git a/pages/highWay/runStatusData/form.vue b/pages/highWay/runStatusData/form.vue index 7764104..25247de 100644 --- a/pages/highWay/runStatusData/form.vue +++ b/pages/highWay/runStatusData/form.vue @@ -16,7 +16,7 @@ 统计日期: - {{form.statDate?form.statDate:'请选择时段'}} @@ -25,8 +25,8 @@ 统计时段: - - + {{index>-1?array[index].dictLabel:'请选择时段'}} @@ -35,9 +35,9 @@ 高速开闭情况: - - {{form.isOpen == 1 ? '开放' : form.isOpen === 0 ? '关闭' : '请选择'}} + + {{form.isOpen == 1 ? '开放' : form.isOpen === 0 ? '关闭' : '请选择'}} @@ -45,43 +45,41 @@ 已处理事故数量: - 正在处理事故数量: - 事故数量: - + {{form.accidentCount}} 拥堵数量: - + {{form.congestionCount}} 伤者人数: - + 亡者人数: - + @@ -94,109 +92,133 @@ - + 拥堵信息-{{index+1}} + 高速公路名称: - - + + + {{item.highwayName ? item.highwayName : '请选择'}} + + 拥堵发生时间: - - + + + {{item.congestionStartTime?item.congestionStartTime:'请选择'}} + + 拥堵处理结束时间: - - + + + {{item.congestionEndTime?item.congestionEndTime:'请选择'}} + + 发生位置: + placeholder="请输入" maxlength="200"> 拥堵内容: + placeholder="请输入" maxlength="200"> 阻断/拥堵持续时间: + placeholder="请输入" maxlength="200"> 截至当前拥堵空间范围(桩号及方向): + placeholder="请输入" maxlength="200"> 处置工作开展情况: + placeholder="请输入" maxlength="200"> - + 补充说明: - + + placeholder="请输入" maxlength="200"> - 增行 + - - + + 事故信息-{{index+1}} + 高速公路名称: - - + + + {{item.highwayName ? item.highwayName : '请选择'}} + + 事故发生时间: - - + + + {{item.accidentStartTime?item.accidentStartTime:'请选择'}} + + 事故处理结束时间: - - + + + {{item.accidentEndTime?item.accidentEndTime:'请选择'}} + + 发生位置: + placeholder="请输入" maxlength="200"> 事故内容: + placeholder="请输入" maxlength="200"> @@ -210,33 +232,33 @@ 阻断/拥堵持续时间: + placeholder="请输入" maxlength="200"> 截至当前拥堵空间范围(桩号及方向): + placeholder="请输入" maxlength="200"> 处置工作开展情况: + placeholder="请输入" maxlength="200"> - + 补充说明: - + + placeholder="请输入" maxlength="200"> - 增行 + 增行 @@ -266,6 +288,7 @@ "congestionRange": "", "disposalStatus": "", "duration": "", + "higwayNameIndex": "", "highwayName": "", "location": "", }], @@ -277,64 +300,123 @@ "congestionStartTime": "", "disposalStatus": "", "duration": "", + "higwayNameIndex": "", "highwayName": "", "location": "", }], "injuredCount": 0, - "isOpen": 0, + "isOpen": 1, "organizationName": "", "statDate": "", "statPeriod": "" }, //登录form - highwaySubDataList: [], //收费站列表 - stationIndex: 0, //收费站选中索引 + highwayDataList: [], //高速列表 submitPerson: [], //报送人 submitPersonIndex: -1, //报送人选择索引 array: [], //时段选择列表 index: 2, //时段选择,默认0-24 + isOpenArry: [{value:1,label:'开放'},{value:0,label:'关闭'}],//高速开闭情况 + isOpenIndex: 0, userInfo: {}, tabType: 1, //拥堵事故类型 } }, onLoad(options) { this.userInfo = uni.getStorageSync('userInfo'); - if (!options.type || options.type == 'add') { + this.queryHighway();//高速公路列表 + if (options.type == 'add') { let now = new Date(); this.form.statDate = getDateStr(now, -1); //默认前一天 - this.queryStation(); + this.form.statPeriod = '03'; //默认0-24 } else if (options.item) { - this.form = JSON.parse(options.item) + this.form = JSON.parse(options.item); + this.form.highwayCongestionDetailDTOS = this.form.highwayCongestionDetailVOS; + this.form.highwayAccidentDetailDTOS = this.form.highwayAccidentDetailVOS; + console.log(this.form) } this.queryTime(); //统计时段 }, methods: { - //切换当前编辑收费站索引 - changeStationIndex(index) { - if (this.form.highwaySubDataList[this.stationIndex].entranceVehicleCount != '' && this.form.highwaySubDataList[ - this.stationIndex].exitVehicleCount != '') { - this.highwaySubDataList[this.stationIndex].isFinish = true; - } else { - this.highwaySubDataList[this.stationIndex].isFinish = false; - } - this.stationIndex = index; + //高速公路权限列表 + queryHighway() { + this.highwayDataList = [{ + "acctYear": 0, + "cdd": 0, + "createTime": "2016-06-12T16:47:50.992", + "createUnit": "4EB98423C0000041919F523B5D7A5CB1", + "createUserId": "AD049D34252E7C26A9B28DE393572C4B", + "creator": "青岛交通委员会管理员", + "dlwz": "", + "gldw": "青岛市高管处", + "glmc": "", + "gylc": 175.307, + "invalidTime": "9999-12-31T00:00:00", + "isLeaf": 1, + "jsdj": "540D47B620000001617BDD14C380A0D9", + "jsdw": "", + "jssj": "", + "jxscsd": 0, + "lddfmc": "", + "ldqdmc": "", + "ldqdzh": "", + "ldzdmc": "", + "ldzdzh": "", + "level": 1, + "ljlx": "", + "lkpddj": "", + "lmlx": "", + "lxqdmc": "", + "lxqdzh": "522.707", + "lxzdmc": "", + "lxzdzh": "698.014", + "memo": "", + "modifyTime": "2020-08-23T09:40:01.273", + "modifyUser": "admin", + "objectId": "5543CBB2C0000001F5F59149F1AF17CF", + "parents": "005543CBB2C0000001F5F59149F1AF17CF", + "recId": "5543CBB2C0000001F5F59149F1AF17CF", + "recVer": 8365710010537214000, + "resId": "5543CBB2C0000001F5F59149F1AF17CF", + "schemeId": "00000000000000000000000000000000", + "shareType": 0, + "shortName": "shgs", + "sjly": "", + "sjysnl": "", + "sortOrder": 21, + "ssdw": "", + "startFlag": 1, + "stdCode": "G15", + "stdIcon": "", + "stdName": "沈海高速", + "tcrq": null, + "unitId": "00000000000000000000000000000000", + "validTime": "1990-01-01T00:00:00", + "xxdx": "", + "xzdj": "540D4877C000000112D1F2C6DE6A1B49", + "xzqh": "", + "yhdw": "", + "zyds": 0 + }] + // this.$request(getApp().globalData.baseUrl + '/api/biz/roadInfo/all?page=0&pageSize=-1&_t=' + Date.parse(new Date()), {}, 'GET').then(res => { + // this.highwayDataList = res.data.list; + // }) }, - //收费站列表 - queryStation() { - this.highwaySubDataList = [{ - id: 4, - name: '城阳收费站', - highwayId: 1, - highwayName: '青龙高速公路建设有限公司', - isFinish: false - }, - { - id: 5, - name: '夏庄收费站', - highwayId: 1, - highwayName: '青龙高速公路建设有限公司', - isFinish: false - }, - ]; + //高速公路切换选择 + changeHighway(e, key, index) { + this.form[key][index].highwayNameIndex = e.detail.value; + this.form[key][index].highwayName = this.highwayDataList[e.detail.value].stdName; + console.log(this.form) + }, + //统计时段切换选择 + changeStatPeriod(e) { + this.index = e.detail.value; + this.form.statPeriod = this.array[e.detail.value].dictValue; + console.log('change 时段', this.form) + }, + //开闭切换选择 + changeIsOpen(e) { + this.isOpenIndex = e.detail.value; + this.form.isOpen = this.isOpenArry[e.detail.value].value; }, //取消 doCancel() { @@ -351,6 +433,53 @@ this.array = res.data; }) }, + //增行 + addRow() { + if(this.tabType == 1) { + //拥堵增行 + this.form.highwayCongestionDetailDTOS.push({ + "additionalNotes": "", + "congestionContent": "", + "congestionEndTime": "", + "congestionRange": "", + "congestionStartTime": "", + "disposalStatus": "", + "duration": "", + "highwayNameIndex": "", + "highwayName": "", + "location": "", + }); + this.form.congestionCount = this.form.highwayCongestionDetailDTOS.length; + }else{ + //事故增行 + this.form.highwayAccidentDetailDTOS.push({ + "accidentContent": "", + "accidentEndTime": "", + "accidentLevel": "", + "accidentStartTime": "", + "additionalNotes": "", + "congestionRange": "", + "disposalStatus": "", + "duration": "", + "highwayNameIndex": "", + "highwayName": "", + "location": "", + }); + this.form.accidentCount = this.form.highwayCongestionDetailDTOS.length; + } + }, + //删行 + delRow(index) { + if(this.tabType == 1) { + //拥堵删行 + this.form.highwayCongestionDetailDTOS.splice(index,1); + this.form.congestionCount = this.form.highwayCongestionDetailDTOS.length; + }else{ + //事故删行 + this.form.highwayAccidentDetailDTOS.splice(index,1); + this.form.accidentCount = this.form.highwayCongestionDetailDTOS.length; + } + }, //确认提交 doSubmit() { uni.showModal({ @@ -364,15 +493,30 @@ }) }, submitForm() { - if (this.form.username == '' || this.form.password == '') { + console.log(this.form) + if (this.form.statDate == '' || this.form.statPeriod == '') { + uni.showToast({ + title: '报送日期和时段不能为空', + icon: 'none' + }) + return; + } + let checkCongestion = this.form.highwayCongestionDetailDTOS.every(item => { + return !item.highwayName || !item.congestionStartTime || !item.congestionEndTime || !item.duration || !item.location + }) + let checkAccident = this.form.highwayAccidentDetailDTOS.every(item => { + return !item.highwayName || !item.accidentStartTime || !item.accidentEndTime || !item.duration || !item.location + }) + if (this.form.highwayCongestionDetailDTOS.length > 0 && checkCongestion) { uni.showToast({ - title: '用户名密码不能为空', + title: '拥堵信息详情不能为空', icon: 'none' }) return; - } else if (this.form.verCode == '') { + } + if (this.form.highwayAccidentDetailDTOS.length > 0 && checkAccident) { uni.showToast({ - title: '验证码不能为空', + title: '事故信息详情不能为空', icon: 'none' }) return; @@ -381,7 +525,7 @@ title: '提交中...', mask: true }) - this.$request(getApp().globalData.baseUrl + '/api/biz/highwayParentDataController/saveOrUpdate', this.form, + this.$request(getApp().globalData.baseUrl + '/api/biz/highSpeedOperationController/saveOrUpdate', this.form, 'POST').then(res => { uni.hideLoading(); if (res.code == 200) { @@ -533,7 +677,14 @@ border: 0 !important; .uni-easyinput__content-input { - height: 35rpx; + height: 35rpx !important; + text-align: right; + } + } + /deep/ .uni-date-x--border{ + border: 0 !important; + .uni-date__x-input{ + // height: 35rpx !important; text-align: right; } } @@ -591,7 +742,7 @@ justify-content: space-between; padding: 40rpx 30rpx; background-color: #f5f5f5; - z-index: 99; + z-index: 11; .act_btn { width: 329rpx; @@ -631,6 +782,7 @@ background: #ECF5FF; border-radius: 30rpx; border: 2rpx solid #2D8CF0; + margin-top: 30rpx; } .tab_box { diff --git a/pages/highWay/runStatusData/list.vue b/pages/highWay/runStatusData/list.vue index 0636f87..2aacebf 100644 --- a/pages/highWay/runStatusData/list.vue +++ b/pages/highWay/runStatusData/list.vue @@ -101,7 +101,7 @@ }, timeRange: [], //查询起止日期 array: [], //时段选择列表 - index: -1, //时段选择 + index: '', //时段选择 } }, onLoad() { diff --git a/static/60x60.png b/static/60x60.png deleted file mode 100644 index 6984932..0000000 Binary files a/static/60x60.png and /dev/null differ diff --git a/static/api.png b/static/api.png deleted file mode 100644 index 58f93e1..0000000 Binary files a/static/api.png and /dev/null differ diff --git a/static/apiHL.png b/static/apiHL.png deleted file mode 100644 index f8cbd7d..0000000 Binary files a/static/apiHL.png and /dev/null differ diff --git a/static/apiIndex.png b/static/apiIndex.png deleted file mode 100644 index 890dba5..0000000 Binary files a/static/apiIndex.png and /dev/null differ diff --git a/static/app-plus/location@3x.png b/static/app-plus/location@3x.png deleted file mode 100644 index c195e0a..0000000 Binary files a/static/app-plus/location@3x.png and /dev/null differ diff --git a/static/app-plus/uni@2x.png b/static/app-plus/uni@2x.png deleted file mode 100644 index 8e3a80f..0000000 Binary files a/static/app-plus/uni@2x.png and /dev/null differ diff --git a/static/c1.png b/static/c1.png deleted file mode 100644 index 9d38fdc..0000000 Binary files a/static/c1.png and /dev/null differ diff --git a/static/c2.png b/static/c2.png deleted file mode 100644 index ce956d7..0000000 Binary files a/static/c2.png and /dev/null differ diff --git a/static/c3.png b/static/c3.png deleted file mode 100644 index 216202a..0000000 Binary files a/static/c3.png and /dev/null differ diff --git a/static/c4.png b/static/c4.png deleted file mode 100644 index fb8b477..0000000 Binary files a/static/c4.png and /dev/null differ diff --git a/static/c5.png b/static/c5.png deleted file mode 100644 index 310bfb1..0000000 Binary files a/static/c5.png and /dev/null differ diff --git a/static/c6.png b/static/c6.png deleted file mode 100644 index c3c45d8..0000000 Binary files a/static/c6.png and /dev/null differ diff --git a/static/c7.png b/static/c7.png deleted file mode 100644 index a1e7390..0000000 Binary files a/static/c7.png and /dev/null differ diff --git a/static/c8.png b/static/c8.png deleted file mode 100644 index c32633c..0000000 Binary files a/static/c8.png and /dev/null differ diff --git a/static/c9.png b/static/c9.png deleted file mode 100644 index 51bcf6a..0000000 Binary files a/static/c9.png and /dev/null differ diff --git a/static/compass.png b/static/compass.png deleted file mode 100644 index fba87a5..0000000 Binary files a/static/compass.png and /dev/null differ diff --git a/static/component.png b/static/component.png deleted file mode 100644 index fbb116d..0000000 Binary files a/static/component.png and /dev/null differ diff --git a/static/componentHL.png b/static/componentHL.png deleted file mode 100644 index 31f83a0..0000000 Binary files a/static/componentHL.png and /dev/null differ diff --git a/static/componentIndex.png b/static/componentIndex.png deleted file mode 100644 index 8ad0534..0000000 Binary files a/static/componentIndex.png and /dev/null differ diff --git a/static/extui.png b/static/extui.png deleted file mode 100644 index 7508e08..0000000 Binary files a/static/extui.png and /dev/null differ diff --git a/static/extuiHL.png b/static/extuiHL.png deleted file mode 100644 index 612b499..0000000 Binary files a/static/extuiHL.png and /dev/null differ diff --git a/static/extuiIndex.png b/static/extuiIndex.png deleted file mode 100644 index dd4d963..0000000 Binary files a/static/extuiIndex.png and /dev/null differ diff --git a/static/home-active.png b/static/home-active.png deleted file mode 100644 index ccba950..0000000 Binary files a/static/home-active.png and /dev/null differ diff --git a/static/home.png b/static/home.png deleted file mode 100644 index 569c7d0..0000000 Binary files a/static/home.png and /dev/null differ diff --git a/static/icons/badge.png b/static/icons/badge.png deleted file mode 100644 index b32a7a5..0000000 Binary files a/static/icons/badge.png and /dev/null differ diff --git a/static/icons/button.png b/static/icons/button.png deleted file mode 100644 index 461fe67..0000000 Binary files a/static/icons/button.png and /dev/null differ diff --git a/static/icons/calendar.png b/static/icons/calendar.png deleted file mode 100644 index e8beb9c..0000000 Binary files a/static/icons/calendar.png and /dev/null differ diff --git a/static/icons/card.png b/static/icons/card.png deleted file mode 100644 index 8426e99..0000000 Binary files a/static/icons/card.png and /dev/null differ diff --git a/static/icons/collapse.png b/static/icons/collapse.png deleted file mode 100644 index 87da4bb..0000000 Binary files a/static/icons/collapse.png and /dev/null differ diff --git a/static/icons/color.png b/static/icons/color.png deleted file mode 100644 index a774143..0000000 Binary files a/static/icons/color.png and /dev/null differ diff --git a/static/icons/combox.png b/static/icons/combox.png deleted file mode 100644 index c1cb660..0000000 Binary files a/static/icons/combox.png and /dev/null differ diff --git a/static/icons/countdown.png b/static/icons/countdown.png deleted file mode 100644 index aa4bf10..0000000 Binary files a/static/icons/countdown.png and /dev/null differ diff --git a/static/icons/data-checkbox.png b/static/icons/data-checkbox.png deleted file mode 100644 index 748bdcb..0000000 Binary files a/static/icons/data-checkbox.png and /dev/null differ diff --git a/static/icons/data-picker.png b/static/icons/data-picker.png deleted file mode 100644 index 5712964..0000000 Binary files a/static/icons/data-picker.png and /dev/null differ diff --git a/static/icons/dateformat.png b/static/icons/dateformat.png deleted file mode 100644 index 097cbe7..0000000 Binary files a/static/icons/dateformat.png and /dev/null differ diff --git a/static/icons/datetime-picker.png b/static/icons/datetime-picker.png deleted file mode 100644 index 24753fd..0000000 Binary files a/static/icons/datetime-picker.png and /dev/null differ diff --git a/static/icons/drawer.png b/static/icons/drawer.png deleted file mode 100644 index 73a9802..0000000 Binary files a/static/icons/drawer.png and /dev/null differ diff --git a/static/icons/easyinput.png b/static/icons/easyinput.png deleted file mode 100644 index 569ea58..0000000 Binary files a/static/icons/easyinput.png and /dev/null differ diff --git a/static/icons/fab.png b/static/icons/fab.png deleted file mode 100644 index e953d90..0000000 Binary files a/static/icons/fab.png and /dev/null differ diff --git a/static/icons/fav.png b/static/icons/fav.png deleted file mode 100644 index a51153c..0000000 Binary files a/static/icons/fav.png and /dev/null differ diff --git a/static/icons/file-picker.png b/static/icons/file-picker.png deleted file mode 100644 index 3424795..0000000 Binary files a/static/icons/file-picker.png and /dev/null differ diff --git a/static/icons/font.png b/static/icons/font.png deleted file mode 100644 index 610983b..0000000 Binary files a/static/icons/font.png and /dev/null differ diff --git a/static/icons/forms.png b/static/icons/forms.png deleted file mode 100644 index 8bc60b4..0000000 Binary files a/static/icons/forms.png and /dev/null differ diff --git a/static/icons/goods-nav.png b/static/icons/goods-nav.png deleted file mode 100644 index 83ae3f9..0000000 Binary files a/static/icons/goods-nav.png and /dev/null differ diff --git a/static/icons/grid.png b/static/icons/grid.png deleted file mode 100644 index e50cb7f..0000000 Binary files a/static/icons/grid.png and /dev/null differ diff --git a/static/icons/group.png b/static/icons/group.png deleted file mode 100644 index 9fe980b..0000000 Binary files a/static/icons/group.png and /dev/null differ diff --git a/static/icons/icons.png b/static/icons/icons.png deleted file mode 100644 index d354ccd..0000000 Binary files a/static/icons/icons.png and /dev/null differ diff --git a/static/icons/indexed-list.png b/static/icons/indexed-list.png deleted file mode 100644 index dd94bb0..0000000 Binary files a/static/icons/indexed-list.png and /dev/null differ diff --git a/static/icons/link.png b/static/icons/link.png deleted file mode 100644 index de0f33f..0000000 Binary files a/static/icons/link.png and /dev/null differ diff --git a/static/icons/list.png b/static/icons/list.png deleted file mode 100644 index 688602e..0000000 Binary files a/static/icons/list.png and /dev/null differ diff --git a/static/icons/load-more.png b/static/icons/load-more.png deleted file mode 100644 index 6f45cc4..0000000 Binary files a/static/icons/load-more.png and /dev/null differ diff --git a/static/icons/nav-bar.png b/static/icons/nav-bar.png deleted file mode 100644 index 5157ead..0000000 Binary files a/static/icons/nav-bar.png and /dev/null differ diff --git a/static/icons/notice-bar.png b/static/icons/notice-bar.png deleted file mode 100644 index 1f73775..0000000 Binary files a/static/icons/notice-bar.png and /dev/null differ diff --git a/static/icons/number-box.png b/static/icons/number-box.png deleted file mode 100644 index c454a03..0000000 Binary files a/static/icons/number-box.png and /dev/null differ diff --git a/static/icons/pagination.png b/static/icons/pagination.png deleted file mode 100644 index b516577..0000000 Binary files a/static/icons/pagination.png and /dev/null differ diff --git a/static/icons/popup.png b/static/icons/popup.png deleted file mode 100644 index 1058ca4..0000000 Binary files a/static/icons/popup.png and /dev/null differ diff --git a/static/icons/radius.png b/static/icons/radius.png deleted file mode 100644 index 2a173ca..0000000 Binary files a/static/icons/radius.png and /dev/null differ diff --git a/static/icons/rate.png b/static/icons/rate.png deleted file mode 100644 index 2c58206..0000000 Binary files a/static/icons/rate.png and /dev/null differ diff --git a/static/icons/row.png b/static/icons/row.png deleted file mode 100644 index 48620d8..0000000 Binary files a/static/icons/row.png and /dev/null differ diff --git a/static/icons/search-bar.png b/static/icons/search-bar.png deleted file mode 100644 index 6a82efd..0000000 Binary files a/static/icons/search-bar.png and /dev/null differ diff --git a/static/icons/section.png b/static/icons/section.png deleted file mode 100644 index 69dffeb..0000000 Binary files a/static/icons/section.png and /dev/null differ diff --git a/static/icons/segmented-control.png b/static/icons/segmented-control.png deleted file mode 100644 index 5cbe60d..0000000 Binary files a/static/icons/segmented-control.png and /dev/null differ diff --git a/static/icons/space.png b/static/icons/space.png deleted file mode 100644 index 38c30e0..0000000 Binary files a/static/icons/space.png and /dev/null differ diff --git a/static/icons/steps.png b/static/icons/steps.png deleted file mode 100644 index 142ea74..0000000 Binary files a/static/icons/steps.png and /dev/null differ diff --git a/static/icons/swipe-action.png b/static/icons/swipe-action.png deleted file mode 100644 index 204b7f9..0000000 Binary files a/static/icons/swipe-action.png and /dev/null differ diff --git a/static/icons/swiper-dot.png b/static/icons/swiper-dot.png deleted file mode 100644 index 7d68269..0000000 Binary files a/static/icons/swiper-dot.png and /dev/null differ diff --git a/static/icons/tag.png b/static/icons/tag.png deleted file mode 100644 index fe8f27d..0000000 Binary files a/static/icons/tag.png and /dev/null differ diff --git a/static/icons/title.png b/static/icons/title.png deleted file mode 100644 index 298336c..0000000 Binary files a/static/icons/title.png and /dev/null differ diff --git a/static/icons/transition.png b/static/icons/transition.png deleted file mode 100644 index 4824802..0000000 Binary files a/static/icons/transition.png and /dev/null differ diff --git a/static/image-active.png b/static/image-active.png deleted file mode 100644 index 407cabb..0000000 Binary files a/static/image-active.png and /dev/null differ diff --git a/static/image.png b/static/image.png deleted file mode 100644 index 008a677..0000000 Binary files a/static/image.png and /dev/null differ diff --git a/static/location.png b/static/location.png deleted file mode 100644 index c195e0a..0000000 Binary files a/static/location.png and /dev/null differ diff --git a/static/menu.png b/static/menu.png deleted file mode 100644 index a3a92c1..0000000 Binary files a/static/menu.png and /dev/null differ diff --git a/static/nav.png b/static/nav.png deleted file mode 100644 index 57b420b..0000000 Binary files a/static/nav.png and /dev/null differ diff --git a/static/pause.png b/static/pause.png deleted file mode 100644 index 9acb73d..0000000 Binary files a/static/pause.png and /dev/null differ diff --git a/static/play.png b/static/play.png deleted file mode 100644 index 982f2f2..0000000 Binary files a/static/play.png and /dev/null differ diff --git a/static/plus.png b/static/plus.png deleted file mode 100644 index 73ddfe3..0000000 Binary files a/static/plus.png and /dev/null differ diff --git a/static/record.png b/static/record.png deleted file mode 100644 index a62ef81..0000000 Binary files a/static/record.png and /dev/null differ diff --git a/static/shuijiao.jpg b/static/shuijiao.jpg deleted file mode 100644 index b654b9c..0000000 Binary files a/static/shuijiao.jpg and /dev/null differ diff --git a/static/star-active.png b/static/star-active.png deleted file mode 100644 index 9ca15ab..0000000 Binary files a/static/star-active.png and /dev/null differ diff --git a/static/star.png b/static/star.png deleted file mode 100644 index 40eb232..0000000 Binary files a/static/star.png and /dev/null differ diff --git a/static/stop.png b/static/stop.png deleted file mode 100644 index 9e65f3e..0000000 Binary files a/static/stop.png and /dev/null differ diff --git a/static/template.png b/static/template.png deleted file mode 100644 index 409ec9b..0000000 Binary files a/static/template.png and /dev/null differ diff --git a/static/templateHL.png b/static/templateHL.png deleted file mode 100644 index 4018448..0000000 Binary files a/static/templateHL.png and /dev/null differ diff --git a/static/templateIndex.png b/static/templateIndex.png deleted file mode 100644 index 7c986ea..0000000 Binary files a/static/templateIndex.png and /dev/null differ diff --git a/static/trash.png b/static/trash.png deleted file mode 100644 index 83d68f3..0000000 Binary files a/static/trash.png and /dev/null differ