修正部分前端语法校验空格问题
This commit is contained in:
parent
db07389543
commit
59dd9ab42a
|
|
@ -4,3 +4,4 @@
|
||||||
/dts-dao/dts-dao.iml
|
/dts-dao/dts-dao.iml
|
||||||
/dts-wx-api/dts-wx-api.iml
|
/dts-wx-api/dts-wx-api.iml
|
||||||
/logs/
|
/logs/
|
||||||
|
/admin-ui/node_modules/
|
||||||
|
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 66 KiB After Width: | Height: | Size: 4.6 KiB |
|
|
@ -50,5 +50,3 @@ export function listShipChannel() {
|
||||||
method: 'get'
|
method: 'get'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -46,7 +46,7 @@
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
|
|
||||||
<!-- 添加或修改对话框 -->
|
<!-- 添加或修改对话框 -->
|
||||||
<el-dialog :title="textMap[dialogStatus]" :visible.sync="dialogFormVisible">
|
<el-dialog :title="textMap[dialogStatus]" :visible.sync="dialogFormVisible">
|
||||||
<el-form ref="dataForm" :rules="rules" :model="dataForm" status-icon label-position="left" label-width="100px" style="width: 400px; margin-left:50px;">
|
<el-form ref="dataForm" :rules="rules" :model="dataForm" status-icon label-position="left" label-width="100px" style="width: 400px; margin-left:50px;">
|
||||||
|
|
@ -61,7 +61,7 @@
|
||||||
<el-option v-for="item in adminList" :key="item.value" :label="item.label" :value="item.value"/>
|
<el-option v-for="item in adminList" :key="item.value" :label="item.label" :value="item.value"/>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
<el-form-item label="介绍" prop="simpleDesc">
|
<el-form-item label="介绍" prop="simpleDesc">
|
||||||
<el-input v-model="dataForm.desc"/>
|
<el-input v-model="dataForm.desc"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
@ -158,7 +158,7 @@ export default {
|
||||||
textMap: {
|
textMap: {
|
||||||
update: '编辑',
|
update: '编辑',
|
||||||
create: '创建',
|
create: '创建',
|
||||||
shareUrl: '店铺推广码'
|
shareUrl: '店铺推广码'
|
||||||
},
|
},
|
||||||
rules: {
|
rules: {
|
||||||
name: [
|
name: [
|
||||||
|
|
|
||||||
|
|
@ -146,7 +146,7 @@
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { listOrder, shipOrder, refundOrder, detailOrder , listShipChannel } from '@/api/order'
|
import { listOrder, shipOrder, refundOrder, detailOrder, listShipChannel } from '@/api/order'
|
||||||
import Pagination from '@/components/Pagination' // Secondary package based on el-pagination
|
import Pagination from '@/components/Pagination' // Secondary package based on el-pagination
|
||||||
import checkPermission from '@/utils/permission' // 权限判断函数
|
import checkPermission from '@/utils/permission' // 权限判断函数
|
||||||
|
|
||||||
|
|
@ -224,7 +224,7 @@ export default {
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
getListShipChannel() {
|
getListShipChannel() {
|
||||||
listShipChannel().then(response => {
|
listShipChannel().then(response => {
|
||||||
this.shipChannelList = response.data.data.shipChannelList
|
this.shipChannelList = response.data.data.shipChannelList
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue