Commit bdc60142 by yangzhi

fix:严格模式

parent 1df52b81
......@@ -129,8 +129,10 @@
header-align="center"
:show-overflow-tooltip="true"
>
<template slot-scope="scope">
<a :href="scope.row.domain">{{scope.row.domain}}</a>
<template slot-scope="scope">
<a :href="scope.row.domain">{{
scope.row.domain
}}</a>
</template>
</el-table-column>
<el-table-column
......@@ -275,17 +277,13 @@
:rules="[
{ required: true, message: '请选择状态' },
]"
>
<el-radio
v-model="editForm.status"
:label="true"
>启用</el-radio
>
<el-radio
v-model="editForm.status"
:label="false"
>禁用</el-radio
>
>
<el-radio v-model="editForm.status" :label="true"
>启用</el-radio
>
<el-radio v-model="editForm.status" :label="false"
>禁用</el-radio
>
</el-form-item>
<el-form-item
label="公司名称"
......@@ -408,7 +406,7 @@ export default {
editId: undefined,
editForm: {
domain: '',
status:true,
status: true,
},
total: 0,
pageSize: 50,
......
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
lintOnSave:false,
transpileDependencies: true,
devServer: {
port: 8082,
......
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