Commit c603b7e2 authored by 黄奎's avatar 黄奎
parents 2b7b3219 df0e3b7b
......@@ -180,8 +180,8 @@
</el-switch>
</el-form-item>
<el-form-item label="是否可开发票" v-if="isShowTax">
<el-switch v-model="addMsg.IsNoTax" active-color="#409EFF" :active-value="1"
:inactive-value="0">
<el-switch v-model="addMsg.IsNoTax" active-color="#409EFF" :active-value="0"
:inactive-value="1">
</el-switch>
</el-form-item>
<el-form-item label="自动上架时间">
......
......@@ -15,8 +15,7 @@
</el-form-item>
<el-form-item label="到账账号:">
<el-select class="w160" v-model="msg.User_Id" size="small" placeholder="请选择">
<el-option v-for="item in AccountList" :key="item.EmpId" :label="item.EmpName"
:value="item.EmpId">
<el-option v-for="item in createrList" :key="item.Id" :label="item.Name" :value="item.Id">
</el-option>
</el-select>
</el-form-item>
......@@ -33,15 +32,15 @@
<span>到账账户:
<el-select class="w150" v-model="awalMsg.User_Id" size="small" placeholder="请选择">
<el-option label="不限" :value="0"></el-option>
<el-option v-for="item in AccountList" :key="item.EmpId" :label="item.EmpName"
:value="item.EmpId">
<el-option v-for="item in createrList" :key="item.Id" :label="item.Name" :value="item.Id">
</el-option>
</el-select>
</span>
<span>创建人:
<el-select class="w150" v-model="awalMsg.CreateBy" size="small" placeholder="请选择">
<el-option label="不限" :value="0"></el-option>
<el-option v-for="item in createrList" :key="item.Id" :label="item.Name" :value="item.Id">
<el-option v-for="item in AccountList" :key="item.EmpId" :label="item.EmpName"
:value="item.EmpId">
</el-option>
</el-select>
</span>
......@@ -242,6 +241,7 @@
mounted() {
this.getMoney();
this.getAccountList();
this.getCreaterList();
}
};
......
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