Commit 031a9060 by zhuzhequan

版本更新

parent 318c5abe
......@@ -85,7 +85,6 @@
<el-upload
action
:http-request="handleCustom"
:limit="1"
:multiple="false"
:on-change="handleChange"
:on-remove="handleRemove"
......@@ -192,29 +191,38 @@ export default {
tableColumns() {
return [
{
label: '版本号',
key: 'version',
width: '100'
},
{
label: '更新标题',
key: 'title',
width: ''
},
{
label: '版本号',
key: 'version',
width: '80'
},
{
label: '更新内容',
key: 'content',
width: ''
},
{
label: ' 是否强制更新',
label: '是否强制更新',
key: 'forcedUpdate',
width: '100',
width: '140',
render: item => {
return item.forcedUpdate === 1 ? '是' : '否'
}
},
{
label: '是否全量更新',
key: 'forcedUpdate',
width: '140',
render: item => {
return item.fullUpdate === 1 ? '是' : '否'
}
},
{
label: '应用软件名称',
key: 'businessType',
width: '100',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment