Commit 6ab9809a authored by 何远江's avatar 何远江

Merge branch 'dev' of http://git.local.topsunit.com/mes/mes-ui into dev

parents 2b45fa83 1d9fc815
......@@ -138,7 +138,7 @@ export default {
data() {
return {
// 遮罩层
loading: true,
loading: false,
// 选中数组
ids: [],
// 非单个禁用
......@@ -170,6 +170,9 @@ export default {
methods: {
/** 查询客户付款信息列表 */
getList() {
this.accountList = []
this.total = 0
if (!this.queryParams.clientId) return
this.loading = true
pageAccount(this.queryParams).then(response => {
this.accountList = response.data.records
......
This diff is collapsed.
......@@ -221,6 +221,7 @@ export default {
},
/** 同步数据 */
onSync(row) {
console.log(row.id)
this.$router.push('/order/sales/sync?id=' + row.id)
},
/** 删除按钮操作 */
......
......@@ -86,7 +86,7 @@
</el-col>
<el-col :span="6">
<el-form-item label="要求交货期" prop="deliveryDate">
<el-date-picker v-model="form.deliveryDate" class="form-item" type="date" value-format="yyyyMMdd" placeholder="选择交货日期" clearable/>
<el-date-picker v-model="form.deliveryDate" class="form-item" type="date" placeholder="选择交货日期" clearable/>
</el-form-item>
</el-col>
<el-col :span="6">
......@@ -154,7 +154,7 @@
</el-col>
<el-col :span="6">
<el-form-item label="采购订单日期" prop="purchaseDate">
<el-date-picker v-model="form.purchaseDate" class="form-item" type="date" value-format="yyyyMMdd" placeholder="请选择客户采购订单日期" clearable/>
<el-date-picker v-model="form.purchaseDate" class="form-item" type="date" placeholder="请选择客户采购订单日期" clearable/>
</el-form-item>
</el-col>
<el-col :span="6">
......
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